Liking cljdoc? Tell your friends :D
Clojure only.

cdk.api.services.appconfig

Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.appconfig package.

Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.appconfig package. 
raw docstring

action-builderclj

(action-builder id config)

Creates a Action$Builder instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `Action$Builder` instance using a no-argument create, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

action-pointclj

(action-point config id item-key)

The action-point function data interprets values in the provided config data into a ActionPoint instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of ActionPoint - the value is returned.
  • is :on-deployment-start - ActionPoint/ON_DEPLOYMENT_START is returned
  • is :on-deployment-step - ActionPoint/ON_DEPLOYMENT_STEP is returned
  • is :on-deployment-baking - ActionPoint/ON_DEPLOYMENT_BAKING is returned
  • is :on-deployment-complete - ActionPoint/ON_DEPLOYMENT_COMPLETE is returned
  • is :pre-start-deployment - ActionPoint/PRE_START_DEPLOYMENT is returned
  • is :pre-create-hosted-configuration-version - ActionPoint/PRE_CREATE_HOSTED_CONFIGURATION_VERSION is returned
  • is :on-deployment-rolled-back - ActionPoint/ON_DEPLOYMENT_ROLLED_BACK is returned

If a value is not found or matches the above criteria, nil is returned.

The `action-point` function data interprets values in the provided config data into a 
`ActionPoint` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `ActionPoint` - the value is returned.
* is `:on-deployment-start` - `ActionPoint/ON_DEPLOYMENT_START` is returned
* is `:on-deployment-step` - `ActionPoint/ON_DEPLOYMENT_STEP` is returned
* is `:on-deployment-baking` - `ActionPoint/ON_DEPLOYMENT_BAKING` is returned
* is `:on-deployment-complete` - `ActionPoint/ON_DEPLOYMENT_COMPLETE` is returned
* is `:pre-start-deployment` - `ActionPoint/PRE_START_DEPLOYMENT` is returned
* is `:pre-create-hosted-configuration-version` - `ActionPoint/PRE_CREATE_HOSTED_CONFIGURATION_VERSION` is returned
* is `:on-deployment-rolled-back` - `ActionPoint/ON_DEPLOYMENT_ROLLED_BACK` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

action-props-builderclj

(action-props-builder id config)

Creates a ActionProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ActionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

application-builderclj

(application-builder scope id config)

Creates a Application$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `Application$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

application-props-builderclj

(application-props-builder id config)

Creates a ApplicationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ApplicationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

build-action-builderclj

(build-action-builder builder id config)

The build-action-builder function updates a Action$Builder instance using the provided configuration. The function takes the Action$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionPointsjava.util.Listcdk.support/lookup-entry:action-points
descriptionjava.lang.Stringcdk.support/lookup-entry:description
eventDestinationsoftware.amazon.awscdk.services.appconfig.IEventDestinationcdk.support/lookup-entry:event-destination
executionRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:execution-role
invokeWithoutExecutionRolejava.lang.Booleancdk.support/lookup-entry:invoke-without-execution-role
namejava.lang.Stringcdk.support/lookup-entry:name
The build-action-builder function updates a Action$Builder instance using the provided configuration.
  The function takes the Action$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actionPoints` | java.util.List | [[cdk.support/lookup-entry]] | `:action-points` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `eventDestination` | software.amazon.awscdk.services.appconfig.IEventDestination | [[cdk.support/lookup-entry]] | `:event-destination` |
| `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` |
| `invokeWithoutExecutionRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:invoke-without-execution-role` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
sourceraw docstring

build-action-props-builderclj

(build-action-props-builder builder id config)

The build-action-props-builder function updates a ActionProps$Builder instance using the provided configuration. The function takes the ActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionPointsjava.util.Listcdk.support/lookup-entry:action-points
descriptionjava.lang.Stringcdk.support/lookup-entry:description
eventDestinationsoftware.amazon.awscdk.services.appconfig.IEventDestinationcdk.support/lookup-entry:event-destination
executionRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:execution-role
invokeWithoutExecutionRolejava.lang.Booleancdk.support/lookup-entry:invoke-without-execution-role
namejava.lang.Stringcdk.support/lookup-entry:name
The build-action-props-builder function updates a ActionProps$Builder instance using the provided configuration.
  The function takes the ActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actionPoints` | java.util.List | [[cdk.support/lookup-entry]] | `:action-points` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `eventDestination` | software.amazon.awscdk.services.appconfig.IEventDestination | [[cdk.support/lookup-entry]] | `:event-destination` |
| `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` |
| `invokeWithoutExecutionRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:invoke-without-execution-role` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
sourceraw docstring

build-application-builderclj

(build-application-builder builder id config)

The build-application-builder function updates a Application$Builder instance using the provided configuration. The function takes the Application$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationNamejava.lang.Stringcdk.support/lookup-entry:application-name
descriptionjava.lang.Stringcdk.support/lookup-entry:description
The build-application-builder function updates a Application$Builder instance using the provided configuration.
  The function takes the Application$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationName` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-name` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
sourceraw docstring

build-application-props-builderclj

(build-application-props-builder builder id config)

The build-application-props-builder function updates a ApplicationProps$Builder instance using the provided configuration. The function takes the ApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationNamejava.lang.Stringcdk.support/lookup-entry:application-name
descriptionjava.lang.Stringcdk.support/lookup-entry:description
The build-application-props-builder function updates a ApplicationProps$Builder instance using the provided configuration.
  The function takes the ApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationName` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-name` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
sourceraw docstring

build-cfn-application-builderclj

(build-cfn-application-builder builder id config)

The build-cfn-application-builder function updates a CfnApplication$Builder instance using the provided configuration. The function takes the CfnApplication$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
namejava.lang.Stringcdk.support/lookup-entry:name
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-application-builder function updates a CfnApplication$Builder instance using the provided configuration.
  The function takes the CfnApplication$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-application-props-builderclj

(build-cfn-application-props-builder builder id config)

The build-cfn-application-props-builder function updates a CfnApplicationProps$Builder instance using the provided configuration. The function takes the CfnApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
namejava.lang.Stringcdk.support/lookup-entry:name
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-application-props-builder function updates a CfnApplicationProps$Builder instance using the provided configuration.
  The function takes the CfnApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-configuration-profile-builderclj

(build-cfn-configuration-profile-builder builder id config)

The build-cfn-configuration-profile-builder function updates a CfnConfigurationProfile$Builder instance using the provided configuration. The function takes the CfnConfigurationProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
descriptionjava.lang.Stringcdk.support/lookup-entry:description
kmsKeyIdentifierjava.lang.Stringcdk.support/lookup-entry:kms-key-identifier
locationUrijava.lang.Stringcdk.support/lookup-entry:location-uri
namejava.lang.Stringcdk.support/lookup-entry:name
retrievalRoleArnjava.lang.Stringcdk.support/lookup-entry:retrieval-role-arn
tagsjava.util.Listcdk.support/lookup-entry:tags
typejava.lang.Stringcdk.support/lookup-entry:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
The build-cfn-configuration-profile-builder function updates a CfnConfigurationProfile$Builder instance using the provided configuration.
  The function takes the CfnConfigurationProfile$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` |
| `locationUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:location-uri` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `retrievalRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:retrieval-role-arn` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
| `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
sourceraw docstring

build-cfn-configuration-profile-props-builderclj

(build-cfn-configuration-profile-props-builder builder id config)

The build-cfn-configuration-profile-props-builder function updates a CfnConfigurationProfileProps$Builder instance using the provided configuration. The function takes the CfnConfigurationProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
descriptionjava.lang.Stringcdk.support/lookup-entry:description
kmsKeyIdentifierjava.lang.Stringcdk.support/lookup-entry:kms-key-identifier
locationUrijava.lang.Stringcdk.support/lookup-entry:location-uri
namejava.lang.Stringcdk.support/lookup-entry:name
retrievalRoleArnjava.lang.Stringcdk.support/lookup-entry:retrieval-role-arn
tagsjava.util.Listcdk.support/lookup-entry:tags
typejava.lang.Stringcdk.support/lookup-entry:type
validatorssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:validators
The build-cfn-configuration-profile-props-builder function updates a CfnConfigurationProfileProps$Builder instance using the provided configuration.
  The function takes the CfnConfigurationProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` |
| `locationUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:location-uri` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `retrievalRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:retrieval-role-arn` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
| `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
| `validators` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:validators` |
sourceraw docstring

build-cfn-configuration-profile-validators-property-builderclj

(build-cfn-configuration-profile-validators-property-builder builder id config)

The build-cfn-configuration-profile-validators-property-builder function updates a CfnConfigurationProfile$ValidatorsProperty$Builder instance using the provided configuration. The function takes the CfnConfigurationProfile$ValidatorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
contentjava.lang.Stringcdk.support/lookup-entry:content
typejava.lang.Stringcdk.support/lookup-entry:type
The build-cfn-configuration-profile-validators-property-builder function updates a CfnConfigurationProfile$ValidatorsProperty$Builder instance using the provided configuration.
  The function takes the CfnConfigurationProfile$ValidatorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `content` | java.lang.String | [[cdk.support/lookup-entry]] | `:content` |
| `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
sourceraw docstring

build-cfn-deployment-builderclj

(build-cfn-deployment-builder builder id config)

The build-cfn-deployment-builder function updates a CfnDeployment$Builder instance using the provided configuration. The function takes the CfnDeployment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
configurationProfileIdjava.lang.Stringcdk.support/lookup-entry:configuration-profile-id
configurationVersionjava.lang.Stringcdk.support/lookup-entry:configuration-version
deploymentStrategyIdjava.lang.Stringcdk.support/lookup-entry:deployment-strategy-id
descriptionjava.lang.Stringcdk.support/lookup-entry:description
dynamicExtensionParameterssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:dynamic-extension-parameters
environmentIdjava.lang.Stringcdk.support/lookup-entry:environment-id
kmsKeyIdentifierjava.lang.Stringcdk.support/lookup-entry:kms-key-identifier
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-deployment-builder function updates a CfnDeployment$Builder instance using the provided configuration.
  The function takes the CfnDeployment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` |
| `configurationVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-version` |
| `deploymentStrategyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-id` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `dynamicExtensionParameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:dynamic-extension-parameters` |
| `environmentId` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-id` |
| `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-deployment-dynamic-extension-parameters-property-builderclj

(build-cfn-deployment-dynamic-extension-parameters-property-builder builder
                                                                    id
                                                                    config)

The build-cfn-deployment-dynamic-extension-parameters-property-builder function updates a CfnDeployment$DynamicExtensionParametersProperty$Builder instance using the provided configuration. The function takes the CfnDeployment$DynamicExtensionParametersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
extensionReferencejava.lang.Stringcdk.support/lookup-entry:extension-reference
parameterNamejava.lang.Stringcdk.support/lookup-entry:parameter-name
parameterValuejava.lang.Stringcdk.support/lookup-entry:parameter-value
The build-cfn-deployment-dynamic-extension-parameters-property-builder function updates a CfnDeployment$DynamicExtensionParametersProperty$Builder instance using the provided configuration.
  The function takes the CfnDeployment$DynamicExtensionParametersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `extensionReference` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-reference` |
| `parameterName` | java.lang.String | [[cdk.support/lookup-entry]] | `:parameter-name` |
| `parameterValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:parameter-value` |
sourceraw docstring

build-cfn-deployment-props-builderclj

(build-cfn-deployment-props-builder builder id config)

The build-cfn-deployment-props-builder function updates a CfnDeploymentProps$Builder instance using the provided configuration. The function takes the CfnDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
configurationProfileIdjava.lang.Stringcdk.support/lookup-entry:configuration-profile-id
configurationVersionjava.lang.Stringcdk.support/lookup-entry:configuration-version
deploymentStrategyIdjava.lang.Stringcdk.support/lookup-entry:deployment-strategy-id
descriptionjava.lang.Stringcdk.support/lookup-entry:description
dynamicExtensionParametersjava.util.Listcdk.support/lookup-entry:dynamic-extension-parameters
environmentIdjava.lang.Stringcdk.support/lookup-entry:environment-id
kmsKeyIdentifierjava.lang.Stringcdk.support/lookup-entry:kms-key-identifier
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-deployment-props-builder function updates a CfnDeploymentProps$Builder instance using the provided configuration.
  The function takes the CfnDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` |
| `configurationVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-version` |
| `deploymentStrategyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-id` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `dynamicExtensionParameters` | java.util.List | [[cdk.support/lookup-entry]] | `:dynamic-extension-parameters` |
| `environmentId` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-id` |
| `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-deployment-strategy-builderclj

(build-cfn-deployment-strategy-builder builder id config)

The build-cfn-deployment-strategy-builder function updates a CfnDeploymentStrategy$Builder instance using the provided configuration. The function takes the CfnDeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deploymentDurationInMinutesjava.lang.Numbercdk.support/lookup-entry:deployment-duration-in-minutes
descriptionjava.lang.Stringcdk.support/lookup-entry:description
finalBakeTimeInMinutesjava.lang.Numbercdk.support/lookup-entry:final-bake-time-in-minutes
growthFactorjava.lang.Numbercdk.support/lookup-entry:growth-factor
growthTypejava.lang.Stringcdk.support/lookup-entry:growth-type
namejava.lang.Stringcdk.support/lookup-entry:name
replicateTojava.lang.Stringcdk.support/lookup-entry:replicate-to
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-deployment-strategy-builder function updates a CfnDeploymentStrategy$Builder instance using the provided configuration.
  The function takes the CfnDeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deploymentDurationInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:deployment-duration-in-minutes` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `finalBakeTimeInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:final-bake-time-in-minutes` |
| `growthFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:growth-factor` |
| `growthType` | java.lang.String | [[cdk.support/lookup-entry]] | `:growth-type` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `replicateTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:replicate-to` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-deployment-strategy-props-builderclj

(build-cfn-deployment-strategy-props-builder builder id config)

The build-cfn-deployment-strategy-props-builder function updates a CfnDeploymentStrategyProps$Builder instance using the provided configuration. The function takes the CfnDeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deploymentDurationInMinutesjava.lang.Numbercdk.support/lookup-entry:deployment-duration-in-minutes
descriptionjava.lang.Stringcdk.support/lookup-entry:description
finalBakeTimeInMinutesjava.lang.Numbercdk.support/lookup-entry:final-bake-time-in-minutes
growthFactorjava.lang.Numbercdk.support/lookup-entry:growth-factor
growthTypejava.lang.Stringcdk.support/lookup-entry:growth-type
namejava.lang.Stringcdk.support/lookup-entry:name
replicateTojava.lang.Stringcdk.support/lookup-entry:replicate-to
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-deployment-strategy-props-builder function updates a CfnDeploymentStrategyProps$Builder instance using the provided configuration.
  The function takes the CfnDeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deploymentDurationInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:deployment-duration-in-minutes` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `finalBakeTimeInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:final-bake-time-in-minutes` |
| `growthFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:growth-factor` |
| `growthType` | java.lang.String | [[cdk.support/lookup-entry]] | `:growth-type` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `replicateTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:replicate-to` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-environment-builderclj

(build-cfn-environment-builder builder id config)

The build-cfn-environment-builder function updates a CfnEnvironment$Builder instance using the provided configuration. The function takes the CfnEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
descriptionjava.lang.Stringcdk.support/lookup-entry:description
monitorsjava.util.Listcdk.support/lookup-entry:monitors
namejava.lang.Stringcdk.support/lookup-entry:name
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-environment-builder function updates a CfnEnvironment$Builder instance using the provided configuration.
  The function takes the CfnEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-environment-monitor-property-builderclj

(build-cfn-environment-monitor-property-builder builder id config)

The build-cfn-environment-monitor-property-builder function updates a CfnEnvironment$MonitorProperty$Builder instance using the provided configuration. The function takes the CfnEnvironment$MonitorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
alarmArnjava.lang.Stringcdk.support/lookup-entry:alarm-arn
alarmRoleArnjava.lang.Stringcdk.support/lookup-entry:alarm-role-arn
The build-cfn-environment-monitor-property-builder function updates a CfnEnvironment$MonitorProperty$Builder instance using the provided configuration.
  The function takes the CfnEnvironment$MonitorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `alarmArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-arn` |
| `alarmRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-role-arn` |
sourceraw docstring

build-cfn-environment-monitors-property-builderclj

(build-cfn-environment-monitors-property-builder builder id config)

The build-cfn-environment-monitors-property-builder function updates a CfnEnvironment$MonitorsProperty$Builder instance using the provided configuration. The function takes the CfnEnvironment$MonitorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
alarmArnjava.lang.Stringcdk.support/lookup-entry:alarm-arn
alarmRoleArnjava.lang.Stringcdk.support/lookup-entry:alarm-role-arn
The build-cfn-environment-monitors-property-builder function updates a CfnEnvironment$MonitorsProperty$Builder instance using the provided configuration.
  The function takes the CfnEnvironment$MonitorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `alarmArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-arn` |
| `alarmRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-role-arn` |
sourceraw docstring

build-cfn-environment-props-builderclj

(build-cfn-environment-props-builder builder id config)

The build-cfn-environment-props-builder function updates a CfnEnvironmentProps$Builder instance using the provided configuration. The function takes the CfnEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
descriptionjava.lang.Stringcdk.support/lookup-entry:description
monitorssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:monitors
namejava.lang.Stringcdk.support/lookup-entry:name
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-environment-props-builder function updates a CfnEnvironmentProps$Builder instance using the provided configuration.
  The function takes the CfnEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `monitors` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:monitors` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-extension-action-property-builderclj

(build-cfn-extension-action-property-builder builder id config)

The build-cfn-extension-action-property-builder function updates a CfnExtension$ActionProperty$Builder instance using the provided configuration. The function takes the CfnExtension$ActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
namejava.lang.Stringcdk.support/lookup-entry:name
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
urijava.lang.Stringcdk.support/lookup-entry:uri
The build-cfn-extension-action-property-builder function updates a CfnExtension$ActionProperty$Builder instance using the provided configuration.
  The function takes the CfnExtension$ActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
| `uri` | java.lang.String | [[cdk.support/lookup-entry]] | `:uri` |
sourceraw docstring

build-cfn-extension-association-builderclj

(build-cfn-extension-association-builder builder id config)

The build-cfn-extension-association-builder function updates a CfnExtensionAssociation$Builder instance using the provided configuration. The function takes the CfnExtensionAssociation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
extensionIdentifierjava.lang.Stringcdk.support/lookup-entry:extension-identifier
extensionVersionNumberjava.lang.Numbercdk.support/lookup-entry:extension-version-number
parameterssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:parameters
resourceIdentifierjava.lang.Stringcdk.support/lookup-entry:resource-identifier
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-extension-association-builder function updates a CfnExtensionAssociation$Builder instance using the provided configuration.
  The function takes the CfnExtensionAssociation$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `extensionIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-identifier` |
| `extensionVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:extension-version-number` |
| `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` |
| `resourceIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-identifier` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-extension-association-props-builderclj

(build-cfn-extension-association-props-builder builder id config)

The build-cfn-extension-association-props-builder function updates a CfnExtensionAssociationProps$Builder instance using the provided configuration. The function takes the CfnExtensionAssociationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
extensionIdentifierjava.lang.Stringcdk.support/lookup-entry:extension-identifier
extensionVersionNumberjava.lang.Numbercdk.support/lookup-entry:extension-version-number
parametersjava.util.Mapcdk.support/lookup-entry:parameters
resourceIdentifierjava.lang.Stringcdk.support/lookup-entry:resource-identifier
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-extension-association-props-builder function updates a CfnExtensionAssociationProps$Builder instance using the provided configuration.
  The function takes the CfnExtensionAssociationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `extensionIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-identifier` |
| `extensionVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:extension-version-number` |
| `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` |
| `resourceIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-identifier` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-extension-builderclj

(build-cfn-extension-builder builder id config)

The build-cfn-extension-builder function updates a CfnExtension$Builder instance using the provided configuration. The function takes the CfnExtension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionsjava.lang.Objectcdk.support/lookup-entry:actions
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
namejava.lang.Stringcdk.support/lookup-entry:name
parameterssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:parameters
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-extension-builder function updates a CfnExtension$Builder instance using the provided configuration.
  The function takes the CfnExtension$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | java.lang.Object | [[cdk.support/lookup-entry]] | `:actions` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-extension-parameter-property-builderclj

(build-cfn-extension-parameter-property-builder builder id config)

The build-cfn-extension-parameter-property-builder function updates a CfnExtension$ParameterProperty$Builder instance using the provided configuration. The function takes the CfnExtension$ParameterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
dynamicsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:dynamic
requiredjava.lang.Booleancdk.support/lookup-entry:required
The build-cfn-extension-parameter-property-builder function updates a CfnExtension$ParameterProperty$Builder instance using the provided configuration.
  The function takes the CfnExtension$ParameterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `dynamic` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:dynamic` |
| `required` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:required` |
sourceraw docstring

build-cfn-extension-props-builderclj

(build-cfn-extension-props-builder builder id config)

The build-cfn-extension-props-builder function updates a CfnExtensionProps$Builder instance using the provided configuration. The function takes the CfnExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionsjava.lang.Objectcdk.support/lookup-entry:actions
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
namejava.lang.Stringcdk.support/lookup-entry:name
parameterssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:parameters
tagsjava.util.Listcdk.support/lookup-entry:tags
The build-cfn-extension-props-builder function updates a CfnExtensionProps$Builder instance using the provided configuration.
  The function takes the CfnExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | java.lang.Object | [[cdk.support/lookup-entry]] | `:actions` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` |
| `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
sourceraw docstring

build-cfn-hosted-configuration-version-builderclj

(build-cfn-hosted-configuration-version-builder builder id config)

The build-cfn-hosted-configuration-version-builder function updates a CfnHostedConfigurationVersion$Builder instance using the provided configuration. The function takes the CfnHostedConfigurationVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
configurationProfileIdjava.lang.Stringcdk.support/lookup-entry:configuration-profile-id
contentjava.lang.Stringcdk.support/lookup-entry:content
contentTypejava.lang.Stringcdk.support/lookup-entry:content-type
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
versionLabeljava.lang.Stringcdk.support/lookup-entry:version-label
The build-cfn-hosted-configuration-version-builder function updates a CfnHostedConfigurationVersion$Builder instance using the provided configuration.
  The function takes the CfnHostedConfigurationVersion$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` |
| `content` | java.lang.String | [[cdk.support/lookup-entry]] | `:content` |
| `contentType` | java.lang.String | [[cdk.support/lookup-entry]] | `:content-type` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
sourceraw docstring

build-cfn-hosted-configuration-version-props-builderclj

(build-cfn-hosted-configuration-version-props-builder builder id config)

The build-cfn-hosted-configuration-version-props-builder function updates a CfnHostedConfigurationVersionProps$Builder instance using the provided configuration. The function takes the CfnHostedConfigurationVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
configurationProfileIdjava.lang.Stringcdk.support/lookup-entry:configuration-profile-id
contentjava.lang.Stringcdk.support/lookup-entry:content
contentTypejava.lang.Stringcdk.support/lookup-entry:content-type
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
versionLabeljava.lang.Stringcdk.support/lookup-entry:version-label
The build-cfn-hosted-configuration-version-props-builder function updates a CfnHostedConfigurationVersionProps$Builder instance using the provided configuration.
  The function takes the CfnHostedConfigurationVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` |
| `content` | java.lang.String | [[cdk.support/lookup-entry]] | `:content` |
| `contentType` | java.lang.String | [[cdk.support/lookup-entry]] | `:content-type` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
sourceraw docstring

build-configuration-options-builderclj

(build-configuration-options-builder builder id config)

The build-configuration-options-builder function updates a ConfigurationOptions$Builder instance using the provided configuration. The function takes the ConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
namejava.lang.Stringcdk.support/lookup-entry:name
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
The build-configuration-options-builder function updates a ConfigurationOptions$Builder instance using the provided configuration.
  The function takes the ConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
sourceraw docstring

build-configuration-props-builderclj

(build-configuration-props-builder builder id config)

The build-configuration-props-builder function updates a ConfigurationProps$Builder instance using the provided configuration. The function takes the ConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
namejava.lang.Stringcdk.support/lookup-entry:name
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
The build-configuration-props-builder function updates a ConfigurationProps$Builder instance using the provided configuration.
  The function takes the ConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
sourceraw docstring

build-deployment-strategy-builderclj

(build-deployment-strategy-builder builder id config)

The build-deployment-strategy-builder function updates a DeploymentStrategy$Builder instance using the provided configuration. The function takes the DeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deploymentStrategyNamejava.lang.Stringcdk.support/lookup-entry:deployment-strategy-name
descriptionjava.lang.Stringcdk.support/lookup-entry:description
rolloutStrategysoftware.amazon.awscdk.services.appconfig.RolloutStrategycdk.support/lookup-entry:rollout-strategy
The build-deployment-strategy-builder function updates a DeploymentStrategy$Builder instance using the provided configuration.
  The function takes the DeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deploymentStrategyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-name` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `rolloutStrategy` | software.amazon.awscdk.services.appconfig.RolloutStrategy | [[cdk.support/lookup-entry]] | `:rollout-strategy` |
sourceraw docstring

build-deployment-strategy-props-builderclj

(build-deployment-strategy-props-builder builder id config)

The build-deployment-strategy-props-builder function updates a DeploymentStrategyProps$Builder instance using the provided configuration. The function takes the DeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deploymentStrategyNamejava.lang.Stringcdk.support/lookup-entry:deployment-strategy-name
descriptionjava.lang.Stringcdk.support/lookup-entry:description
rolloutStrategysoftware.amazon.awscdk.services.appconfig.RolloutStrategycdk.support/lookup-entry:rollout-strategy
The build-deployment-strategy-props-builder function updates a DeploymentStrategyProps$Builder instance using the provided configuration.
  The function takes the DeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deploymentStrategyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-name` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `rolloutStrategy` | software.amazon.awscdk.services.appconfig.RolloutStrategy | [[cdk.support/lookup-entry]] | `:rollout-strategy` |
sourceraw docstring

build-environment-attributes-builderclj

(build-environment-attributes-builder builder id config)

The build-environment-attributes-builder function updates a EnvironmentAttributes$Builder instance using the provided configuration. The function takes the EnvironmentAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
descriptionjava.lang.Stringcdk.support/lookup-entry:description
environmentIdjava.lang.Stringcdk.support/lookup-entry:environment-id
monitorsjava.util.Listcdk.support/lookup-entry:monitors
namejava.lang.Stringcdk.support/lookup-entry:name
The build-environment-attributes-builder function updates a EnvironmentAttributes$Builder instance using the provided configuration.
  The function takes the EnvironmentAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `environmentId` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-id` |
| `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
sourceraw docstring

build-environment-builderclj

(build-environment-builder builder id config)

The build-environment-builder function updates a Environment$Builder instance using the provided configuration. The function takes the Environment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
descriptionjava.lang.Stringcdk.support/lookup-entry:description
environmentNamejava.lang.Stringcdk.support/lookup-entry:environment-name
monitorsjava.util.Listcdk.support/lookup-entry:monitors
The build-environment-builder function updates a Environment$Builder instance using the provided configuration.
  The function takes the Environment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `environmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-name` |
| `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
sourceraw docstring

build-environment-options-builderclj

(build-environment-options-builder builder id config)

The build-environment-options-builder function updates a EnvironmentOptions$Builder instance using the provided configuration. The function takes the EnvironmentOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
environmentNamejava.lang.Stringcdk.support/lookup-entry:environment-name
monitorsjava.util.Listcdk.support/lookup-entry:monitors
The build-environment-options-builder function updates a EnvironmentOptions$Builder instance using the provided configuration.
  The function takes the EnvironmentOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `environmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-name` |
| `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
sourceraw docstring

build-environment-props-builderclj

(build-environment-props-builder builder id config)

The build-environment-props-builder function updates a EnvironmentProps$Builder instance using the provided configuration. The function takes the EnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
descriptionjava.lang.Stringcdk.support/lookup-entry:description
environmentNamejava.lang.Stringcdk.support/lookup-entry:environment-name
monitorsjava.util.Listcdk.support/lookup-entry:monitors
The build-environment-props-builder function updates a EnvironmentProps$Builder instance using the provided configuration.
  The function takes the EnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `environmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-name` |
| `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
sourceraw docstring

build-extension-attributes-builderclj

(build-extension-attributes-builder builder id config)

The build-extension-attributes-builder function updates a ExtensionAttributes$Builder instance using the provided configuration. The function takes the ExtensionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionsjava.util.Listcdk.support/lookup-entry:actions
descriptionjava.lang.Stringcdk.support/lookup-entry:description
extensionArnjava.lang.Stringcdk.support/lookup-entry:extension-arn
extensionIdjava.lang.Stringcdk.support/lookup-entry:extension-id
extensionVersionNumberjava.lang.Numbercdk.support/lookup-entry:extension-version-number
namejava.lang.Stringcdk.support/lookup-entry:name
The build-extension-attributes-builder function updates a ExtensionAttributes$Builder instance using the provided configuration.
  The function takes the ExtensionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `extensionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-arn` |
| `extensionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-id` |
| `extensionVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:extension-version-number` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
sourceraw docstring

build-extension-builderclj

(build-extension-builder builder id config)

The build-extension-builder function updates a Extension$Builder instance using the provided configuration. The function takes the Extension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionsjava.util.Listcdk.support/lookup-entry:actions
descriptionjava.lang.Stringcdk.support/lookup-entry:description
extensionNamejava.lang.Stringcdk.support/lookup-entry:extension-name
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
parametersjava.util.Listcdk.support/lookup-entry:parameters
The build-extension-builder function updates a Extension$Builder instance using the provided configuration.
  The function takes the Extension$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `extensionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-name` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` |
sourceraw docstring

build-extension-options-builderclj

(build-extension-options-builder builder id config)

The build-extension-options-builder function updates a ExtensionOptions$Builder instance using the provided configuration. The function takes the ExtensionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
extensionNamejava.lang.Stringcdk.support/lookup-entry:extension-name
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
parametersjava.util.Listcdk.support/lookup-entry:parameters
The build-extension-options-builder function updates a ExtensionOptions$Builder instance using the provided configuration.
  The function takes the ExtensionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `extensionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-name` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` |
sourceraw docstring

build-extension-props-builderclj

(build-extension-props-builder builder id config)

The build-extension-props-builder function updates a ExtensionProps$Builder instance using the provided configuration. The function takes the ExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionsjava.util.Listcdk.support/lookup-entry:actions
descriptionjava.lang.Stringcdk.support/lookup-entry:description
extensionNamejava.lang.Stringcdk.support/lookup-entry:extension-name
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
parametersjava.util.Listcdk.support/lookup-entry:parameters
The build-extension-props-builder function updates a ExtensionProps$Builder instance using the provided configuration.
  The function takes the ExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `extensionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-name` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` |
sourceraw docstring

build-hosted-configuration-builderclj

(build-hosted-configuration-builder builder id config)

The build-hosted-configuration-builder function updates a HostedConfiguration$Builder instance using the provided configuration. The function takes the HostedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
contentsoftware.amazon.awscdk.services.appconfig.ConfigurationContentcdk.support/lookup-entry:content
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
namejava.lang.Stringcdk.support/lookup-entry:name
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
versionLabeljava.lang.Stringcdk.support/lookup-entry:version-label
The build-hosted-configuration-builder function updates a HostedConfiguration$Builder instance using the provided configuration.
  The function takes the HostedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `content` | software.amazon.awscdk.services.appconfig.ConfigurationContent | [[cdk.support/lookup-entry]] | `:content` |
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
| `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
sourceraw docstring

build-hosted-configuration-options-builderclj

(build-hosted-configuration-options-builder builder id config)

The build-hosted-configuration-options-builder function updates a HostedConfigurationOptions$Builder instance using the provided configuration. The function takes the HostedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
contentsoftware.amazon.awscdk.services.appconfig.ConfigurationContentcdk.support/lookup-entry:content
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
namejava.lang.Stringcdk.support/lookup-entry:name
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
versionLabeljava.lang.Stringcdk.support/lookup-entry:version-label
The build-hosted-configuration-options-builder function updates a HostedConfigurationOptions$Builder instance using the provided configuration.
  The function takes the HostedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `content` | software.amazon.awscdk.services.appconfig.ConfigurationContent | [[cdk.support/lookup-entry]] | `:content` |
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
| `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
sourceraw docstring

build-hosted-configuration-props-builderclj

(build-hosted-configuration-props-builder builder id config)

The build-hosted-configuration-props-builder function updates a HostedConfigurationProps$Builder instance using the provided configuration. The function takes the HostedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
contentsoftware.amazon.awscdk.services.appconfig.ConfigurationContentcdk.support/lookup-entry:content
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
latestVersionNumberjava.lang.Numbercdk.support/lookup-entry:latest-version-number
namejava.lang.Stringcdk.support/lookup-entry:name
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
versionLabeljava.lang.Stringcdk.support/lookup-entry:version-label
The build-hosted-configuration-props-builder function updates a HostedConfigurationProps$Builder instance using the provided configuration.
  The function takes the HostedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `content` | software.amazon.awscdk.services.appconfig.ConfigurationContent | [[cdk.support/lookup-entry]] | `:content` |
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
| `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
sourceraw docstring

build-rollout-strategy-props-builderclj

(build-rollout-strategy-props-builder builder id config)

The build-rollout-strategy-props-builder function updates a RolloutStrategyProps$Builder instance using the provided configuration. The function takes the RolloutStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deploymentDurationsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:deployment-duration
finalBakeTimesoftware.amazon.awscdk.Durationcdk.support/lookup-entry:final-bake-time
growthFactorjava.lang.Numbercdk.support/lookup-entry:growth-factor
The build-rollout-strategy-props-builder function updates a RolloutStrategyProps$Builder instance using the provided configuration.
  The function takes the RolloutStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deploymentDuration` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:deployment-duration` |
| `finalBakeTime` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:final-bake-time` |
| `growthFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:growth-factor` |
sourceraw docstring

build-sourced-configuration-builderclj

(build-sourced-configuration-builder builder id config)

The build-sourced-configuration-builder function updates a SourcedConfiguration$Builder instance using the provided configuration. The function takes the SourcedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
locationsoftware.amazon.awscdk.services.appconfig.ConfigurationSourcecdk.support/lookup-entry:location
namejava.lang.Stringcdk.support/lookup-entry:name
retrievalRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:retrieval-role
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
versionNumberjava.lang.Stringcdk.support/lookup-entry:version-number
The build-sourced-configuration-builder function updates a SourcedConfiguration$Builder instance using the provided configuration.
  The function takes the SourcedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `location` | software.amazon.awscdk.services.appconfig.ConfigurationSource | [[cdk.support/lookup-entry]] | `:location` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `retrievalRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:retrieval-role` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
| `versionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-number` |
sourceraw docstring

build-sourced-configuration-options-builderclj

(build-sourced-configuration-options-builder builder id config)

The build-sourced-configuration-options-builder function updates a SourcedConfigurationOptions$Builder instance using the provided configuration. The function takes the SourcedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
locationsoftware.amazon.awscdk.services.appconfig.ConfigurationSourcecdk.support/lookup-entry:location
namejava.lang.Stringcdk.support/lookup-entry:name
retrievalRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:retrieval-role
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
versionNumberjava.lang.Stringcdk.support/lookup-entry:version-number
The build-sourced-configuration-options-builder function updates a SourcedConfigurationOptions$Builder instance using the provided configuration.
  The function takes the SourcedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `location` | software.amazon.awscdk.services.appconfig.ConfigurationSource | [[cdk.support/lookup-entry]] | `:location` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `retrievalRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:retrieval-role` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
| `versionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-number` |
sourceraw docstring

build-sourced-configuration-props-builderclj

(build-sourced-configuration-props-builder builder id config)

The build-sourced-configuration-props-builder function updates a SourcedConfigurationProps$Builder instance using the provided configuration. The function takes the SourcedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationsoftware.amazon.awscdk.services.appconfig.IApplicationcdk.support/lookup-entry:application
deployTojava.util.Listcdk.support/lookup-entry:deploy-to
deploymentKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:deployment-key
deploymentStrategysoftware.amazon.awscdk.services.appconfig.IDeploymentStrategycdk.support/lookup-entry:deployment-strategy
descriptionjava.lang.Stringcdk.support/lookup-entry:description
locationsoftware.amazon.awscdk.services.appconfig.ConfigurationSourcecdk.support/lookup-entry:location
namejava.lang.Stringcdk.support/lookup-entry:name
retrievalRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:retrieval-role
typesoftware.amazon.awscdk.services.appconfig.ConfigurationTypecdk.api.services.appconfig/configuration-type:type
validatorsjava.util.Listcdk.support/lookup-entry:validators
versionNumberjava.lang.Stringcdk.support/lookup-entry:version-number
The build-sourced-configuration-props-builder function updates a SourcedConfigurationProps$Builder instance using the provided configuration.
  The function takes the SourcedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` |
| `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` |
| `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` |
| `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` |
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `location` | software.amazon.awscdk.services.appconfig.ConfigurationSource | [[cdk.support/lookup-entry]] | `:location` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `retrievalRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:retrieval-role` |
| `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` |
| `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
| `versionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-number` |
sourceraw docstring

cfn-application-builderclj

(cfn-application-builder scope id config)

Creates a CfnApplication$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnApplication$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-application-props-builderclj

(cfn-application-props-builder id config)

Creates a CfnApplicationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnApplicationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-configuration-profile-builderclj

(cfn-configuration-profile-builder scope id config)

Creates a CfnConfigurationProfile$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnConfigurationProfile$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-configuration-profile-props-builderclj

(cfn-configuration-profile-props-builder id config)

Creates a CfnConfigurationProfileProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnConfigurationProfileProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-configuration-profile-validators-property-builderclj

(cfn-configuration-profile-validators-property-builder id config)

Creates a CfnConfigurationProfile$ValidatorsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnConfigurationProfile$ValidatorsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-deployment-builderclj

(cfn-deployment-builder scope id config)

Creates a CfnDeployment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnDeployment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-deployment-dynamic-extension-parameters-property-builderclj

(cfn-deployment-dynamic-extension-parameters-property-builder id config)

Creates a CfnDeployment$DynamicExtensionParametersProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnDeployment$DynamicExtensionParametersProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-deployment-props-builderclj

(cfn-deployment-props-builder id config)

Creates a CfnDeploymentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnDeploymentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-deployment-strategy-builderclj

(cfn-deployment-strategy-builder scope id config)

Creates a CfnDeploymentStrategy$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnDeploymentStrategy$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-deployment-strategy-props-builderclj

(cfn-deployment-strategy-props-builder id config)

Creates a CfnDeploymentStrategyProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnDeploymentStrategyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-environment-builderclj

(cfn-environment-builder scope id config)

Creates a CfnEnvironment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-environment-monitor-property-builderclj

(cfn-environment-monitor-property-builder id config)

Creates a CfnEnvironment$MonitorProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnEnvironment$MonitorProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-environment-monitors-property-builderclj

(cfn-environment-monitors-property-builder id config)

Creates a CfnEnvironment$MonitorsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnEnvironment$MonitorsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-environment-props-builderclj

(cfn-environment-props-builder id config)

Creates a CfnEnvironmentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-extension-action-property-builderclj

(cfn-extension-action-property-builder id config)

Creates a CfnExtension$ActionProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnExtension$ActionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-extension-association-builderclj

(cfn-extension-association-builder scope id config)

Creates a CfnExtensionAssociation$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnExtensionAssociation$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-extension-association-props-builderclj

(cfn-extension-association-props-builder id config)

Creates a CfnExtensionAssociationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnExtensionAssociationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-extension-builderclj

(cfn-extension-builder scope id config)

Creates a CfnExtension$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnExtension$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-extension-parameter-property-builderclj

(cfn-extension-parameter-property-builder id config)

Creates a CfnExtension$ParameterProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnExtension$ParameterProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-extension-props-builderclj

(cfn-extension-props-builder id config)

Creates a CfnExtensionProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnExtensionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-hosted-configuration-version-builderclj

(cfn-hosted-configuration-version-builder scope id config)

Creates a CfnHostedConfigurationVersion$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnHostedConfigurationVersion$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-hosted-configuration-version-props-builderclj

(cfn-hosted-configuration-version-props-builder id config)

Creates a CfnHostedConfigurationVersionProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnHostedConfigurationVersionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

configuration-options-builderclj

(configuration-options-builder id config)

Creates a ConfigurationOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ConfigurationOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

configuration-props-builderclj

(configuration-props-builder id config)

Creates a ConfigurationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

configuration-source-typeclj

(configuration-source-type config id item-key)

The configuration-source-type function data interprets values in the provided config data into a ConfigurationSourceType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of ConfigurationSourceType - the value is returned.
  • is :secrets-manager - ConfigurationSourceType/SECRETS_MANAGER is returned
  • is :ssm-parameter - ConfigurationSourceType/SSM_PARAMETER is returned
  • is :s3 - ConfigurationSourceType/S3 is returned
  • is :code-pipeline - ConfigurationSourceType/CODE_PIPELINE is returned
  • is :ssm-document - ConfigurationSourceType/SSM_DOCUMENT is returned

If a value is not found or matches the above criteria, nil is returned.

The `configuration-source-type` function data interprets values in the provided config data into a 
`ConfigurationSourceType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `ConfigurationSourceType` - the value is returned.
* is `:secrets-manager` - `ConfigurationSourceType/SECRETS_MANAGER` is returned
* is `:ssm-parameter` - `ConfigurationSourceType/SSM_PARAMETER` is returned
* is `:s3` - `ConfigurationSourceType/S3` is returned
* is `:code-pipeline` - `ConfigurationSourceType/CODE_PIPELINE` is returned
* is `:ssm-document` - `ConfigurationSourceType/SSM_DOCUMENT` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

configuration-typeclj

(configuration-type config id item-key)

The configuration-type function data interprets values in the provided config data into a ConfigurationType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of ConfigurationType - the value is returned.
  • is :freeform - ConfigurationType/FREEFORM is returned
  • is :feature-flags - ConfigurationType/FEATURE_FLAGS is returned

If a value is not found or matches the above criteria, nil is returned.

The `configuration-type` function data interprets values in the provided config data into a 
`ConfigurationType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `ConfigurationType` - the value is returned.
* is `:freeform` - `ConfigurationType/FREEFORM` is returned
* is `:feature-flags` - `ConfigurationType/FEATURE_FLAGS` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

deployment-strategy-builderclj

(deployment-strategy-builder scope id config)

Creates a DeploymentStrategy$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `DeploymentStrategy$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

deployment-strategy-props-builderclj

(deployment-strategy-props-builder id config)

Creates a DeploymentStrategyProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `DeploymentStrategyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

environment-attributes-builderclj

(environment-attributes-builder id config)

Creates a EnvironmentAttributes$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `EnvironmentAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

environment-builderclj

(environment-builder scope id config)

Creates a Environment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `Environment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

environment-options-builderclj

(environment-options-builder id config)

Creates a EnvironmentOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `EnvironmentOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

environment-props-builderclj

(environment-props-builder id config)

Creates a EnvironmentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `EnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

extension-attributes-builderclj

(extension-attributes-builder id config)

Creates a ExtensionAttributes$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ExtensionAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

extension-builderclj

(extension-builder scope id config)

Creates a Extension$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `Extension$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

extension-options-builderclj

(extension-options-builder id config)

Creates a ExtensionOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ExtensionOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

extension-props-builderclj

(extension-props-builder id config)

Creates a ExtensionProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ExtensionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

growth-typeclj

(growth-type config id item-key)

The growth-type function data interprets values in the provided config data into a GrowthType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of GrowthType - the value is returned.
  • is :linear - GrowthType/LINEAR is returned
  • is :exponential - GrowthType/EXPONENTIAL is returned

If a value is not found or matches the above criteria, nil is returned.

The `growth-type` function data interprets values in the provided config data into a 
`GrowthType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `GrowthType` - the value is returned.
* is `:linear` - `GrowthType/LINEAR` is returned
* is `:exponential` - `GrowthType/EXPONENTIAL` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

hosted-configuration-builderclj

(hosted-configuration-builder scope id config)

Creates a HostedConfiguration$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `HostedConfiguration$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

hosted-configuration-options-builderclj

(hosted-configuration-options-builder id config)

Creates a HostedConfigurationOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `HostedConfigurationOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

hosted-configuration-props-builderclj

(hosted-configuration-props-builder id config)

Creates a HostedConfigurationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `HostedConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

monitor-typeclj

(monitor-type config id item-key)

The monitor-type function data interprets values in the provided config data into a MonitorType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of MonitorType - the value is returned.
  • is :cloudwatch - MonitorType/CLOUDWATCH is returned
  • is :cfn-monitors-property - MonitorType/CFN_MONITORS_PROPERTY is returned

If a value is not found or matches the above criteria, nil is returned.

The `monitor-type` function data interprets values in the provided config data into a 
`MonitorType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `MonitorType` - the value is returned.
* is `:cloudwatch` - `MonitorType/CLOUDWATCH` is returned
* is `:cfn-monitors-property` - `MonitorType/CFN_MONITORS_PROPERTY` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

platformclj

(platform config id item-key)

The platform function data interprets values in the provided config data into a Platform instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of Platform - the value is returned.
  • is :x86-64 - Platform/X86_64 is returned
  • is :arm-64 - Platform/ARM_64 is returned

If a value is not found or matches the above criteria, nil is returned.

The `platform` function data interprets values in the provided config data into a 
`Platform` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `Platform` - the value is returned.
* is `:x86-64` - `Platform/X86_64` is returned
* is `:arm-64` - `Platform/ARM_64` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

rollout-strategy-props-builderclj

(rollout-strategy-props-builder id config)

Creates a RolloutStrategyProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `RolloutStrategyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

source-typeclj

(source-type config id item-key)

The source-type function data interprets values in the provided config data into a SourceType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of SourceType - the value is returned.
  • is :events - SourceType/EVENTS is returned
  • is :lambda - SourceType/LAMBDA is returned
  • is :sqs - SourceType/SQS is returned
  • is :sns - SourceType/SNS is returned

If a value is not found or matches the above criteria, nil is returned.

The `source-type` function data interprets values in the provided config data into a 
`SourceType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `SourceType` - the value is returned.
* is `:events` - `SourceType/EVENTS` is returned
* is `:lambda` - `SourceType/LAMBDA` is returned
* is `:sqs` - `SourceType/SQS` is returned
* is `:sns` - `SourceType/SNS` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

sourced-configuration-builderclj

(sourced-configuration-builder scope id config)

Creates a SourcedConfiguration$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `SourcedConfiguration$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

sourced-configuration-options-builderclj

(sourced-configuration-options-builder id config)

Creates a SourcedConfigurationOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `SourcedConfigurationOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

sourced-configuration-props-builderclj

(sourced-configuration-props-builder id config)

Creates a SourcedConfigurationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `SourcedConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

validator-typeclj

(validator-type config id item-key)

The validator-type function data interprets values in the provided config data into a ValidatorType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of ValidatorType - the value is returned.
  • is :json-schema - ValidatorType/JSON_SCHEMA is returned
  • is :lambda - ValidatorType/LAMBDA is returned

If a value is not found or matches the above criteria, nil is returned.

The `validator-type` function data interprets values in the provided config data into a 
`ValidatorType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `ValidatorType` - the value is returned.
* is `:json-schema` - `ValidatorType/JSON_SCHEMA` is returned
* is `:lambda` - `ValidatorType/LAMBDA` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close