Functions that represent AWS CDK enums and builders in the software.amazon.awscdk package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk package.
(app-builder id config)
Creates a App$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 |
Creates a `App$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 |
(app-props-builder id config)
Creates a AppProps$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 |
Creates a `AppProps$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 |
(arn-components-builder id config)
Creates a ArnComponents$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 |
Creates a `ArnComponents$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 |
(arn-format config id item-key)
The arn-format
function data interprets values in the provided config data into a
ArnFormat
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:
ArnFormat
- the value is returned.:slash-resource-name
- ArnFormat/SLASH_RESOURCE_NAME
is returned:no-resource-name
- ArnFormat/NO_RESOURCE_NAME
is returned:slash-resource-slash-resource-name
- ArnFormat/SLASH_RESOURCE_SLASH_RESOURCE_NAME
is returned:colon-resource-name
- ArnFormat/COLON_RESOURCE_NAME
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `arn-format` function data interprets values in the provided config data into a `ArnFormat` 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 `ArnFormat` - the value is returned. * is `:slash-resource-name` - `ArnFormat/SLASH_RESOURCE_NAME` is returned * is `:no-resource-name` - `ArnFormat/NO_RESOURCE_NAME` is returned * is `:slash-resource-slash-resource-name` - `ArnFormat/SLASH_RESOURCE_SLASH_RESOURCE_NAME` is returned * is `:colon-resource-name` - `ArnFormat/COLON_RESOURCE_NAME` is returned If a value is not found or matches the above criteria, nil is returned.
(asset-hash-type config id item-key)
The asset-hash-type
function data interprets values in the provided config data into a
AssetHashType
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:
AssetHashType
- the value is returned.:output
- AssetHashType/OUTPUT
is returned:source
- AssetHashType/SOURCE
is returned:custom
- AssetHashType/CUSTOM
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `asset-hash-type` function data interprets values in the provided config data into a `AssetHashType` 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 `AssetHashType` - the value is returned. * is `:output` - `AssetHashType/OUTPUT` is returned * is `:source` - `AssetHashType/SOURCE` is returned * is `:custom` - `AssetHashType/CUSTOM` is returned If a value is not found or matches the above criteria, nil is returned.
(asset-manifest-docker-image-destination-builder id config)
Creates a AssetManifestDockerImageDestination$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 |
Creates a `AssetManifestDockerImageDestination$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 |
(asset-manifest-file-destination-builder id config)
Creates a AssetManifestFileDestination$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 |
Creates a `AssetManifestFileDestination$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 |
(asset-options-builder id config)
Creates a AssetOptions$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 |
Creates a `AssetOptions$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 |
(asset-staging-builder scope id config)
Creates a AssetStaging$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 `AssetStaging$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 |
(asset-staging-props-builder id config)
Creates a AssetStagingProps$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 |
Creates a `AssetStagingProps$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 |
(bootstrapless-synthesizer-builder id config)
Creates a BootstraplessSynthesizer$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 |
Creates a `BootstraplessSynthesizer$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 |
(bootstrapless-synthesizer-props-builder id config)
Creates a BootstraplessSynthesizerProps$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 |
Creates a `BootstraplessSynthesizerProps$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 |
(build-app-builder builder id config)
The build-app-builder function updates a App$Builder instance using the provided configuration. The function takes the App$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 |
---|---|---|---|
analyticsReporting | java.lang.Boolean | cdk.support/lookup-entry | :analytics-reporting |
autoSynth | java.lang.Boolean | cdk.support/lookup-entry | :auto-synth |
context | java.util.Map | cdk.support/lookup-entry | :context |
defaultStackSynthesizer | software.amazon.awscdk.IReusableStackSynthesizer | cdk.support/lookup-entry | :default-stack-synthesizer |
outdir | java.lang.String | cdk.support/lookup-entry | :outdir |
policyValidationBeta1 | java.util.List | cdk.support/lookup-entry | :policy-validation-beta1 |
postCliContext | java.util.Map | cdk.support/lookup-entry | :post-cli-context |
stackTraces | java.lang.Boolean | cdk.support/lookup-entry | :stack-traces |
treeMetadata | java.lang.Boolean | cdk.support/lookup-entry | :tree-metadata |
The build-app-builder function updates a App$Builder instance using the provided configuration. The function takes the App$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 | |---|---|---|---| | `analyticsReporting` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:analytics-reporting` | | `autoSynth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:auto-synth` | | `context` | java.util.Map | [[cdk.support/lookup-entry]] | `:context` | | `defaultStackSynthesizer` | software.amazon.awscdk.IReusableStackSynthesizer | [[cdk.support/lookup-entry]] | `:default-stack-synthesizer` | | `outdir` | java.lang.String | [[cdk.support/lookup-entry]] | `:outdir` | | `policyValidationBeta1` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-validation-beta1` | | `postCliContext` | java.util.Map | [[cdk.support/lookup-entry]] | `:post-cli-context` | | `stackTraces` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stack-traces` | | `treeMetadata` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:tree-metadata` |
(build-app-props-builder builder id config)
The build-app-props-builder function updates a AppProps$Builder instance using the provided configuration. The function takes the AppProps$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 |
---|---|---|---|
analyticsReporting | java.lang.Boolean | cdk.support/lookup-entry | :analytics-reporting |
autoSynth | java.lang.Boolean | cdk.support/lookup-entry | :auto-synth |
context | java.util.Map | cdk.support/lookup-entry | :context |
defaultStackSynthesizer | software.amazon.awscdk.IReusableStackSynthesizer | cdk.support/lookup-entry | :default-stack-synthesizer |
outdir | java.lang.String | cdk.support/lookup-entry | :outdir |
policyValidationBeta1 | java.util.List | cdk.support/lookup-entry | :policy-validation-beta1 |
postCliContext | java.util.Map | cdk.support/lookup-entry | :post-cli-context |
stackTraces | java.lang.Boolean | cdk.support/lookup-entry | :stack-traces |
treeMetadata | java.lang.Boolean | cdk.support/lookup-entry | :tree-metadata |
The build-app-props-builder function updates a AppProps$Builder instance using the provided configuration. The function takes the AppProps$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 | |---|---|---|---| | `analyticsReporting` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:analytics-reporting` | | `autoSynth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:auto-synth` | | `context` | java.util.Map | [[cdk.support/lookup-entry]] | `:context` | | `defaultStackSynthesizer` | software.amazon.awscdk.IReusableStackSynthesizer | [[cdk.support/lookup-entry]] | `:default-stack-synthesizer` | | `outdir` | java.lang.String | [[cdk.support/lookup-entry]] | `:outdir` | | `policyValidationBeta1` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-validation-beta1` | | `postCliContext` | java.util.Map | [[cdk.support/lookup-entry]] | `:post-cli-context` | | `stackTraces` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stack-traces` | | `treeMetadata` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:tree-metadata` |
(build-arn-components-builder builder id config)
The build-arn-components-builder function updates a ArnComponents$Builder instance using the provided configuration. The function takes the ArnComponents$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 |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
arnFormat | software.amazon.awscdk.ArnFormat | cdk.api/arn-format | :arn-format |
partition | java.lang.String | cdk.support/lookup-entry | :partition |
region | java.lang.String | cdk.support/lookup-entry | :region |
resource | java.lang.String | cdk.support/lookup-entry | :resource |
resourceName | java.lang.String | cdk.support/lookup-entry | :resource-name |
service | java.lang.String | cdk.support/lookup-entry | :service |
The build-arn-components-builder function updates a ArnComponents$Builder instance using the provided configuration. The function takes the ArnComponents$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 | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `arnFormat` | software.amazon.awscdk.ArnFormat | [[cdk.api/arn-format]] | `:arn-format` | | `partition` | java.lang.String | [[cdk.support/lookup-entry]] | `:partition` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `resource` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource` | | `resourceName` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-name` | | `service` | java.lang.String | [[cdk.support/lookup-entry]] | `:service` |
(build-asset-manifest-docker-image-destination-builder builder id config)
The build-asset-manifest-docker-image-destination-builder function updates a AssetManifestDockerImageDestination$Builder instance using the provided configuration. The function takes the AssetManifestDockerImageDestination$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 |
---|---|---|---|
dockerTagPrefix | java.lang.String | cdk.support/lookup-entry | :docker-tag-prefix |
repositoryName | java.lang.String | cdk.support/lookup-entry | :repository-name |
role | software.amazon.awscdk.RoleOptions | cdk.support/lookup-entry | :role |
The build-asset-manifest-docker-image-destination-builder function updates a AssetManifestDockerImageDestination$Builder instance using the provided configuration. The function takes the AssetManifestDockerImageDestination$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 | |---|---|---|---| | `dockerTagPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-tag-prefix` | | `repositoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:repository-name` | | `role` | software.amazon.awscdk.RoleOptions | [[cdk.support/lookup-entry]] | `:role` |
(build-asset-manifest-file-destination-builder builder id config)
The build-asset-manifest-file-destination-builder function updates a AssetManifestFileDestination$Builder instance using the provided configuration. The function takes the AssetManifestFileDestination$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 |
---|---|---|---|
bucketName | java.lang.String | cdk.support/lookup-entry | :bucket-name |
bucketPrefix | java.lang.String | cdk.support/lookup-entry | :bucket-prefix |
role | software.amazon.awscdk.RoleOptions | cdk.support/lookup-entry | :role |
The build-asset-manifest-file-destination-builder function updates a AssetManifestFileDestination$Builder instance using the provided configuration. The function takes the AssetManifestFileDestination$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 | |---|---|---|---| | `bucketName` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-name` | | `bucketPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-prefix` | | `role` | software.amazon.awscdk.RoleOptions | [[cdk.support/lookup-entry]] | `:role` |
(build-asset-options-builder builder id config)
The build-asset-options-builder function updates a AssetOptions$Builder instance using the provided configuration. The function takes the AssetOptions$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 |
---|---|---|---|
assetHash | java.lang.String | cdk.support/lookup-entry | :asset-hash |
assetHashType | software.amazon.awscdk.AssetHashType | cdk.api/asset-hash-type | :asset-hash-type |
bundling | software.amazon.awscdk.BundlingOptions | cdk.support/lookup-entry | :bundling |
The build-asset-options-builder function updates a AssetOptions$Builder instance using the provided configuration. The function takes the AssetOptions$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 | |---|---|---|---| | `assetHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-hash` | | `assetHashType` | software.amazon.awscdk.AssetHashType | [[cdk.api/asset-hash-type]] | `:asset-hash-type` | | `bundling` | software.amazon.awscdk.BundlingOptions | [[cdk.support/lookup-entry]] | `:bundling` |
(build-asset-staging-builder builder id config)
The build-asset-staging-builder function updates a AssetStaging$Builder instance using the provided configuration. The function takes the AssetStaging$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 |
---|---|---|---|
assetHash | java.lang.String | cdk.support/lookup-entry | :asset-hash |
assetHashType | software.amazon.awscdk.AssetHashType | cdk.api/asset-hash-type | :asset-hash-type |
bundling | software.amazon.awscdk.BundlingOptions | cdk.support/lookup-entry | :bundling |
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
extraHash | java.lang.String | cdk.support/lookup-entry | :extra-hash |
follow | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
sourcePath | java.lang.String | cdk.support/lookup-entry | :source-path |
The build-asset-staging-builder function updates a AssetStaging$Builder instance using the provided configuration. The function takes the AssetStaging$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 | |---|---|---|---| | `assetHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-hash` | | `assetHashType` | software.amazon.awscdk.AssetHashType | [[cdk.api/asset-hash-type]] | `:asset-hash-type` | | `bundling` | software.amazon.awscdk.BundlingOptions | [[cdk.support/lookup-entry]] | `:bundling` | | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `extraHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:extra-hash` | | `follow` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` | | `sourcePath` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-path` |
(build-asset-staging-props-builder builder id config)
The build-asset-staging-props-builder function updates a AssetStagingProps$Builder instance using the provided configuration. The function takes the AssetStagingProps$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 |
---|---|---|---|
assetHash | java.lang.String | cdk.support/lookup-entry | :asset-hash |
assetHashType | software.amazon.awscdk.AssetHashType | cdk.api/asset-hash-type | :asset-hash-type |
bundling | software.amazon.awscdk.BundlingOptions | cdk.support/lookup-entry | :bundling |
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
extraHash | java.lang.String | cdk.support/lookup-entry | :extra-hash |
follow | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
sourcePath | java.lang.String | cdk.support/lookup-entry | :source-path |
The build-asset-staging-props-builder function updates a AssetStagingProps$Builder instance using the provided configuration. The function takes the AssetStagingProps$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 | |---|---|---|---| | `assetHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-hash` | | `assetHashType` | software.amazon.awscdk.AssetHashType | [[cdk.api/asset-hash-type]] | `:asset-hash-type` | | `bundling` | software.amazon.awscdk.BundlingOptions | [[cdk.support/lookup-entry]] | `:bundling` | | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `extraHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:extra-hash` | | `follow` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` | | `sourcePath` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-path` |
(build-bootstrapless-synthesizer-builder builder id config)
The build-bootstrapless-synthesizer-builder function updates a BootstraplessSynthesizer$Builder instance using the provided configuration. The function takes the BootstraplessSynthesizer$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 |
---|---|---|---|
cloudFormationExecutionRoleArn | java.lang.String | cdk.support/lookup-entry | :cloud-formation-execution-role-arn |
deployRoleArn | java.lang.String | cdk.support/lookup-entry | :deploy-role-arn |
The build-bootstrapless-synthesizer-builder function updates a BootstraplessSynthesizer$Builder instance using the provided configuration. The function takes the BootstraplessSynthesizer$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 | |---|---|---|---| | `cloudFormationExecutionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:cloud-formation-execution-role-arn` | | `deployRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:deploy-role-arn` |
(build-bootstrapless-synthesizer-props-builder builder id config)
The build-bootstrapless-synthesizer-props-builder function updates a BootstraplessSynthesizerProps$Builder instance using the provided configuration. The function takes the BootstraplessSynthesizerProps$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 |
---|---|---|---|
cloudFormationExecutionRoleArn | java.lang.String | cdk.support/lookup-entry | :cloud-formation-execution-role-arn |
deployRoleArn | java.lang.String | cdk.support/lookup-entry | :deploy-role-arn |
The build-bootstrapless-synthesizer-props-builder function updates a BootstraplessSynthesizerProps$Builder instance using the provided configuration. The function takes the BootstraplessSynthesizerProps$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 | |---|---|---|---| | `cloudFormationExecutionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:cloud-formation-execution-role-arn` | | `deployRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:deploy-role-arn` |
(build-bundling-options-builder builder id config)
The build-bundling-options-builder function updates a BundlingOptions$Builder instance using the provided configuration. The function takes the BundlingOptions$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 |
---|---|---|---|
bundlingFileAccess | software.amazon.awscdk.BundlingFileAccess | cdk.api/bundling-file-access | :bundling-file-access |
command | java.util.List | cdk.support/lookup-entry | :command |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
image | software.amazon.awscdk.DockerImage | cdk.support/lookup-entry | :image |
local | software.amazon.awscdk.ILocalBundling | cdk.support/lookup-entry | :local |
network | java.lang.String | cdk.support/lookup-entry | :network |
outputType | software.amazon.awscdk.BundlingOutput | cdk.api/bundling-output | :output-type |
platform | java.lang.String | cdk.support/lookup-entry | :platform |
securityOpt | java.lang.String | cdk.support/lookup-entry | :security-opt |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
volumesFrom | java.util.List | cdk.support/lookup-entry | :volumes-from |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-bundling-options-builder function updates a BundlingOptions$Builder instance using the provided configuration. The function takes the BundlingOptions$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 | |---|---|---|---| | `bundlingFileAccess` | software.amazon.awscdk.BundlingFileAccess | [[cdk.api/bundling-file-access]] | `:bundling-file-access` | | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `image` | software.amazon.awscdk.DockerImage | [[cdk.support/lookup-entry]] | `:image` | | `local` | software.amazon.awscdk.ILocalBundling | [[cdk.support/lookup-entry]] | `:local` | | `network` | java.lang.String | [[cdk.support/lookup-entry]] | `:network` | | `outputType` | software.amazon.awscdk.BundlingOutput | [[cdk.api/bundling-output]] | `:output-type` | | `platform` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform` | | `securityOpt` | java.lang.String | [[cdk.support/lookup-entry]] | `:security-opt` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` | | `volumesFrom` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes-from` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-cfn-auto-scaling-replacing-update-builder builder id config)
The build-cfn-auto-scaling-replacing-update-builder function updates a CfnAutoScalingReplacingUpdate$Builder instance using the provided configuration. The function takes the CfnAutoScalingReplacingUpdate$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 |
---|---|---|---|
willReplace | java.lang.Boolean | cdk.support/lookup-entry | :will-replace |
The build-cfn-auto-scaling-replacing-update-builder function updates a CfnAutoScalingReplacingUpdate$Builder instance using the provided configuration. The function takes the CfnAutoScalingReplacingUpdate$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 | |---|---|---|---| | `willReplace` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:will-replace` |
(build-cfn-auto-scaling-rolling-update-builder builder id config)
The build-cfn-auto-scaling-rolling-update-builder function updates a CfnAutoScalingRollingUpdate$Builder instance using the provided configuration. The function takes the CfnAutoScalingRollingUpdate$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 |
---|---|---|---|
maxBatchSize | java.lang.Number | cdk.support/lookup-entry | :max-batch-size |
minInstancesInService | java.lang.Number | cdk.support/lookup-entry | :min-instances-in-service |
minSuccessfulInstancesPercent | java.lang.Number | cdk.support/lookup-entry | :min-successful-instances-percent |
pauseTime | java.lang.String | cdk.support/lookup-entry | :pause-time |
suspendProcesses | java.util.List | cdk.support/lookup-entry | :suspend-processes |
waitOnResourceSignals | java.lang.Boolean | cdk.support/lookup-entry | :wait-on-resource-signals |
The build-cfn-auto-scaling-rolling-update-builder function updates a CfnAutoScalingRollingUpdate$Builder instance using the provided configuration. The function takes the CfnAutoScalingRollingUpdate$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 | |---|---|---|---| | `maxBatchSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-batch-size` | | `minInstancesInService` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-instances-in-service` | | `minSuccessfulInstancesPercent` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-successful-instances-percent` | | `pauseTime` | java.lang.String | [[cdk.support/lookup-entry]] | `:pause-time` | | `suspendProcesses` | java.util.List | [[cdk.support/lookup-entry]] | `:suspend-processes` | | `waitOnResourceSignals` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:wait-on-resource-signals` |
(build-cfn-auto-scaling-scheduled-action-builder builder id config)
The build-cfn-auto-scaling-scheduled-action-builder function updates a CfnAutoScalingScheduledAction$Builder instance using the provided configuration. The function takes the CfnAutoScalingScheduledAction$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 |
---|---|---|---|
ignoreUnmodifiedGroupSizeProperties | java.lang.Boolean | cdk.support/lookup-entry | :ignore-unmodified-group-size-properties |
The build-cfn-auto-scaling-scheduled-action-builder function updates a CfnAutoScalingScheduledAction$Builder instance using the provided configuration. The function takes the CfnAutoScalingScheduledAction$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 | |---|---|---|---| | `ignoreUnmodifiedGroupSizeProperties` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ignore-unmodified-group-size-properties` |
(build-cfn-code-deploy-blue-green-additional-options-builder builder id config)
The build-cfn-code-deploy-blue-green-additional-options-builder function updates a CfnCodeDeployBlueGreenAdditionalOptions$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenAdditionalOptions$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 |
---|---|---|---|
terminationWaitTimeInMinutes | java.lang.Number | cdk.support/lookup-entry | :termination-wait-time-in-minutes |
The build-cfn-code-deploy-blue-green-additional-options-builder function updates a CfnCodeDeployBlueGreenAdditionalOptions$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenAdditionalOptions$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 | |---|---|---|---| | `terminationWaitTimeInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:termination-wait-time-in-minutes` |
(build-cfn-code-deploy-blue-green-application-builder builder id config)
The build-cfn-code-deploy-blue-green-application-builder function updates a CfnCodeDeployBlueGreenApplication$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenApplication$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 |
---|---|---|---|
ecsAttributes | software.amazon.awscdk.CfnCodeDeployBlueGreenEcsAttributes | cdk.support/lookup-entry | :ecs-attributes |
target | software.amazon.awscdk.CfnCodeDeployBlueGreenApplicationTarget | cdk.support/lookup-entry | :target |
The build-cfn-code-deploy-blue-green-application-builder function updates a CfnCodeDeployBlueGreenApplication$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenApplication$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 | |---|---|---|---| | `ecsAttributes` | software.amazon.awscdk.CfnCodeDeployBlueGreenEcsAttributes | [[cdk.support/lookup-entry]] | `:ecs-attributes` | | `target` | software.amazon.awscdk.CfnCodeDeployBlueGreenApplicationTarget | [[cdk.support/lookup-entry]] | `:target` |
(build-cfn-code-deploy-blue-green-application-target-builder builder id config)
The build-cfn-code-deploy-blue-green-application-target-builder function updates a CfnCodeDeployBlueGreenApplicationTarget$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenApplicationTarget$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 |
---|---|---|---|
logicalId | java.lang.String | cdk.support/lookup-entry | :logical-id |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-code-deploy-blue-green-application-target-builder function updates a CfnCodeDeployBlueGreenApplicationTarget$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenApplicationTarget$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 | |---|---|---|---| | `logicalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:logical-id` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-code-deploy-blue-green-ecs-attributes-builder builder id config)
The build-cfn-code-deploy-blue-green-ecs-attributes-builder function updates a CfnCodeDeployBlueGreenEcsAttributes$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenEcsAttributes$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 |
---|---|---|---|
taskDefinitions | java.util.List | cdk.support/lookup-entry | :task-definitions |
taskSets | java.util.List | cdk.support/lookup-entry | :task-sets |
trafficRouting | software.amazon.awscdk.CfnTrafficRouting | cdk.support/lookup-entry | :traffic-routing |
The build-cfn-code-deploy-blue-green-ecs-attributes-builder function updates a CfnCodeDeployBlueGreenEcsAttributes$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenEcsAttributes$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 | |---|---|---|---| | `taskDefinitions` | java.util.List | [[cdk.support/lookup-entry]] | `:task-definitions` | | `taskSets` | java.util.List | [[cdk.support/lookup-entry]] | `:task-sets` | | `trafficRouting` | software.amazon.awscdk.CfnTrafficRouting | [[cdk.support/lookup-entry]] | `:traffic-routing` |
(build-cfn-code-deploy-blue-green-hook-builder builder id config)
The build-cfn-code-deploy-blue-green-hook-builder function updates a CfnCodeDeployBlueGreenHook$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenHook$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 |
---|---|---|---|
additionalOptions | software.amazon.awscdk.CfnCodeDeployBlueGreenAdditionalOptions | cdk.support/lookup-entry | :additional-options |
applications | java.util.List | cdk.support/lookup-entry | :applications |
lifecycleEventHooks | software.amazon.awscdk.CfnCodeDeployBlueGreenLifecycleEventHooks | cdk.support/lookup-entry | :lifecycle-event-hooks |
serviceRole | java.lang.String | cdk.support/lookup-entry | :service-role |
trafficRoutingConfig | software.amazon.awscdk.CfnTrafficRoutingConfig | cdk.support/lookup-entry | :traffic-routing-config |
The build-cfn-code-deploy-blue-green-hook-builder function updates a CfnCodeDeployBlueGreenHook$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenHook$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 | |---|---|---|---| | `additionalOptions` | software.amazon.awscdk.CfnCodeDeployBlueGreenAdditionalOptions | [[cdk.support/lookup-entry]] | `:additional-options` | | `applications` | java.util.List | [[cdk.support/lookup-entry]] | `:applications` | | `lifecycleEventHooks` | software.amazon.awscdk.CfnCodeDeployBlueGreenLifecycleEventHooks | [[cdk.support/lookup-entry]] | `:lifecycle-event-hooks` | | `serviceRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-role` | | `trafficRoutingConfig` | software.amazon.awscdk.CfnTrafficRoutingConfig | [[cdk.support/lookup-entry]] | `:traffic-routing-config` |
(build-cfn-code-deploy-blue-green-hook-props-builder builder id config)
The build-cfn-code-deploy-blue-green-hook-props-builder function updates a CfnCodeDeployBlueGreenHookProps$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenHookProps$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 |
---|---|---|---|
additionalOptions | software.amazon.awscdk.CfnCodeDeployBlueGreenAdditionalOptions | cdk.support/lookup-entry | :additional-options |
applications | java.util.List | cdk.support/lookup-entry | :applications |
lifecycleEventHooks | software.amazon.awscdk.CfnCodeDeployBlueGreenLifecycleEventHooks | cdk.support/lookup-entry | :lifecycle-event-hooks |
serviceRole | java.lang.String | cdk.support/lookup-entry | :service-role |
trafficRoutingConfig | software.amazon.awscdk.CfnTrafficRoutingConfig | cdk.support/lookup-entry | :traffic-routing-config |
The build-cfn-code-deploy-blue-green-hook-props-builder function updates a CfnCodeDeployBlueGreenHookProps$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenHookProps$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 | |---|---|---|---| | `additionalOptions` | software.amazon.awscdk.CfnCodeDeployBlueGreenAdditionalOptions | [[cdk.support/lookup-entry]] | `:additional-options` | | `applications` | java.util.List | [[cdk.support/lookup-entry]] | `:applications` | | `lifecycleEventHooks` | software.amazon.awscdk.CfnCodeDeployBlueGreenLifecycleEventHooks | [[cdk.support/lookup-entry]] | `:lifecycle-event-hooks` | | `serviceRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-role` | | `trafficRoutingConfig` | software.amazon.awscdk.CfnTrafficRoutingConfig | [[cdk.support/lookup-entry]] | `:traffic-routing-config` |
(build-cfn-code-deploy-blue-green-lifecycle-event-hooks-builder builder
id
config)
The build-cfn-code-deploy-blue-green-lifecycle-event-hooks-builder function updates a CfnCodeDeployBlueGreenLifecycleEventHooks$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenLifecycleEventHooks$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 |
---|---|---|---|
afterAllowTestTraffic | java.lang.String | cdk.support/lookup-entry | :after-allow-test-traffic |
afterAllowTraffic | java.lang.String | cdk.support/lookup-entry | :after-allow-traffic |
afterInstall | java.lang.String | cdk.support/lookup-entry | :after-install |
beforeAllowTraffic | java.lang.String | cdk.support/lookup-entry | :before-allow-traffic |
beforeInstall | java.lang.String | cdk.support/lookup-entry | :before-install |
The build-cfn-code-deploy-blue-green-lifecycle-event-hooks-builder function updates a CfnCodeDeployBlueGreenLifecycleEventHooks$Builder instance using the provided configuration. The function takes the CfnCodeDeployBlueGreenLifecycleEventHooks$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 | |---|---|---|---| | `afterAllowTestTraffic` | java.lang.String | [[cdk.support/lookup-entry]] | `:after-allow-test-traffic` | | `afterAllowTraffic` | java.lang.String | [[cdk.support/lookup-entry]] | `:after-allow-traffic` | | `afterInstall` | java.lang.String | [[cdk.support/lookup-entry]] | `:after-install` | | `beforeAllowTraffic` | java.lang.String | [[cdk.support/lookup-entry]] | `:before-allow-traffic` | | `beforeInstall` | java.lang.String | [[cdk.support/lookup-entry]] | `:before-install` |
(build-cfn-code-deploy-lambda-alias-update-builder builder id config)
The build-cfn-code-deploy-lambda-alias-update-builder function updates a CfnCodeDeployLambdaAliasUpdate$Builder instance using the provided configuration. The function takes the CfnCodeDeployLambdaAliasUpdate$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 |
---|---|---|---|
afterAllowTrafficHook | java.lang.String | cdk.support/lookup-entry | :after-allow-traffic-hook |
applicationName | java.lang.String | cdk.support/lookup-entry | :application-name |
beforeAllowTrafficHook | java.lang.String | cdk.support/lookup-entry | :before-allow-traffic-hook |
deploymentGroupName | java.lang.String | cdk.support/lookup-entry | :deployment-group-name |
The build-cfn-code-deploy-lambda-alias-update-builder function updates a CfnCodeDeployLambdaAliasUpdate$Builder instance using the provided configuration. The function takes the CfnCodeDeployLambdaAliasUpdate$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 | |---|---|---|---| | `afterAllowTrafficHook` | java.lang.String | [[cdk.support/lookup-entry]] | `:after-allow-traffic-hook` | | `applicationName` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-name` | | `beforeAllowTrafficHook` | java.lang.String | [[cdk.support/lookup-entry]] | `:before-allow-traffic-hook` | | `deploymentGroupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-group-name` |
(build-cfn-condition-builder builder id config)
The build-cfn-condition-builder function updates a CfnCondition$Builder instance using the provided configuration. The function takes the CfnCondition$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 |
---|---|---|---|
expression | software.amazon.awscdk.ICfnConditionExpression | cdk.support/lookup-entry | :expression |
The build-cfn-condition-builder function updates a CfnCondition$Builder instance using the provided configuration. The function takes the CfnCondition$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 | |---|---|---|---| | `expression` | software.amazon.awscdk.ICfnConditionExpression | [[cdk.support/lookup-entry]] | `:expression` |
(build-cfn-condition-props-builder builder id config)
The build-cfn-condition-props-builder function updates a CfnConditionProps$Builder instance using the provided configuration. The function takes the CfnConditionProps$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 |
---|---|---|---|
expression | software.amazon.awscdk.ICfnConditionExpression | cdk.support/lookup-entry | :expression |
The build-cfn-condition-props-builder function updates a CfnConditionProps$Builder instance using the provided configuration. The function takes the CfnConditionProps$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 | |---|---|---|---| | `expression` | software.amazon.awscdk.ICfnConditionExpression | [[cdk.support/lookup-entry]] | `:expression` |
(build-cfn-creation-policy-builder builder id config)
The build-cfn-creation-policy-builder function updates a CfnCreationPolicy$Builder instance using the provided configuration. The function takes the CfnCreationPolicy$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 |
---|---|---|---|
autoScalingCreationPolicy | software.amazon.awscdk.CfnResourceAutoScalingCreationPolicy | cdk.support/lookup-entry | :auto-scaling-creation-policy |
resourceSignal | software.amazon.awscdk.CfnResourceSignal | cdk.support/lookup-entry | :resource-signal |
startFleet | java.lang.Boolean | cdk.support/lookup-entry | :start-fleet |
The build-cfn-creation-policy-builder function updates a CfnCreationPolicy$Builder instance using the provided configuration. The function takes the CfnCreationPolicy$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 | |---|---|---|---| | `autoScalingCreationPolicy` | software.amazon.awscdk.CfnResourceAutoScalingCreationPolicy | [[cdk.support/lookup-entry]] | `:auto-scaling-creation-policy` | | `resourceSignal` | software.amazon.awscdk.CfnResourceSignal | [[cdk.support/lookup-entry]] | `:resource-signal` | | `startFleet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:start-fleet` |
(build-cfn-custom-resource-builder builder id config)
The build-cfn-custom-resource-builder function updates a CfnCustomResource$Builder instance using the provided configuration. The function takes the CfnCustomResource$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 |
---|---|---|---|
serviceToken | java.lang.String | cdk.support/lookup-entry | :service-token |
The build-cfn-custom-resource-builder function updates a CfnCustomResource$Builder instance using the provided configuration. The function takes the CfnCustomResource$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 | |---|---|---|---| | `serviceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-token` |
(build-cfn-custom-resource-props-builder builder id config)
The build-cfn-custom-resource-props-builder function updates a CfnCustomResourceProps$Builder instance using the provided configuration. The function takes the CfnCustomResourceProps$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 |
---|---|---|---|
serviceToken | java.lang.String | cdk.support/lookup-entry | :service-token |
The build-cfn-custom-resource-props-builder function updates a CfnCustomResourceProps$Builder instance using the provided configuration. The function takes the CfnCustomResourceProps$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 | |---|---|---|---| | `serviceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-token` |
(build-cfn-dynamic-reference-props-builder builder id config)
The build-cfn-dynamic-reference-props-builder function updates a CfnDynamicReferenceProps$Builder instance using the provided configuration. The function takes the CfnDynamicReferenceProps$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 |
---|---|---|---|
referenceKey | java.lang.String | cdk.support/lookup-entry | :reference-key |
service | software.amazon.awscdk.CfnDynamicReferenceService | cdk.api/cfn-dynamic-reference-service | :service |
The build-cfn-dynamic-reference-props-builder function updates a CfnDynamicReferenceProps$Builder instance using the provided configuration. The function takes the CfnDynamicReferenceProps$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 | |---|---|---|---| | `referenceKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:reference-key` | | `service` | software.amazon.awscdk.CfnDynamicReferenceService | [[cdk.api/cfn-dynamic-reference-service]] | `:service` |
(build-cfn-hook-builder builder id config)
The build-cfn-hook-builder function updates a CfnHook$Builder instance using the provided configuration. The function takes the CfnHook$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 |
---|---|---|---|
properties | java.util.Map | cdk.support/lookup-entry | :properties |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-hook-builder function updates a CfnHook$Builder instance using the provided configuration. The function takes the CfnHook$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 | |---|---|---|---| | `properties` | java.util.Map | [[cdk.support/lookup-entry]] | `:properties` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-hook-default-version-builder builder id config)
The build-cfn-hook-default-version-builder function updates a CfnHookDefaultVersion$Builder instance using the provided configuration. The function takes the CfnHookDefaultVersion$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 |
---|---|---|---|
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
typeVersionArn | java.lang.String | cdk.support/lookup-entry | :type-version-arn |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
The build-cfn-hook-default-version-builder function updates a CfnHookDefaultVersion$Builder instance using the provided configuration. The function takes the CfnHookDefaultVersion$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 | |---|---|---|---| | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` | | `typeVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-version-arn` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` |
(build-cfn-hook-default-version-props-builder builder id config)
The build-cfn-hook-default-version-props-builder function updates a CfnHookDefaultVersionProps$Builder instance using the provided configuration. The function takes the CfnHookDefaultVersionProps$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 |
---|---|---|---|
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
typeVersionArn | java.lang.String | cdk.support/lookup-entry | :type-version-arn |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
The build-cfn-hook-default-version-props-builder function updates a CfnHookDefaultVersionProps$Builder instance using the provided configuration. The function takes the CfnHookDefaultVersionProps$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 | |---|---|---|---| | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` | | `typeVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-version-arn` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` |
(build-cfn-hook-props-builder builder id config)
The build-cfn-hook-props-builder function updates a CfnHookProps$Builder instance using the provided configuration. The function takes the CfnHookProps$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 |
---|---|---|---|
properties | java.util.Map | cdk.support/lookup-entry | :properties |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-hook-props-builder function updates a CfnHookProps$Builder instance using the provided configuration. The function takes the CfnHookProps$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 | |---|---|---|---| | `properties` | java.util.Map | [[cdk.support/lookup-entry]] | `:properties` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-hook-type-config-builder builder id config)
The build-cfn-hook-type-config-builder function updates a CfnHookTypeConfig$Builder instance using the provided configuration. The function takes the CfnHookTypeConfig$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 |
---|---|---|---|
configuration | java.lang.String | cdk.support/lookup-entry | :configuration |
configurationAlias | java.lang.String | cdk.support/lookup-entry | :configuration-alias |
typeArn | java.lang.String | cdk.support/lookup-entry | :type-arn |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-hook-type-config-builder function updates a CfnHookTypeConfig$Builder instance using the provided configuration. The function takes the CfnHookTypeConfig$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 | |---|---|---|---| | `configuration` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration` | | `configurationAlias` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-alias` | | `typeArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-arn` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-hook-type-config-props-builder builder id config)
The build-cfn-hook-type-config-props-builder function updates a CfnHookTypeConfigProps$Builder instance using the provided configuration. The function takes the CfnHookTypeConfigProps$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 |
---|---|---|---|
configuration | java.lang.String | cdk.support/lookup-entry | :configuration |
configurationAlias | java.lang.String | cdk.support/lookup-entry | :configuration-alias |
typeArn | java.lang.String | cdk.support/lookup-entry | :type-arn |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-hook-type-config-props-builder function updates a CfnHookTypeConfigProps$Builder instance using the provided configuration. The function takes the CfnHookTypeConfigProps$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 | |---|---|---|---| | `configuration` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration` | | `configurationAlias` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-alias` | | `typeArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-arn` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-hook-version-builder builder id config)
The build-cfn-hook-version-builder function updates a CfnHookVersion$Builder instance using the provided configuration. The function takes the CfnHookVersion$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 |
---|---|---|---|
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
loggingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :logging-config |
schemaHandlerPackage | java.lang.String | cdk.support/lookup-entry | :schema-handler-package |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-hook-version-builder function updates a CfnHookVersion$Builder instance using the provided configuration. The function takes the CfnHookVersion$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 | |---|---|---|---| | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `loggingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:logging-config` | | `schemaHandlerPackage` | java.lang.String | [[cdk.support/lookup-entry]] | `:schema-handler-package` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-hook-version-logging-config-property-builder builder id config)
The build-cfn-hook-version-logging-config-property-builder function updates a CfnHookVersion$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnHookVersion$LoggingConfigProperty$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 |
---|---|---|---|
logGroupName | java.lang.String | cdk.support/lookup-entry | :log-group-name |
logRoleArn | java.lang.String | cdk.support/lookup-entry | :log-role-arn |
The build-cfn-hook-version-logging-config-property-builder function updates a CfnHookVersion$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnHookVersion$LoggingConfigProperty$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 | |---|---|---|---| | `logGroupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group-name` | | `logRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-role-arn` |
(build-cfn-hook-version-props-builder builder id config)
The build-cfn-hook-version-props-builder function updates a CfnHookVersionProps$Builder instance using the provided configuration. The function takes the CfnHookVersionProps$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 |
---|---|---|---|
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
loggingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :logging-config |
schemaHandlerPackage | java.lang.String | cdk.support/lookup-entry | :schema-handler-package |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-hook-version-props-builder function updates a CfnHookVersionProps$Builder instance using the provided configuration. The function takes the CfnHookVersionProps$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 | |---|---|---|---| | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `loggingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:logging-config` | | `schemaHandlerPackage` | java.lang.String | [[cdk.support/lookup-entry]] | `:schema-handler-package` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-json-builder builder id config)
The build-cfn-json-builder function updates a CfnJson$Builder instance using the provided configuration. The function takes the CfnJson$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 |
---|---|---|---|
value | java.lang.Object | cdk.support/lookup-entry | :value |
The build-cfn-json-builder function updates a CfnJson$Builder instance using the provided configuration. The function takes the CfnJson$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 | |---|---|---|---| | `value` | java.lang.Object | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-json-props-builder builder id config)
The build-cfn-json-props-builder function updates a CfnJsonProps$Builder instance using the provided configuration. The function takes the CfnJsonProps$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 |
---|---|---|---|
value | java.lang.Object | cdk.support/lookup-entry | :value |
The build-cfn-json-props-builder function updates a CfnJsonProps$Builder instance using the provided configuration. The function takes the CfnJsonProps$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 | |---|---|---|---| | `value` | java.lang.Object | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-macro-builder builder id config)
The build-cfn-macro-builder function updates a CfnMacro$Builder instance using the provided configuration. The function takes the CfnMacro$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 |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
logGroupName | java.lang.String | cdk.support/lookup-entry | :log-group-name |
logRoleArn | java.lang.String | cdk.support/lookup-entry | :log-role-arn |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-macro-builder function updates a CfnMacro$Builder instance using the provided configuration. The function takes the CfnMacro$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` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `logGroupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group-name` | | `logRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-role-arn` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-macro-props-builder builder id config)
The build-cfn-macro-props-builder function updates a CfnMacroProps$Builder instance using the provided configuration. The function takes the CfnMacroProps$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 |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
logGroupName | java.lang.String | cdk.support/lookup-entry | :log-group-name |
logRoleArn | java.lang.String | cdk.support/lookup-entry | :log-role-arn |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-macro-props-builder function updates a CfnMacroProps$Builder instance using the provided configuration. The function takes the CfnMacroProps$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` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `logGroupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group-name` | | `logRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-role-arn` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-mapping-builder builder id config)
The build-cfn-mapping-builder function updates a CfnMapping$Builder instance using the provided configuration. The function takes the CfnMapping$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 |
---|---|---|---|
lazy | java.lang.Boolean | cdk.support/lookup-entry | :lazy |
mapping | java.util.Map | cdk.support/lookup-entry | :mapping |
The build-cfn-mapping-builder function updates a CfnMapping$Builder instance using the provided configuration. The function takes the CfnMapping$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 | |---|---|---|---| | `lazy` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:lazy` | | `mapping` | java.util.Map | [[cdk.support/lookup-entry]] | `:mapping` |
(build-cfn-mapping-props-builder builder id config)
The build-cfn-mapping-props-builder function updates a CfnMappingProps$Builder instance using the provided configuration. The function takes the CfnMappingProps$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 |
---|---|---|---|
lazy | java.lang.Boolean | cdk.support/lookup-entry | :lazy |
mapping | java.util.Map | cdk.support/lookup-entry | :mapping |
The build-cfn-mapping-props-builder function updates a CfnMappingProps$Builder instance using the provided configuration. The function takes the CfnMappingProps$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 | |---|---|---|---| | `lazy` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:lazy` | | `mapping` | java.util.Map | [[cdk.support/lookup-entry]] | `:mapping` |
(build-cfn-module-default-version-builder builder id config)
The build-cfn-module-default-version-builder function updates a CfnModuleDefaultVersion$Builder instance using the provided configuration. The function takes the CfnModuleDefaultVersion$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 |
---|---|---|---|
arn | java.lang.String | cdk.support/lookup-entry | :arn |
moduleName | java.lang.String | cdk.support/lookup-entry | :module-name |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
The build-cfn-module-default-version-builder function updates a CfnModuleDefaultVersion$Builder instance using the provided configuration. The function takes the CfnModuleDefaultVersion$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 | |---|---|---|---| | `arn` | java.lang.String | [[cdk.support/lookup-entry]] | `:arn` | | `moduleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:module-name` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` |
(build-cfn-module-default-version-props-builder builder id config)
The build-cfn-module-default-version-props-builder function updates a CfnModuleDefaultVersionProps$Builder instance using the provided configuration. The function takes the CfnModuleDefaultVersionProps$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 |
---|---|---|---|
arn | java.lang.String | cdk.support/lookup-entry | :arn |
moduleName | java.lang.String | cdk.support/lookup-entry | :module-name |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
The build-cfn-module-default-version-props-builder function updates a CfnModuleDefaultVersionProps$Builder instance using the provided configuration. The function takes the CfnModuleDefaultVersionProps$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 | |---|---|---|---| | `arn` | java.lang.String | [[cdk.support/lookup-entry]] | `:arn` | | `moduleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:module-name` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` |
(build-cfn-module-version-builder builder id config)
The build-cfn-module-version-builder function updates a CfnModuleVersion$Builder instance using the provided configuration. The function takes the CfnModuleVersion$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 |
---|---|---|---|
moduleName | java.lang.String | cdk.support/lookup-entry | :module-name |
modulePackage | java.lang.String | cdk.support/lookup-entry | :module-package |
The build-cfn-module-version-builder function updates a CfnModuleVersion$Builder instance using the provided configuration. The function takes the CfnModuleVersion$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 | |---|---|---|---| | `moduleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:module-name` | | `modulePackage` | java.lang.String | [[cdk.support/lookup-entry]] | `:module-package` |
(build-cfn-module-version-props-builder builder id config)
The build-cfn-module-version-props-builder function updates a CfnModuleVersionProps$Builder instance using the provided configuration. The function takes the CfnModuleVersionProps$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 |
---|---|---|---|
moduleName | java.lang.String | cdk.support/lookup-entry | :module-name |
modulePackage | java.lang.String | cdk.support/lookup-entry | :module-package |
The build-cfn-module-version-props-builder function updates a CfnModuleVersionProps$Builder instance using the provided configuration. The function takes the CfnModuleVersionProps$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 | |---|---|---|---| | `moduleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:module-name` | | `modulePackage` | java.lang.String | [[cdk.support/lookup-entry]] | `:module-package` |
(build-cfn-output-builder builder id config)
The build-cfn-output-builder function updates a CfnOutput$Builder instance using the provided configuration. The function takes the CfnOutput$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 |
---|---|---|---|
condition | software.amazon.awscdk.CfnCondition | cdk.support/lookup-entry | :condition |
description | java.lang.String | cdk.support/lookup-entry | :description |
exportName | java.lang.String | cdk.support/lookup-entry | :export-name |
key | java.lang.String | cdk.support/lookup-entry | :key |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-output-builder function updates a CfnOutput$Builder instance using the provided configuration. The function takes the CfnOutput$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 | |---|---|---|---| | `condition` | software.amazon.awscdk.CfnCondition | [[cdk.support/lookup-entry]] | `:condition` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `exportName` | java.lang.String | [[cdk.support/lookup-entry]] | `:export-name` | | `key` | java.lang.String | [[cdk.support/lookup-entry]] | `:key` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-output-props-builder builder id config)
The build-cfn-output-props-builder function updates a CfnOutputProps$Builder instance using the provided configuration. The function takes the CfnOutputProps$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 |
---|---|---|---|
condition | software.amazon.awscdk.CfnCondition | cdk.support/lookup-entry | :condition |
description | java.lang.String | cdk.support/lookup-entry | :description |
exportName | java.lang.String | cdk.support/lookup-entry | :export-name |
key | java.lang.String | cdk.support/lookup-entry | :key |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-output-props-builder function updates a CfnOutputProps$Builder instance using the provided configuration. The function takes the CfnOutputProps$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 | |---|---|---|---| | `condition` | software.amazon.awscdk.CfnCondition | [[cdk.support/lookup-entry]] | `:condition` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `exportName` | java.lang.String | [[cdk.support/lookup-entry]] | `:export-name` | | `key` | java.lang.String | [[cdk.support/lookup-entry]] | `:key` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-parameter-builder builder id config)
The build-cfn-parameter-builder function updates a CfnParameter$Builder instance using the provided configuration. The function takes the CfnParameter$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 |
---|---|---|---|
allowedPattern | java.lang.String | cdk.support/lookup-entry | :allowed-pattern |
allowedValues | java.util.List | cdk.support/lookup-entry | :allowed-values |
constraintDescription | java.lang.String | cdk.support/lookup-entry | :constraint-description |
defaultValue | java.lang.Object | cdk.support/lookup-entry | :default-value |
description | java.lang.String | cdk.support/lookup-entry | :description |
maxLength | java.lang.Number | cdk.support/lookup-entry | :max-length |
maxValue | java.lang.Number | cdk.support/lookup-entry | :max-value |
minLength | java.lang.Number | cdk.support/lookup-entry | :min-length |
minValue | java.lang.Number | cdk.support/lookup-entry | :min-value |
noEcho | java.lang.Boolean | cdk.support/lookup-entry | :no-echo |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-parameter-builder function updates a CfnParameter$Builder instance using the provided configuration. The function takes the CfnParameter$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 | |---|---|---|---| | `allowedPattern` | java.lang.String | [[cdk.support/lookup-entry]] | `:allowed-pattern` | | `allowedValues` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-values` | | `constraintDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:constraint-description` | | `defaultValue` | java.lang.Object | [[cdk.support/lookup-entry]] | `:default-value` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `maxLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-length` | | `maxValue` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-value` | | `minLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-length` | | `minValue` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-value` | | `noEcho` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:no-echo` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-parameter-props-builder builder id config)
The build-cfn-parameter-props-builder function updates a CfnParameterProps$Builder instance using the provided configuration. The function takes the CfnParameterProps$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 |
---|---|---|---|
allowedPattern | java.lang.String | cdk.support/lookup-entry | :allowed-pattern |
allowedValues | java.util.List | cdk.support/lookup-entry | :allowed-values |
constraintDescription | java.lang.String | cdk.support/lookup-entry | :constraint-description |
defaultValue | java.lang.Object | cdk.support/lookup-entry | :default-value |
description | java.lang.String | cdk.support/lookup-entry | :description |
maxLength | java.lang.Number | cdk.support/lookup-entry | :max-length |
maxValue | java.lang.Number | cdk.support/lookup-entry | :max-value |
minLength | java.lang.Number | cdk.support/lookup-entry | :min-length |
minValue | java.lang.Number | cdk.support/lookup-entry | :min-value |
noEcho | java.lang.Boolean | cdk.support/lookup-entry | :no-echo |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-parameter-props-builder function updates a CfnParameterProps$Builder instance using the provided configuration. The function takes the CfnParameterProps$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 | |---|---|---|---| | `allowedPattern` | java.lang.String | [[cdk.support/lookup-entry]] | `:allowed-pattern` | | `allowedValues` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-values` | | `constraintDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:constraint-description` | | `defaultValue` | java.lang.Object | [[cdk.support/lookup-entry]] | `:default-value` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `maxLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-length` | | `maxValue` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-value` | | `minLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-length` | | `minValue` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-value` | | `noEcho` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:no-echo` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-public-type-version-builder builder id config)
The build-cfn-public-type-version-builder function updates a CfnPublicTypeVersion$Builder instance using the provided configuration. The function takes the CfnPublicTypeVersion$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 |
---|---|---|---|
arn | java.lang.String | cdk.support/lookup-entry | :arn |
logDeliveryBucket | java.lang.String | cdk.support/lookup-entry | :log-delivery-bucket |
publicVersionNumber | java.lang.String | cdk.support/lookup-entry | :public-version-number |
type | java.lang.String | cdk.support/lookup-entry | :type |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-public-type-version-builder function updates a CfnPublicTypeVersion$Builder instance using the provided configuration. The function takes the CfnPublicTypeVersion$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 | |---|---|---|---| | `arn` | java.lang.String | [[cdk.support/lookup-entry]] | `:arn` | | `logDeliveryBucket` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-delivery-bucket` | | `publicVersionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:public-version-number` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-public-type-version-props-builder builder id config)
The build-cfn-public-type-version-props-builder function updates a CfnPublicTypeVersionProps$Builder instance using the provided configuration. The function takes the CfnPublicTypeVersionProps$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 |
---|---|---|---|
arn | java.lang.String | cdk.support/lookup-entry | :arn |
logDeliveryBucket | java.lang.String | cdk.support/lookup-entry | :log-delivery-bucket |
publicVersionNumber | java.lang.String | cdk.support/lookup-entry | :public-version-number |
type | java.lang.String | cdk.support/lookup-entry | :type |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-public-type-version-props-builder function updates a CfnPublicTypeVersionProps$Builder instance using the provided configuration. The function takes the CfnPublicTypeVersionProps$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 | |---|---|---|---| | `arn` | java.lang.String | [[cdk.support/lookup-entry]] | `:arn` | | `logDeliveryBucket` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-delivery-bucket` | | `publicVersionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:public-version-number` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-publisher-builder builder id config)
The build-cfn-publisher-builder function updates a CfnPublisher$Builder instance using the provided configuration. The function takes the CfnPublisher$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 |
---|---|---|---|
acceptTermsAndConditions | java.lang.Boolean | cdk.support/lookup-entry | :accept-terms-and-conditions |
connectionArn | java.lang.String | cdk.support/lookup-entry | :connection-arn |
The build-cfn-publisher-builder function updates a CfnPublisher$Builder instance using the provided configuration. The function takes the CfnPublisher$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 | |---|---|---|---| | `acceptTermsAndConditions` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:accept-terms-and-conditions` | | `connectionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:connection-arn` |
(build-cfn-publisher-props-builder builder id config)
The build-cfn-publisher-props-builder function updates a CfnPublisherProps$Builder instance using the provided configuration. The function takes the CfnPublisherProps$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 |
---|---|---|---|
acceptTermsAndConditions | java.lang.Boolean | cdk.support/lookup-entry | :accept-terms-and-conditions |
connectionArn | java.lang.String | cdk.support/lookup-entry | :connection-arn |
The build-cfn-publisher-props-builder function updates a CfnPublisherProps$Builder instance using the provided configuration. The function takes the CfnPublisherProps$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 | |---|---|---|---| | `acceptTermsAndConditions` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:accept-terms-and-conditions` | | `connectionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:connection-arn` |
(build-cfn-resource-auto-scaling-creation-policy-builder builder id config)
The build-cfn-resource-auto-scaling-creation-policy-builder function updates a CfnResourceAutoScalingCreationPolicy$Builder instance using the provided configuration. The function takes the CfnResourceAutoScalingCreationPolicy$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 |
---|---|---|---|
minSuccessfulInstancesPercent | java.lang.Number | cdk.support/lookup-entry | :min-successful-instances-percent |
The build-cfn-resource-auto-scaling-creation-policy-builder function updates a CfnResourceAutoScalingCreationPolicy$Builder instance using the provided configuration. The function takes the CfnResourceAutoScalingCreationPolicy$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 | |---|---|---|---| | `minSuccessfulInstancesPercent` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-successful-instances-percent` |
(build-cfn-resource-builder builder id config)
The build-cfn-resource-builder function updates a CfnResource$Builder instance using the provided configuration. The function takes the CfnResource$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 |
---|---|---|---|
properties | java.util.Map | cdk.support/lookup-entry | :properties |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-resource-builder function updates a CfnResource$Builder instance using the provided configuration. The function takes the CfnResource$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 | |---|---|---|---| | `properties` | java.util.Map | [[cdk.support/lookup-entry]] | `:properties` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-resource-default-version-builder builder id config)
The build-cfn-resource-default-version-builder function updates a CfnResourceDefaultVersion$Builder instance using the provided configuration. The function takes the CfnResourceDefaultVersion$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 |
---|---|---|---|
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
typeVersionArn | java.lang.String | cdk.support/lookup-entry | :type-version-arn |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
The build-cfn-resource-default-version-builder function updates a CfnResourceDefaultVersion$Builder instance using the provided configuration. The function takes the CfnResourceDefaultVersion$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 | |---|---|---|---| | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` | | `typeVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-version-arn` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` |
(build-cfn-resource-default-version-props-builder builder id config)
The build-cfn-resource-default-version-props-builder function updates a CfnResourceDefaultVersionProps$Builder instance using the provided configuration. The function takes the CfnResourceDefaultVersionProps$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 |
---|---|---|---|
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
typeVersionArn | java.lang.String | cdk.support/lookup-entry | :type-version-arn |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
The build-cfn-resource-default-version-props-builder function updates a CfnResourceDefaultVersionProps$Builder instance using the provided configuration. The function takes the CfnResourceDefaultVersionProps$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 | |---|---|---|---| | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` | | `typeVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-version-arn` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` |
(build-cfn-resource-props-builder builder id config)
The build-cfn-resource-props-builder function updates a CfnResourceProps$Builder instance using the provided configuration. The function takes the CfnResourceProps$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 |
---|---|---|---|
properties | java.util.Map | cdk.support/lookup-entry | :properties |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-resource-props-builder function updates a CfnResourceProps$Builder instance using the provided configuration. The function takes the CfnResourceProps$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 | |---|---|---|---| | `properties` | java.util.Map | [[cdk.support/lookup-entry]] | `:properties` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-resource-signal-builder builder id config)
The build-cfn-resource-signal-builder function updates a CfnResourceSignal$Builder instance using the provided configuration. The function takes the CfnResourceSignal$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 |
---|---|---|---|
count | java.lang.Number | cdk.support/lookup-entry | :count |
timeout | java.lang.String | cdk.support/lookup-entry | :timeout |
The build-cfn-resource-signal-builder function updates a CfnResourceSignal$Builder instance using the provided configuration. The function takes the CfnResourceSignal$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 | |---|---|---|---| | `count` | java.lang.Number | [[cdk.support/lookup-entry]] | `:count` | | `timeout` | java.lang.String | [[cdk.support/lookup-entry]] | `:timeout` |
(build-cfn-resource-version-builder builder id config)
The build-cfn-resource-version-builder function updates a CfnResourceVersion$Builder instance using the provided configuration. The function takes the CfnResourceVersion$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 |
---|---|---|---|
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
loggingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :logging-config |
schemaHandlerPackage | java.lang.String | cdk.support/lookup-entry | :schema-handler-package |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-resource-version-builder function updates a CfnResourceVersion$Builder instance using the provided configuration. The function takes the CfnResourceVersion$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 | |---|---|---|---| | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `loggingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:logging-config` | | `schemaHandlerPackage` | java.lang.String | [[cdk.support/lookup-entry]] | `:schema-handler-package` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-resource-version-logging-config-property-builder builder id config)
The build-cfn-resource-version-logging-config-property-builder function updates a CfnResourceVersion$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnResourceVersion$LoggingConfigProperty$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 |
---|---|---|---|
logGroupName | java.lang.String | cdk.support/lookup-entry | :log-group-name |
logRoleArn | java.lang.String | cdk.support/lookup-entry | :log-role-arn |
The build-cfn-resource-version-logging-config-property-builder function updates a CfnResourceVersion$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnResourceVersion$LoggingConfigProperty$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 | |---|---|---|---| | `logGroupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group-name` | | `logRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-role-arn` |
(build-cfn-resource-version-props-builder builder id config)
The build-cfn-resource-version-props-builder function updates a CfnResourceVersionProps$Builder instance using the provided configuration. The function takes the CfnResourceVersionProps$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 |
---|---|---|---|
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
loggingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :logging-config |
schemaHandlerPackage | java.lang.String | cdk.support/lookup-entry | :schema-handler-package |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
The build-cfn-resource-version-props-builder function updates a CfnResourceVersionProps$Builder instance using the provided configuration. The function takes the CfnResourceVersionProps$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 | |---|---|---|---| | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `loggingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:logging-config` | | `schemaHandlerPackage` | java.lang.String | [[cdk.support/lookup-entry]] | `:schema-handler-package` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` |
(build-cfn-rule-assertion-builder builder id config)
The build-cfn-rule-assertion-builder function updates a CfnRuleAssertion$Builder instance using the provided configuration. The function takes the CfnRuleAssertion$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 |
---|---|---|---|
assertDescription | java.lang.String | cdk.support/lookup-entry | :assert-description |
assertValue | software.amazon.awscdk.ICfnConditionExpression | cdk.support/lookup-entry | :assert-value |
The build-cfn-rule-assertion-builder function updates a CfnRuleAssertion$Builder instance using the provided configuration. The function takes the CfnRuleAssertion$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 | |---|---|---|---| | `assertDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:assert-description` | | `assertValue` | software.amazon.awscdk.ICfnConditionExpression | [[cdk.support/lookup-entry]] | `:assert-value` |
(build-cfn-rule-builder builder id config)
The build-cfn-rule-builder function updates a CfnRule$Builder instance using the provided configuration. The function takes the CfnRule$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 |
---|---|---|---|
assertions | java.util.List | cdk.support/lookup-entry | :assertions |
ruleCondition | software.amazon.awscdk.ICfnConditionExpression | cdk.support/lookup-entry | :rule-condition |
The build-cfn-rule-builder function updates a CfnRule$Builder instance using the provided configuration. The function takes the CfnRule$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 | |---|---|---|---| | `assertions` | java.util.List | [[cdk.support/lookup-entry]] | `:assertions` | | `ruleCondition` | software.amazon.awscdk.ICfnConditionExpression | [[cdk.support/lookup-entry]] | `:rule-condition` |
(build-cfn-rule-props-builder builder id config)
The build-cfn-rule-props-builder function updates a CfnRuleProps$Builder instance using the provided configuration. The function takes the CfnRuleProps$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 |
---|---|---|---|
assertions | java.util.List | cdk.support/lookup-entry | :assertions |
ruleCondition | software.amazon.awscdk.ICfnConditionExpression | cdk.support/lookup-entry | :rule-condition |
The build-cfn-rule-props-builder function updates a CfnRuleProps$Builder instance using the provided configuration. The function takes the CfnRuleProps$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 | |---|---|---|---| | `assertions` | java.util.List | [[cdk.support/lookup-entry]] | `:assertions` | | `ruleCondition` | software.amazon.awscdk.ICfnConditionExpression | [[cdk.support/lookup-entry]] | `:rule-condition` |
(build-cfn-stack-builder builder id config)
The build-cfn-stack-builder function updates a CfnStack$Builder instance using the provided configuration. The function takes the CfnStack$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 |
---|---|---|---|
notificationArns | java.util.List | cdk.support/lookup-entry | :notification-arns |
parameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :parameters |
tags | java.util.List | cdk.support/lookup-entry | :tags |
templateUrl | java.lang.String | cdk.support/lookup-entry | :template-url |
timeoutInMinutes | java.lang.Number | cdk.support/lookup-entry | :timeout-in-minutes |
The build-cfn-stack-builder function updates a CfnStack$Builder instance using the provided configuration. The function takes the CfnStack$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 | |---|---|---|---| | `notificationArns` | java.util.List | [[cdk.support/lookup-entry]] | `:notification-arns` | | `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `templateUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-url` | | `timeoutInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:timeout-in-minutes` |
(build-cfn-stack-output-property-builder builder id config)
The build-cfn-stack-output-property-builder function updates a CfnStack$OutputProperty$Builder instance using the provided configuration. The function takes the CfnStack$OutputProperty$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 |
exportName | java.lang.String | cdk.support/lookup-entry | :export-name |
outputKey | java.lang.String | cdk.support/lookup-entry | :output-key |
outputValue | java.lang.String | cdk.support/lookup-entry | :output-value |
The build-cfn-stack-output-property-builder function updates a CfnStack$OutputProperty$Builder instance using the provided configuration. The function takes the CfnStack$OutputProperty$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` | | `exportName` | java.lang.String | [[cdk.support/lookup-entry]] | `:export-name` | | `outputKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:output-key` | | `outputValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:output-value` |
(build-cfn-stack-props-builder builder id config)
The build-cfn-stack-props-builder function updates a CfnStackProps$Builder instance using the provided configuration. The function takes the CfnStackProps$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 |
---|---|---|---|
notificationArns | java.util.List | cdk.support/lookup-entry | :notification-arns |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
tags | java.util.List | cdk.support/lookup-entry | :tags |
templateUrl | java.lang.String | cdk.support/lookup-entry | :template-url |
timeoutInMinutes | java.lang.Number | cdk.support/lookup-entry | :timeout-in-minutes |
The build-cfn-stack-props-builder function updates a CfnStackProps$Builder instance using the provided configuration. The function takes the CfnStackProps$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 | |---|---|---|---| | `notificationArns` | java.util.List | [[cdk.support/lookup-entry]] | `:notification-arns` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `templateUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-url` | | `timeoutInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:timeout-in-minutes` |
(build-cfn-stack-set-auto-deployment-property-builder builder id config)
The build-cfn-stack-set-auto-deployment-property-builder function updates a CfnStackSet$AutoDeploymentProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$AutoDeploymentProperty$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 |
---|---|---|---|
enabled | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :enabled |
retainStacksOnAccountRemoval | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :retain-stacks-on-account-removal |
The build-cfn-stack-set-auto-deployment-property-builder function updates a CfnStackSet$AutoDeploymentProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$AutoDeploymentProperty$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 | |---|---|---|---| | `enabled` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:enabled` | | `retainStacksOnAccountRemoval` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:retain-stacks-on-account-removal` |
(build-cfn-stack-set-builder builder id config)
The build-cfn-stack-set-builder function updates a CfnStackSet$Builder instance using the provided configuration. The function takes the CfnStackSet$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 |
---|---|---|---|
administrationRoleArn | java.lang.String | cdk.support/lookup-entry | :administration-role-arn |
autoDeployment | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :auto-deployment |
callAs | java.lang.String | cdk.support/lookup-entry | :call-as |
capabilities | java.util.List | cdk.support/lookup-entry | :capabilities |
description | java.lang.String | cdk.support/lookup-entry | :description |
executionRoleName | java.lang.String | cdk.support/lookup-entry | :execution-role-name |
managedExecution | java.lang.Object | cdk.support/lookup-entry | :managed-execution |
operationPreferences | software.amazon.awscdk.CfnStackSet$OperationPreferencesProperty | cdk.support/lookup-entry | :operation-preferences |
parameters | java.util.List | cdk.support/lookup-entry | :parameters |
permissionModel | java.lang.String | cdk.support/lookup-entry | :permission-model |
stackInstancesGroup | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :stack-instances-group |
stackSetName | java.lang.String | cdk.support/lookup-entry | :stack-set-name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
templateBody | java.lang.String | cdk.support/lookup-entry | :template-body |
templateUrl | java.lang.String | cdk.support/lookup-entry | :template-url |
The build-cfn-stack-set-builder function updates a CfnStackSet$Builder instance using the provided configuration. The function takes the CfnStackSet$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 | |---|---|---|---| | `administrationRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:administration-role-arn` | | `autoDeployment` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:auto-deployment` | | `callAs` | java.lang.String | [[cdk.support/lookup-entry]] | `:call-as` | | `capabilities` | java.util.List | [[cdk.support/lookup-entry]] | `:capabilities` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `executionRoleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-name` | | `managedExecution` | java.lang.Object | [[cdk.support/lookup-entry]] | `:managed-execution` | | `operationPreferences` | software.amazon.awscdk.CfnStackSet$OperationPreferencesProperty | [[cdk.support/lookup-entry]] | `:operation-preferences` | | `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` | | `permissionModel` | java.lang.String | [[cdk.support/lookup-entry]] | `:permission-model` | | `stackInstancesGroup` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:stack-instances-group` | | `stackSetName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-set-name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `templateBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-body` | | `templateUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-url` |
(build-cfn-stack-set-deployment-targets-property-builder builder id config)
The build-cfn-stack-set-deployment-targets-property-builder function updates a CfnStackSet$DeploymentTargetsProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$DeploymentTargetsProperty$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 |
---|---|---|---|
accountFilterType | java.lang.String | cdk.support/lookup-entry | :account-filter-type |
accounts | java.util.List | cdk.support/lookup-entry | :accounts |
accountsUrl | java.lang.String | cdk.support/lookup-entry | :accounts-url |
organizationalUnitIds | java.util.List | cdk.support/lookup-entry | :organizational-unit-ids |
The build-cfn-stack-set-deployment-targets-property-builder function updates a CfnStackSet$DeploymentTargetsProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$DeploymentTargetsProperty$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 | |---|---|---|---| | `accountFilterType` | java.lang.String | [[cdk.support/lookup-entry]] | `:account-filter-type` | | `accounts` | java.util.List | [[cdk.support/lookup-entry]] | `:accounts` | | `accountsUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:accounts-url` | | `organizationalUnitIds` | java.util.List | [[cdk.support/lookup-entry]] | `:organizational-unit-ids` |
(build-cfn-stack-set-managed-execution-property-builder builder id config)
The build-cfn-stack-set-managed-execution-property-builder function updates a CfnStackSet$ManagedExecutionProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$ManagedExecutionProperty$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 |
---|---|---|---|
active | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :active |
The build-cfn-stack-set-managed-execution-property-builder function updates a CfnStackSet$ManagedExecutionProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$ManagedExecutionProperty$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 | |---|---|---|---| | `active` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:active` |
(build-cfn-stack-set-operation-preferences-property-builder builder id config)
The build-cfn-stack-set-operation-preferences-property-builder function updates a CfnStackSet$OperationPreferencesProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$OperationPreferencesProperty$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 |
---|---|---|---|
failureToleranceCount | java.lang.Number | cdk.support/lookup-entry | :failure-tolerance-count |
failureTolerancePercentage | java.lang.Number | cdk.support/lookup-entry | :failure-tolerance-percentage |
maxConcurrentCount | java.lang.Number | cdk.support/lookup-entry | :max-concurrent-count |
maxConcurrentPercentage | java.lang.Number | cdk.support/lookup-entry | :max-concurrent-percentage |
regionConcurrencyType | java.lang.String | cdk.support/lookup-entry | :region-concurrency-type |
regionOrder | java.util.List | cdk.support/lookup-entry | :region-order |
The build-cfn-stack-set-operation-preferences-property-builder function updates a CfnStackSet$OperationPreferencesProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$OperationPreferencesProperty$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 | |---|---|---|---| | `failureToleranceCount` | java.lang.Number | [[cdk.support/lookup-entry]] | `:failure-tolerance-count` | | `failureTolerancePercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:failure-tolerance-percentage` | | `maxConcurrentCount` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-concurrent-count` | | `maxConcurrentPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-concurrent-percentage` | | `regionConcurrencyType` | java.lang.String | [[cdk.support/lookup-entry]] | `:region-concurrency-type` | | `regionOrder` | java.util.List | [[cdk.support/lookup-entry]] | `:region-order` |
(build-cfn-stack-set-parameter-property-builder builder id config)
The build-cfn-stack-set-parameter-property-builder function updates a CfnStackSet$ParameterProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$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 |
---|---|---|---|
parameterKey | java.lang.String | cdk.support/lookup-entry | :parameter-key |
parameterValue | java.lang.String | cdk.support/lookup-entry | :parameter-value |
The build-cfn-stack-set-parameter-property-builder function updates a CfnStackSet$ParameterProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$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 | |---|---|---|---| | `parameterKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:parameter-key` | | `parameterValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:parameter-value` |
(build-cfn-stack-set-props-builder builder id config)
The build-cfn-stack-set-props-builder function updates a CfnStackSetProps$Builder instance using the provided configuration. The function takes the CfnStackSetProps$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 |
---|---|---|---|
administrationRoleArn | java.lang.String | cdk.support/lookup-entry | :administration-role-arn |
autoDeployment | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :auto-deployment |
callAs | java.lang.String | cdk.support/lookup-entry | :call-as |
capabilities | java.util.List | cdk.support/lookup-entry | :capabilities |
description | java.lang.String | cdk.support/lookup-entry | :description |
executionRoleName | java.lang.String | cdk.support/lookup-entry | :execution-role-name |
managedExecution | java.lang.Object | cdk.support/lookup-entry | :managed-execution |
operationPreferences | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :operation-preferences |
parameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :parameters |
permissionModel | java.lang.String | cdk.support/lookup-entry | :permission-model |
stackInstancesGroup | java.util.List | cdk.support/lookup-entry | :stack-instances-group |
stackSetName | java.lang.String | cdk.support/lookup-entry | :stack-set-name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
templateBody | java.lang.String | cdk.support/lookup-entry | :template-body |
templateUrl | java.lang.String | cdk.support/lookup-entry | :template-url |
The build-cfn-stack-set-props-builder function updates a CfnStackSetProps$Builder instance using the provided configuration. The function takes the CfnStackSetProps$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 | |---|---|---|---| | `administrationRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:administration-role-arn` | | `autoDeployment` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:auto-deployment` | | `callAs` | java.lang.String | [[cdk.support/lookup-entry]] | `:call-as` | | `capabilities` | java.util.List | [[cdk.support/lookup-entry]] | `:capabilities` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `executionRoleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-name` | | `managedExecution` | java.lang.Object | [[cdk.support/lookup-entry]] | `:managed-execution` | | `operationPreferences` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:operation-preferences` | | `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` | | `permissionModel` | java.lang.String | [[cdk.support/lookup-entry]] | `:permission-model` | | `stackInstancesGroup` | java.util.List | [[cdk.support/lookup-entry]] | `:stack-instances-group` | | `stackSetName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-set-name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `templateBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-body` | | `templateUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-url` |
(build-cfn-stack-set-stack-instances-property-builder builder id config)
The build-cfn-stack-set-stack-instances-property-builder function updates a CfnStackSet$StackInstancesProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$StackInstancesProperty$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 |
---|---|---|---|
deploymentTargets | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :deployment-targets |
parameterOverrides | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :parameter-overrides |
regions | java.util.List | cdk.support/lookup-entry | :regions |
The build-cfn-stack-set-stack-instances-property-builder function updates a CfnStackSet$StackInstancesProperty$Builder instance using the provided configuration. The function takes the CfnStackSet$StackInstancesProperty$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 | |---|---|---|---| | `deploymentTargets` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:deployment-targets` | | `parameterOverrides` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameter-overrides` | | `regions` | java.util.List | [[cdk.support/lookup-entry]] | `:regions` |
(build-cfn-tag-builder builder id config)
The build-cfn-tag-builder function updates a CfnTag$Builder instance using the provided configuration. The function takes the CfnTag$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 |
---|---|---|---|
key | java.lang.String | cdk.support/lookup-entry | :key |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-tag-builder function updates a CfnTag$Builder instance using the provided configuration. The function takes the CfnTag$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 | |---|---|---|---| | `key` | java.lang.String | [[cdk.support/lookup-entry]] | `:key` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-traffic-route-builder builder id config)
The build-cfn-traffic-route-builder function updates a CfnTrafficRoute$Builder instance using the provided configuration. The function takes the CfnTrafficRoute$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 |
---|---|---|---|
logicalId | java.lang.String | cdk.support/lookup-entry | :logical-id |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-traffic-route-builder function updates a CfnTrafficRoute$Builder instance using the provided configuration. The function takes the CfnTrafficRoute$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 | |---|---|---|---| | `logicalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:logical-id` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-traffic-routing-builder builder id config)
The build-cfn-traffic-routing-builder function updates a CfnTrafficRouting$Builder instance using the provided configuration. The function takes the CfnTrafficRouting$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 |
---|---|---|---|
prodTrafficRoute | software.amazon.awscdk.CfnTrafficRoute | cdk.support/lookup-entry | :prod-traffic-route |
targetGroups | java.util.List | cdk.support/lookup-entry | :target-groups |
testTrafficRoute | software.amazon.awscdk.CfnTrafficRoute | cdk.support/lookup-entry | :test-traffic-route |
The build-cfn-traffic-routing-builder function updates a CfnTrafficRouting$Builder instance using the provided configuration. The function takes the CfnTrafficRouting$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 | |---|---|---|---| | `prodTrafficRoute` | software.amazon.awscdk.CfnTrafficRoute | [[cdk.support/lookup-entry]] | `:prod-traffic-route` | | `targetGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:target-groups` | | `testTrafficRoute` | software.amazon.awscdk.CfnTrafficRoute | [[cdk.support/lookup-entry]] | `:test-traffic-route` |
(build-cfn-traffic-routing-config-builder builder id config)
The build-cfn-traffic-routing-config-builder function updates a CfnTrafficRoutingConfig$Builder instance using the provided configuration. The function takes the CfnTrafficRoutingConfig$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 |
---|---|---|---|
timeBasedCanary | software.amazon.awscdk.CfnTrafficRoutingTimeBasedCanary | cdk.support/lookup-entry | :time-based-canary |
timeBasedLinear | software.amazon.awscdk.CfnTrafficRoutingTimeBasedLinear | cdk.support/lookup-entry | :time-based-linear |
type | software.amazon.awscdk.CfnTrafficRoutingType | cdk.api/cfn-traffic-routing-type | :type |
The build-cfn-traffic-routing-config-builder function updates a CfnTrafficRoutingConfig$Builder instance using the provided configuration. The function takes the CfnTrafficRoutingConfig$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 | |---|---|---|---| | `timeBasedCanary` | software.amazon.awscdk.CfnTrafficRoutingTimeBasedCanary | [[cdk.support/lookup-entry]] | `:time-based-canary` | | `timeBasedLinear` | software.amazon.awscdk.CfnTrafficRoutingTimeBasedLinear | [[cdk.support/lookup-entry]] | `:time-based-linear` | | `type` | software.amazon.awscdk.CfnTrafficRoutingType | [[cdk.api/cfn-traffic-routing-type]] | `:type` |
(build-cfn-traffic-routing-time-based-canary-builder builder id config)
The build-cfn-traffic-routing-time-based-canary-builder function updates a CfnTrafficRoutingTimeBasedCanary$Builder instance using the provided configuration. The function takes the CfnTrafficRoutingTimeBasedCanary$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 |
---|---|---|---|
bakeTimeMins | java.lang.Number | cdk.support/lookup-entry | :bake-time-mins |
stepPercentage | java.lang.Number | cdk.support/lookup-entry | :step-percentage |
The build-cfn-traffic-routing-time-based-canary-builder function updates a CfnTrafficRoutingTimeBasedCanary$Builder instance using the provided configuration. The function takes the CfnTrafficRoutingTimeBasedCanary$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 | |---|---|---|---| | `bakeTimeMins` | java.lang.Number | [[cdk.support/lookup-entry]] | `:bake-time-mins` | | `stepPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:step-percentage` |
(build-cfn-traffic-routing-time-based-linear-builder builder id config)
The build-cfn-traffic-routing-time-based-linear-builder function updates a CfnTrafficRoutingTimeBasedLinear$Builder instance using the provided configuration. The function takes the CfnTrafficRoutingTimeBasedLinear$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 |
---|---|---|---|
bakeTimeMins | java.lang.Number | cdk.support/lookup-entry | :bake-time-mins |
stepPercentage | java.lang.Number | cdk.support/lookup-entry | :step-percentage |
The build-cfn-traffic-routing-time-based-linear-builder function updates a CfnTrafficRoutingTimeBasedLinear$Builder instance using the provided configuration. The function takes the CfnTrafficRoutingTimeBasedLinear$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 | |---|---|---|---| | `bakeTimeMins` | java.lang.Number | [[cdk.support/lookup-entry]] | `:bake-time-mins` | | `stepPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:step-percentage` |
(build-cfn-type-activation-builder builder id config)
The build-cfn-type-activation-builder function updates a CfnTypeActivation$Builder instance using the provided configuration. The function takes the CfnTypeActivation$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 |
---|---|---|---|
autoUpdate | java.lang.Boolean | cdk.support/lookup-entry | :auto-update |
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
loggingConfig | software.amazon.awscdk.CfnTypeActivation$LoggingConfigProperty | cdk.support/lookup-entry | :logging-config |
majorVersion | java.lang.String | cdk.support/lookup-entry | :major-version |
publicTypeArn | java.lang.String | cdk.support/lookup-entry | :public-type-arn |
publisherId | java.lang.String | cdk.support/lookup-entry | :publisher-id |
type | java.lang.String | cdk.support/lookup-entry | :type |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
typeNameAlias | java.lang.String | cdk.support/lookup-entry | :type-name-alias |
versionBump | java.lang.String | cdk.support/lookup-entry | :version-bump |
The build-cfn-type-activation-builder function updates a CfnTypeActivation$Builder instance using the provided configuration. The function takes the CfnTypeActivation$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 | |---|---|---|---| | `autoUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:auto-update` | | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `loggingConfig` | software.amazon.awscdk.CfnTypeActivation$LoggingConfigProperty | [[cdk.support/lookup-entry]] | `:logging-config` | | `majorVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:major-version` | | `publicTypeArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:public-type-arn` | | `publisherId` | java.lang.String | [[cdk.support/lookup-entry]] | `:publisher-id` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` | | `typeNameAlias` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name-alias` | | `versionBump` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-bump` |
(build-cfn-type-activation-logging-config-property-builder builder id config)
The build-cfn-type-activation-logging-config-property-builder function updates a CfnTypeActivation$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnTypeActivation$LoggingConfigProperty$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 |
---|---|---|---|
logGroupName | java.lang.String | cdk.support/lookup-entry | :log-group-name |
logRoleArn | java.lang.String | cdk.support/lookup-entry | :log-role-arn |
The build-cfn-type-activation-logging-config-property-builder function updates a CfnTypeActivation$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnTypeActivation$LoggingConfigProperty$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 | |---|---|---|---| | `logGroupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group-name` | | `logRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-role-arn` |
(build-cfn-type-activation-props-builder builder id config)
The build-cfn-type-activation-props-builder function updates a CfnTypeActivationProps$Builder instance using the provided configuration. The function takes the CfnTypeActivationProps$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 |
---|---|---|---|
autoUpdate | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :auto-update |
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
loggingConfig | software.amazon.awscdk.CfnTypeActivation$LoggingConfigProperty | cdk.support/lookup-entry | :logging-config |
majorVersion | java.lang.String | cdk.support/lookup-entry | :major-version |
publicTypeArn | java.lang.String | cdk.support/lookup-entry | :public-type-arn |
publisherId | java.lang.String | cdk.support/lookup-entry | :publisher-id |
type | java.lang.String | cdk.support/lookup-entry | :type |
typeName | java.lang.String | cdk.support/lookup-entry | :type-name |
typeNameAlias | java.lang.String | cdk.support/lookup-entry | :type-name-alias |
versionBump | java.lang.String | cdk.support/lookup-entry | :version-bump |
The build-cfn-type-activation-props-builder function updates a CfnTypeActivationProps$Builder instance using the provided configuration. The function takes the CfnTypeActivationProps$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 | |---|---|---|---| | `autoUpdate` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:auto-update` | | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `loggingConfig` | software.amazon.awscdk.CfnTypeActivation$LoggingConfigProperty | [[cdk.support/lookup-entry]] | `:logging-config` | | `majorVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:major-version` | | `publicTypeArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:public-type-arn` | | `publisherId` | java.lang.String | [[cdk.support/lookup-entry]] | `:publisher-id` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `typeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name` | | `typeNameAlias` | java.lang.String | [[cdk.support/lookup-entry]] | `:type-name-alias` | | `versionBump` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-bump` |
(build-cfn-update-policy-builder builder id config)
The build-cfn-update-policy-builder function updates a CfnUpdatePolicy$Builder instance using the provided configuration. The function takes the CfnUpdatePolicy$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 |
---|---|---|---|
autoScalingReplacingUpdate | software.amazon.awscdk.CfnAutoScalingReplacingUpdate | cdk.support/lookup-entry | :auto-scaling-replacing-update |
autoScalingRollingUpdate | software.amazon.awscdk.CfnAutoScalingRollingUpdate | cdk.support/lookup-entry | :auto-scaling-rolling-update |
autoScalingScheduledAction | software.amazon.awscdk.CfnAutoScalingScheduledAction | cdk.support/lookup-entry | :auto-scaling-scheduled-action |
codeDeployLambdaAliasUpdate | software.amazon.awscdk.CfnCodeDeployLambdaAliasUpdate | cdk.support/lookup-entry | :code-deploy-lambda-alias-update |
enableVersionUpgrade | java.lang.Boolean | cdk.support/lookup-entry | :enable-version-upgrade |
useOnlineResharding | java.lang.Boolean | cdk.support/lookup-entry | :use-online-resharding |
The build-cfn-update-policy-builder function updates a CfnUpdatePolicy$Builder instance using the provided configuration. The function takes the CfnUpdatePolicy$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 | |---|---|---|---| | `autoScalingReplacingUpdate` | software.amazon.awscdk.CfnAutoScalingReplacingUpdate | [[cdk.support/lookup-entry]] | `:auto-scaling-replacing-update` | | `autoScalingRollingUpdate` | software.amazon.awscdk.CfnAutoScalingRollingUpdate | [[cdk.support/lookup-entry]] | `:auto-scaling-rolling-update` | | `autoScalingScheduledAction` | software.amazon.awscdk.CfnAutoScalingScheduledAction | [[cdk.support/lookup-entry]] | `:auto-scaling-scheduled-action` | | `codeDeployLambdaAliasUpdate` | software.amazon.awscdk.CfnCodeDeployLambdaAliasUpdate | [[cdk.support/lookup-entry]] | `:code-deploy-lambda-alias-update` | | `enableVersionUpgrade` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-version-upgrade` | | `useOnlineResharding` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-online-resharding` |
(build-cfn-wait-condition-builder builder id config)
The build-cfn-wait-condition-builder function updates a CfnWaitCondition$Builder instance using the provided configuration. The function takes the CfnWaitCondition$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 |
---|---|---|---|
count | java.lang.Number | cdk.support/lookup-entry | :count |
handle | java.lang.String | cdk.support/lookup-entry | :handle |
timeout | java.lang.String | cdk.support/lookup-entry | :timeout |
The build-cfn-wait-condition-builder function updates a CfnWaitCondition$Builder instance using the provided configuration. The function takes the CfnWaitCondition$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 | |---|---|---|---| | `count` | java.lang.Number | [[cdk.support/lookup-entry]] | `:count` | | `handle` | java.lang.String | [[cdk.support/lookup-entry]] | `:handle` | | `timeout` | java.lang.String | [[cdk.support/lookup-entry]] | `:timeout` |
(build-cfn-wait-condition-props-builder builder id config)
The build-cfn-wait-condition-props-builder function updates a CfnWaitConditionProps$Builder instance using the provided configuration. The function takes the CfnWaitConditionProps$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 |
---|---|---|---|
count | java.lang.Number | cdk.support/lookup-entry | :count |
handle | java.lang.String | cdk.support/lookup-entry | :handle |
timeout | java.lang.String | cdk.support/lookup-entry | :timeout |
The build-cfn-wait-condition-props-builder function updates a CfnWaitConditionProps$Builder instance using the provided configuration. The function takes the CfnWaitConditionProps$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 | |---|---|---|---| | `count` | java.lang.Number | [[cdk.support/lookup-entry]] | `:count` | | `handle` | java.lang.String | [[cdk.support/lookup-entry]] | `:handle` | | `timeout` | java.lang.String | [[cdk.support/lookup-entry]] | `:timeout` |
(build-cli-credentials-stack-synthesizer-builder builder id config)
The build-cli-credentials-stack-synthesizer-builder function updates a CliCredentialsStackSynthesizer$Builder instance using the provided configuration. The function takes the CliCredentialsStackSynthesizer$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 |
---|---|---|---|
bucketPrefix | java.lang.String | cdk.support/lookup-entry | :bucket-prefix |
dockerTagPrefix | java.lang.String | cdk.support/lookup-entry | :docker-tag-prefix |
fileAssetsBucketName | java.lang.String | cdk.support/lookup-entry | :file-assets-bucket-name |
imageAssetsRepositoryName | java.lang.String | cdk.support/lookup-entry | :image-assets-repository-name |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
The build-cli-credentials-stack-synthesizer-builder function updates a CliCredentialsStackSynthesizer$Builder instance using the provided configuration. The function takes the CliCredentialsStackSynthesizer$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 | |---|---|---|---| | `bucketPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-prefix` | | `dockerTagPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-tag-prefix` | | `fileAssetsBucketName` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-assets-bucket-name` | | `imageAssetsRepositoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-assets-repository-name` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` |
(build-cli-credentials-stack-synthesizer-props-builder builder id config)
The build-cli-credentials-stack-synthesizer-props-builder function updates a CliCredentialsStackSynthesizerProps$Builder instance using the provided configuration. The function takes the CliCredentialsStackSynthesizerProps$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 |
---|---|---|---|
bucketPrefix | java.lang.String | cdk.support/lookup-entry | :bucket-prefix |
dockerTagPrefix | java.lang.String | cdk.support/lookup-entry | :docker-tag-prefix |
fileAssetsBucketName | java.lang.String | cdk.support/lookup-entry | :file-assets-bucket-name |
imageAssetsRepositoryName | java.lang.String | cdk.support/lookup-entry | :image-assets-repository-name |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
The build-cli-credentials-stack-synthesizer-props-builder function updates a CliCredentialsStackSynthesizerProps$Builder instance using the provided configuration. The function takes the CliCredentialsStackSynthesizerProps$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 | |---|---|---|---| | `bucketPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-prefix` | | `dockerTagPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-tag-prefix` | | `fileAssetsBucketName` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-assets-bucket-name` | | `imageAssetsRepositoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-assets-repository-name` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` |
(build-copy-options-builder builder id config)
The build-copy-options-builder function updates a CopyOptions$Builder instance using the provided configuration. The function takes the CopyOptions$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 |
---|---|---|---|
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
follow | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
The build-copy-options-builder function updates a CopyOptions$Builder instance using the provided configuration. The function takes the CopyOptions$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 | |---|---|---|---| | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `follow` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` |
(build-custom-resource-builder builder id config)
The build-custom-resource-builder function updates a CustomResource$Builder instance using the provided configuration. The function takes the CustomResource$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 |
---|---|---|---|
pascalCaseProperties | java.lang.Boolean | cdk.support/lookup-entry | :pascal-case-properties |
properties | java.util.Map | cdk.support/lookup-entry | :properties |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
resourceType | java.lang.String | cdk.support/lookup-entry | :resource-type |
serviceToken | java.lang.String | cdk.support/lookup-entry | :service-token |
The build-custom-resource-builder function updates a CustomResource$Builder instance using the provided configuration. The function takes the CustomResource$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 | |---|---|---|---| | `pascalCaseProperties` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:pascal-case-properties` | | `properties` | java.util.Map | [[cdk.support/lookup-entry]] | `:properties` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `resourceType` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-type` | | `serviceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-token` |
(build-custom-resource-props-builder builder id config)
The build-custom-resource-props-builder function updates a CustomResourceProps$Builder instance using the provided configuration. The function takes the CustomResourceProps$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 |
---|---|---|---|
pascalCaseProperties | java.lang.Boolean | cdk.support/lookup-entry | :pascal-case-properties |
properties | java.util.Map | cdk.support/lookup-entry | :properties |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
resourceType | java.lang.String | cdk.support/lookup-entry | :resource-type |
serviceToken | java.lang.String | cdk.support/lookup-entry | :service-token |
The build-custom-resource-props-builder function updates a CustomResourceProps$Builder instance using the provided configuration. The function takes the CustomResourceProps$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 | |---|---|---|---| | `pascalCaseProperties` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:pascal-case-properties` | | `properties` | java.util.Map | [[cdk.support/lookup-entry]] | `:properties` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `resourceType` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-type` | | `serviceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-token` |
(build-custom-resource-provider-base-props-builder builder id config)
The build-custom-resource-provider-base-props-builder function updates a CustomResourceProviderBaseProps$Builder instance using the provided configuration. The function takes the CustomResourceProviderBaseProps$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 |
---|---|---|---|
codeDirectory | java.lang.String | cdk.support/lookup-entry | :code-directory |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
memorySize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-size |
policyStatements | java.util.List | cdk.support/lookup-entry | :policy-statements |
runtimeName | java.lang.String | cdk.support/lookup-entry | :runtime-name |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
useCfnResponseWrapper | java.lang.Boolean | cdk.support/lookup-entry | :use-cfn-response-wrapper |
The build-custom-resource-provider-base-props-builder function updates a CustomResourceProviderBaseProps$Builder instance using the provided configuration. The function takes the CustomResourceProviderBaseProps$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 | |---|---|---|---| | `codeDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-directory` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `memorySize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-size` | | `policyStatements` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-statements` | | `runtimeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:runtime-name` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `useCfnResponseWrapper` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-cfn-response-wrapper` |
(build-custom-resource-provider-options-builder builder id config)
The build-custom-resource-provider-options-builder function updates a CustomResourceProviderOptions$Builder instance using the provided configuration. The function takes the CustomResourceProviderOptions$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 |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
memorySize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-size |
policyStatements | java.util.List | cdk.support/lookup-entry | :policy-statements |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
useCfnResponseWrapper | java.lang.Boolean | cdk.support/lookup-entry | :use-cfn-response-wrapper |
The build-custom-resource-provider-options-builder function updates a CustomResourceProviderOptions$Builder instance using the provided configuration. The function takes the CustomResourceProviderOptions$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` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `memorySize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-size` | | `policyStatements` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-statements` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `useCfnResponseWrapper` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-cfn-response-wrapper` |
(build-custom-resource-provider-props-builder builder id config)
The build-custom-resource-provider-props-builder function updates a CustomResourceProviderProps$Builder instance using the provided configuration. The function takes the CustomResourceProviderProps$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 |
---|---|---|---|
codeDirectory | java.lang.String | cdk.support/lookup-entry | :code-directory |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
memorySize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-size |
policyStatements | java.util.List | cdk.support/lookup-entry | :policy-statements |
runtime | software.amazon.awscdk.CustomResourceProviderRuntime | cdk.api/custom-resource-provider-runtime | :runtime |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
useCfnResponseWrapper | java.lang.Boolean | cdk.support/lookup-entry | :use-cfn-response-wrapper |
The build-custom-resource-provider-props-builder function updates a CustomResourceProviderProps$Builder instance using the provided configuration. The function takes the CustomResourceProviderProps$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 | |---|---|---|---| | `codeDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-directory` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `memorySize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-size` | | `policyStatements` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-statements` | | `runtime` | software.amazon.awscdk.CustomResourceProviderRuntime | [[cdk.api/custom-resource-provider-runtime]] | `:runtime` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `useCfnResponseWrapper` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-cfn-response-wrapper` |
(build-default-stack-synthesizer-builder builder id config)
The build-default-stack-synthesizer-builder function updates a DefaultStackSynthesizer$Builder instance using the provided configuration. The function takes the DefaultStackSynthesizer$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 |
---|---|---|---|
bootstrapStackVersionSsmParameter | java.lang.String | cdk.support/lookup-entry | :bootstrap-stack-version-ssm-parameter |
bucketPrefix | java.lang.String | cdk.support/lookup-entry | :bucket-prefix |
cloudFormationExecutionRole | java.lang.String | cdk.support/lookup-entry | :cloud-formation-execution-role |
deployRoleArn | java.lang.String | cdk.support/lookup-entry | :deploy-role-arn |
deployRoleExternalId | java.lang.String | cdk.support/lookup-entry | :deploy-role-external-id |
dockerTagPrefix | java.lang.String | cdk.support/lookup-entry | :docker-tag-prefix |
fileAssetPublishingExternalId | java.lang.String | cdk.support/lookup-entry | :file-asset-publishing-external-id |
fileAssetPublishingRoleArn | java.lang.String | cdk.support/lookup-entry | :file-asset-publishing-role-arn |
fileAssetsBucketName | java.lang.String | cdk.support/lookup-entry | :file-assets-bucket-name |
generateBootstrapVersionRule | java.lang.Boolean | cdk.support/lookup-entry | :generate-bootstrap-version-rule |
imageAssetPublishingExternalId | java.lang.String | cdk.support/lookup-entry | :image-asset-publishing-external-id |
imageAssetPublishingRoleArn | java.lang.String | cdk.support/lookup-entry | :image-asset-publishing-role-arn |
imageAssetsRepositoryName | java.lang.String | cdk.support/lookup-entry | :image-assets-repository-name |
lookupRoleArn | java.lang.String | cdk.support/lookup-entry | :lookup-role-arn |
lookupRoleExternalId | java.lang.String | cdk.support/lookup-entry | :lookup-role-external-id |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
useLookupRoleForStackOperations | java.lang.Boolean | cdk.support/lookup-entry | :use-lookup-role-for-stack-operations |
The build-default-stack-synthesizer-builder function updates a DefaultStackSynthesizer$Builder instance using the provided configuration. The function takes the DefaultStackSynthesizer$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 | |---|---|---|---| | `bootstrapStackVersionSsmParameter` | java.lang.String | [[cdk.support/lookup-entry]] | `:bootstrap-stack-version-ssm-parameter` | | `bucketPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-prefix` | | `cloudFormationExecutionRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:cloud-formation-execution-role` | | `deployRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:deploy-role-arn` | | `deployRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:deploy-role-external-id` | | `dockerTagPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-tag-prefix` | | `fileAssetPublishingExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-asset-publishing-external-id` | | `fileAssetPublishingRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-asset-publishing-role-arn` | | `fileAssetsBucketName` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-assets-bucket-name` | | `generateBootstrapVersionRule` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-bootstrap-version-rule` | | `imageAssetPublishingExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-asset-publishing-external-id` | | `imageAssetPublishingRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-asset-publishing-role-arn` | | `imageAssetsRepositoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-assets-repository-name` | | `lookupRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:lookup-role-arn` | | `lookupRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:lookup-role-external-id` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` | | `useLookupRoleForStackOperations` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-lookup-role-for-stack-operations` |
(build-default-stack-synthesizer-props-builder builder id config)
The build-default-stack-synthesizer-props-builder function updates a DefaultStackSynthesizerProps$Builder instance using the provided configuration. The function takes the DefaultStackSynthesizerProps$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 |
---|---|---|---|
bootstrapStackVersionSsmParameter | java.lang.String | cdk.support/lookup-entry | :bootstrap-stack-version-ssm-parameter |
bucketPrefix | java.lang.String | cdk.support/lookup-entry | :bucket-prefix |
cloudFormationExecutionRole | java.lang.String | cdk.support/lookup-entry | :cloud-formation-execution-role |
deployRoleArn | java.lang.String | cdk.support/lookup-entry | :deploy-role-arn |
deployRoleExternalId | java.lang.String | cdk.support/lookup-entry | :deploy-role-external-id |
dockerTagPrefix | java.lang.String | cdk.support/lookup-entry | :docker-tag-prefix |
fileAssetPublishingExternalId | java.lang.String | cdk.support/lookup-entry | :file-asset-publishing-external-id |
fileAssetPublishingRoleArn | java.lang.String | cdk.support/lookup-entry | :file-asset-publishing-role-arn |
fileAssetsBucketName | java.lang.String | cdk.support/lookup-entry | :file-assets-bucket-name |
generateBootstrapVersionRule | java.lang.Boolean | cdk.support/lookup-entry | :generate-bootstrap-version-rule |
imageAssetPublishingExternalId | java.lang.String | cdk.support/lookup-entry | :image-asset-publishing-external-id |
imageAssetPublishingRoleArn | java.lang.String | cdk.support/lookup-entry | :image-asset-publishing-role-arn |
imageAssetsRepositoryName | java.lang.String | cdk.support/lookup-entry | :image-assets-repository-name |
lookupRoleArn | java.lang.String | cdk.support/lookup-entry | :lookup-role-arn |
lookupRoleExternalId | java.lang.String | cdk.support/lookup-entry | :lookup-role-external-id |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
useLookupRoleForStackOperations | java.lang.Boolean | cdk.support/lookup-entry | :use-lookup-role-for-stack-operations |
The build-default-stack-synthesizer-props-builder function updates a DefaultStackSynthesizerProps$Builder instance using the provided configuration. The function takes the DefaultStackSynthesizerProps$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 | |---|---|---|---| | `bootstrapStackVersionSsmParameter` | java.lang.String | [[cdk.support/lookup-entry]] | `:bootstrap-stack-version-ssm-parameter` | | `bucketPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-prefix` | | `cloudFormationExecutionRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:cloud-formation-execution-role` | | `deployRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:deploy-role-arn` | | `deployRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:deploy-role-external-id` | | `dockerTagPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-tag-prefix` | | `fileAssetPublishingExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-asset-publishing-external-id` | | `fileAssetPublishingRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-asset-publishing-role-arn` | | `fileAssetsBucketName` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-assets-bucket-name` | | `generateBootstrapVersionRule` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-bootstrap-version-rule` | | `imageAssetPublishingExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-asset-publishing-external-id` | | `imageAssetPublishingRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-asset-publishing-role-arn` | | `imageAssetsRepositoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-assets-repository-name` | | `lookupRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:lookup-role-arn` | | `lookupRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:lookup-role-external-id` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` | | `useLookupRoleForStackOperations` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-lookup-role-for-stack-operations` |
(build-docker-build-options-builder builder id config)
The build-docker-build-options-builder function updates a DockerBuildOptions$Builder instance using the provided configuration. The function takes the DockerBuildOptions$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 |
---|---|---|---|
buildArgs | java.util.Map | cdk.support/lookup-entry | :build-args |
cacheDisabled | java.lang.Boolean | cdk.support/lookup-entry | :cache-disabled |
cacheFrom | java.util.List | cdk.support/lookup-entry | :cache-from |
cacheTo | software.amazon.awscdk.DockerCacheOption | cdk.support/lookup-entry | :cache-to |
file | java.lang.String | cdk.support/lookup-entry | :file |
platform | java.lang.String | cdk.support/lookup-entry | :platform |
targetStage | java.lang.String | cdk.support/lookup-entry | :target-stage |
The build-docker-build-options-builder function updates a DockerBuildOptions$Builder instance using the provided configuration. The function takes the DockerBuildOptions$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 | |---|---|---|---| | `buildArgs` | java.util.Map | [[cdk.support/lookup-entry]] | `:build-args` | | `cacheDisabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cache-disabled` | | `cacheFrom` | java.util.List | [[cdk.support/lookup-entry]] | `:cache-from` | | `cacheTo` | software.amazon.awscdk.DockerCacheOption | [[cdk.support/lookup-entry]] | `:cache-to` | | `file` | java.lang.String | [[cdk.support/lookup-entry]] | `:file` | | `platform` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform` | | `targetStage` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-stage` |
(build-docker-cache-option-builder builder id config)
The build-docker-cache-option-builder function updates a DockerCacheOption$Builder instance using the provided configuration. The function takes the DockerCacheOption$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 |
---|---|---|---|
params | java.util.Map | cdk.support/lookup-entry | :params |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-docker-cache-option-builder function updates a DockerCacheOption$Builder instance using the provided configuration. The function takes the DockerCacheOption$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 | |---|---|---|---| | `params` | java.util.Map | [[cdk.support/lookup-entry]] | `:params` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-docker-image-asset-location-builder builder id config)
The build-docker-image-asset-location-builder function updates a DockerImageAssetLocation$Builder instance using the provided configuration. The function takes the DockerImageAssetLocation$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 |
---|---|---|---|
imageTag | java.lang.String | cdk.support/lookup-entry | :image-tag |
imageUri | java.lang.String | cdk.support/lookup-entry | :image-uri |
repositoryName | java.lang.String | cdk.support/lookup-entry | :repository-name |
The build-docker-image-asset-location-builder function updates a DockerImageAssetLocation$Builder instance using the provided configuration. The function takes the DockerImageAssetLocation$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 | |---|---|---|---| | `imageTag` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-tag` | | `imageUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-uri` | | `repositoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:repository-name` |
(build-docker-image-asset-source-builder builder id config)
The build-docker-image-asset-source-builder function updates a DockerImageAssetSource$Builder instance using the provided configuration. The function takes the DockerImageAssetSource$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 |
---|---|---|---|
assetName | java.lang.String | cdk.support/lookup-entry | :asset-name |
directoryName | java.lang.String | cdk.support/lookup-entry | :directory-name |
dockerBuildArgs | java.util.Map | cdk.support/lookup-entry | :docker-build-args |
dockerBuildSecrets | java.util.Map | cdk.support/lookup-entry | :docker-build-secrets |
dockerBuildSsh | java.lang.String | cdk.support/lookup-entry | :docker-build-ssh |
dockerBuildTarget | java.lang.String | cdk.support/lookup-entry | :docker-build-target |
dockerCacheDisabled | java.lang.Boolean | cdk.support/lookup-entry | :docker-cache-disabled |
dockerCacheFrom | java.util.List | cdk.support/lookup-entry | :docker-cache-from |
dockerCacheTo | software.amazon.awscdk.DockerCacheOption | cdk.support/lookup-entry | :docker-cache-to |
dockerFile | java.lang.String | cdk.support/lookup-entry | :docker-file |
dockerOutputs | java.util.List | cdk.support/lookup-entry | :docker-outputs |
executable | java.util.List | cdk.support/lookup-entry | :executable |
networkMode | java.lang.String | cdk.support/lookup-entry | :network-mode |
platform | java.lang.String | cdk.support/lookup-entry | :platform |
sourceHash | java.lang.String | cdk.support/lookup-entry | :source-hash |
The build-docker-image-asset-source-builder function updates a DockerImageAssetSource$Builder instance using the provided configuration. The function takes the DockerImageAssetSource$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 | |---|---|---|---| | `assetName` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-name` | | `directoryName` | java.lang.String | [[cdk.support/lookup-entry]] | `:directory-name` | | `dockerBuildArgs` | java.util.Map | [[cdk.support/lookup-entry]] | `:docker-build-args` | | `dockerBuildSecrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:docker-build-secrets` | | `dockerBuildSsh` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-build-ssh` | | `dockerBuildTarget` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-build-target` | | `dockerCacheDisabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:docker-cache-disabled` | | `dockerCacheFrom` | java.util.List | [[cdk.support/lookup-entry]] | `:docker-cache-from` | | `dockerCacheTo` | software.amazon.awscdk.DockerCacheOption | [[cdk.support/lookup-entry]] | `:docker-cache-to` | | `dockerFile` | java.lang.String | [[cdk.support/lookup-entry]] | `:docker-file` | | `dockerOutputs` | java.util.List | [[cdk.support/lookup-entry]] | `:docker-outputs` | | `executable` | java.util.List | [[cdk.support/lookup-entry]] | `:executable` | | `networkMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:network-mode` | | `platform` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform` | | `sourceHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-hash` |
(build-docker-run-options-builder builder id config)
The build-docker-run-options-builder function updates a DockerRunOptions$Builder instance using the provided configuration. The function takes the DockerRunOptions$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 |
---|---|---|---|
command | java.util.List | cdk.support/lookup-entry | :command |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
network | java.lang.String | cdk.support/lookup-entry | :network |
platform | java.lang.String | cdk.support/lookup-entry | :platform |
securityOpt | java.lang.String | cdk.support/lookup-entry | :security-opt |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
volumesFrom | java.util.List | cdk.support/lookup-entry | :volumes-from |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-docker-run-options-builder function updates a DockerRunOptions$Builder instance using the provided configuration. The function takes the DockerRunOptions$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 | |---|---|---|---| | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `network` | java.lang.String | [[cdk.support/lookup-entry]] | `:network` | | `platform` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform` | | `securityOpt` | java.lang.String | [[cdk.support/lookup-entry]] | `:security-opt` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` | | `volumesFrom` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes-from` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-docker-volume-builder builder id config)
The build-docker-volume-builder function updates a DockerVolume$Builder instance using the provided configuration. The function takes the DockerVolume$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 |
---|---|---|---|
consistency | software.amazon.awscdk.DockerVolumeConsistency | cdk.api/docker-volume-consistency | :consistency |
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
The build-docker-volume-builder function updates a DockerVolume$Builder instance using the provided configuration. The function takes the DockerVolume$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 | |---|---|---|---| | `consistency` | software.amazon.awscdk.DockerVolumeConsistency | [[cdk.api/docker-volume-consistency]] | `:consistency` | | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` |
(build-encoding-options-builder builder id config)
The build-encoding-options-builder function updates a EncodingOptions$Builder instance using the provided configuration. The function takes the EncodingOptions$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 |
---|---|---|---|
displayHint | java.lang.String | cdk.support/lookup-entry | :display-hint |
The build-encoding-options-builder function updates a EncodingOptions$Builder instance using the provided configuration. The function takes the EncodingOptions$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 | |---|---|---|---| | `displayHint` | java.lang.String | [[cdk.support/lookup-entry]] | `:display-hint` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
region | java.lang.String | cdk.support/lookup-entry | :region |
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 | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` |
(build-export-value-options-builder builder id config)
The build-export-value-options-builder function updates a ExportValueOptions$Builder instance using the provided configuration. The function takes the ExportValueOptions$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 |
The build-export-value-options-builder function updates a ExportValueOptions$Builder instance using the provided configuration. The function takes the ExportValueOptions$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` |
(build-file-asset-location-builder builder id config)
The build-file-asset-location-builder function updates a FileAssetLocation$Builder instance using the provided configuration. The function takes the FileAssetLocation$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 |
---|---|---|---|
bucketName | java.lang.String | cdk.support/lookup-entry | :bucket-name |
httpUrl | java.lang.String | cdk.support/lookup-entry | :http-url |
kmsKeyArn | java.lang.String | cdk.support/lookup-entry | :kms-key-arn |
objectKey | java.lang.String | cdk.support/lookup-entry | :object-key |
s3ObjectUrl | java.lang.String | cdk.support/lookup-entry | :s3-object-url |
s3ObjectUrlWithPlaceholders | java.lang.String | cdk.support/lookup-entry | :s3-object-url-with-placeholders |
The build-file-asset-location-builder function updates a FileAssetLocation$Builder instance using the provided configuration. The function takes the FileAssetLocation$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 | |---|---|---|---| | `bucketName` | java.lang.String | [[cdk.support/lookup-entry]] | `:bucket-name` | | `httpUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:http-url` | | `kmsKeyArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-arn` | | `objectKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:object-key` | | `s3ObjectUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-object-url` | | `s3ObjectUrlWithPlaceholders` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-object-url-with-placeholders` |
(build-file-asset-source-builder builder id config)
The build-file-asset-source-builder function updates a FileAssetSource$Builder instance using the provided configuration. The function takes the FileAssetSource$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 |
---|---|---|---|
deployTime | java.lang.Boolean | cdk.support/lookup-entry | :deploy-time |
executable | java.util.List | cdk.support/lookup-entry | :executable |
fileName | java.lang.String | cdk.support/lookup-entry | :file-name |
packaging | software.amazon.awscdk.FileAssetPackaging | cdk.api/file-asset-packaging | :packaging |
sourceHash | java.lang.String | cdk.support/lookup-entry | :source-hash |
The build-file-asset-source-builder function updates a FileAssetSource$Builder instance using the provided configuration. The function takes the FileAssetSource$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 | |---|---|---|---| | `deployTime` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:deploy-time` | | `executable` | java.util.List | [[cdk.support/lookup-entry]] | `:executable` | | `fileName` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-name` | | `packaging` | software.amazon.awscdk.FileAssetPackaging | [[cdk.api/file-asset-packaging]] | `:packaging` | | `sourceHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-hash` |
(build-file-copy-options-builder builder id config)
The build-file-copy-options-builder function updates a FileCopyOptions$Builder instance using the provided configuration. The function takes the FileCopyOptions$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 |
---|---|---|---|
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
followSymlinks | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow-symlinks |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
The build-file-copy-options-builder function updates a FileCopyOptions$Builder instance using the provided configuration. The function takes the FileCopyOptions$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 | |---|---|---|---| | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `followSymlinks` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow-symlinks` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` |
(build-file-fingerprint-options-builder builder id config)
The build-file-fingerprint-options-builder function updates a FileFingerprintOptions$Builder instance using the provided configuration. The function takes the FileFingerprintOptions$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 |
---|---|---|---|
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
extraHash | java.lang.String | cdk.support/lookup-entry | :extra-hash |
followSymlinks | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow-symlinks |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
The build-file-fingerprint-options-builder function updates a FileFingerprintOptions$Builder instance using the provided configuration. The function takes the FileFingerprintOptions$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 | |---|---|---|---| | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `extraHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:extra-hash` | | `followSymlinks` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow-symlinks` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` |
(build-fingerprint-options-builder builder id config)
The build-fingerprint-options-builder function updates a FingerprintOptions$Builder instance using the provided configuration. The function takes the FingerprintOptions$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 |
---|---|---|---|
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
extraHash | java.lang.String | cdk.support/lookup-entry | :extra-hash |
follow | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
The build-fingerprint-options-builder function updates a FingerprintOptions$Builder instance using the provided configuration. The function takes the FingerprintOptions$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 | |---|---|---|---| | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `extraHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:extra-hash` | | `follow` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` |
(build-get-context-key-options-builder builder id config)
The build-get-context-key-options-builder function updates a GetContextKeyOptions$Builder instance using the provided configuration. The function takes the GetContextKeyOptions$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 |
---|---|---|---|
includeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :include-environment |
props | java.util.Map | cdk.support/lookup-entry | :props |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
The build-get-context-key-options-builder function updates a GetContextKeyOptions$Builder instance using the provided configuration. The function takes the GetContextKeyOptions$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 | |---|---|---|---| | `includeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:include-environment` | | `props` | java.util.Map | [[cdk.support/lookup-entry]] | `:props` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` |
(build-get-context-key-result-builder builder id config)
The build-get-context-key-result-builder function updates a GetContextKeyResult$Builder instance using the provided configuration. The function takes the GetContextKeyResult$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 |
---|---|---|---|
key | java.lang.String | cdk.support/lookup-entry | :key |
props | java.util.Map | cdk.support/lookup-entry | :props |
The build-get-context-key-result-builder function updates a GetContextKeyResult$Builder instance using the provided configuration. The function takes the GetContextKeyResult$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 | |---|---|---|---| | `key` | java.lang.String | [[cdk.support/lookup-entry]] | `:key` | | `props` | java.util.Map | [[cdk.support/lookup-entry]] | `:props` |
(build-get-context-value-options-builder builder id config)
The build-get-context-value-options-builder function updates a GetContextValueOptions$Builder instance using the provided configuration. The function takes the GetContextValueOptions$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 |
---|---|---|---|
dummyValue | java.lang.Object | cdk.support/lookup-entry | :dummy-value |
includeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :include-environment |
props | java.util.Map | cdk.support/lookup-entry | :props |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
The build-get-context-value-options-builder function updates a GetContextValueOptions$Builder instance using the provided configuration. The function takes the GetContextValueOptions$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 | |---|---|---|---| | `dummyValue` | java.lang.Object | [[cdk.support/lookup-entry]] | `:dummy-value` | | `includeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:include-environment` | | `props` | java.util.Map | [[cdk.support/lookup-entry]] | `:props` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` |
(build-get-context-value-result-builder builder id config)
The build-get-context-value-result-builder function updates a GetContextValueResult$Builder instance using the provided configuration. The function takes the GetContextValueResult$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 |
---|---|---|---|
value | java.lang.Object | cdk.support/lookup-entry | :value |
The build-get-context-value-result-builder function updates a GetContextValueResult$Builder instance using the provided configuration. The function takes the GetContextValueResult$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 | |---|---|---|---| | `value` | java.lang.Object | [[cdk.support/lookup-entry]] | `:value` |
(build-intrinsic-builder builder id config)
The build-intrinsic-builder function updates a Intrinsic$Builder instance using the provided configuration. The function takes the Intrinsic$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 |
---|---|---|---|
stackTrace | java.lang.Boolean | cdk.support/lookup-entry | :stack-trace |
typeHint | software.amazon.awscdk.ResolutionTypeHint | cdk.api/resolution-type-hint | :type-hint |
The build-intrinsic-builder function updates a Intrinsic$Builder instance using the provided configuration. The function takes the Intrinsic$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 | |---|---|---|---| | `stackTrace` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stack-trace` | | `typeHint` | software.amazon.awscdk.ResolutionTypeHint | [[cdk.api/resolution-type-hint]] | `:type-hint` |
(build-intrinsic-props-builder builder id config)
The build-intrinsic-props-builder function updates a IntrinsicProps$Builder instance using the provided configuration. The function takes the IntrinsicProps$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 |
---|---|---|---|
stackTrace | java.lang.Boolean | cdk.support/lookup-entry | :stack-trace |
typeHint | software.amazon.awscdk.ResolutionTypeHint | cdk.api/resolution-type-hint | :type-hint |
The build-intrinsic-props-builder function updates a IntrinsicProps$Builder instance using the provided configuration. The function takes the IntrinsicProps$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 | |---|---|---|---| | `stackTrace` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stack-trace` | | `typeHint` | software.amazon.awscdk.ResolutionTypeHint | [[cdk.api/resolution-type-hint]] | `:type-hint` |
(build-lazy-any-value-options-builder builder id config)
The build-lazy-any-value-options-builder function updates a LazyAnyValueOptions$Builder instance using the provided configuration. The function takes the LazyAnyValueOptions$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 |
---|---|---|---|
displayHint | java.lang.String | cdk.support/lookup-entry | :display-hint |
omitEmptyArray | java.lang.Boolean | cdk.support/lookup-entry | :omit-empty-array |
The build-lazy-any-value-options-builder function updates a LazyAnyValueOptions$Builder instance using the provided configuration. The function takes the LazyAnyValueOptions$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 | |---|---|---|---| | `displayHint` | java.lang.String | [[cdk.support/lookup-entry]] | `:display-hint` | | `omitEmptyArray` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:omit-empty-array` |
(build-lazy-list-value-options-builder builder id config)
The build-lazy-list-value-options-builder function updates a LazyListValueOptions$Builder instance using the provided configuration. The function takes the LazyListValueOptions$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 |
---|---|---|---|
displayHint | java.lang.String | cdk.support/lookup-entry | :display-hint |
omitEmpty | java.lang.Boolean | cdk.support/lookup-entry | :omit-empty |
The build-lazy-list-value-options-builder function updates a LazyListValueOptions$Builder instance using the provided configuration. The function takes the LazyListValueOptions$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 | |---|---|---|---| | `displayHint` | java.lang.String | [[cdk.support/lookup-entry]] | `:display-hint` | | `omitEmpty` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:omit-empty` |
(build-lazy-string-value-options-builder builder id config)
The build-lazy-string-value-options-builder function updates a LazyStringValueOptions$Builder instance using the provided configuration. The function takes the LazyStringValueOptions$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 |
---|---|---|---|
displayHint | java.lang.String | cdk.support/lookup-entry | :display-hint |
The build-lazy-string-value-options-builder function updates a LazyStringValueOptions$Builder instance using the provided configuration. The function takes the LazyStringValueOptions$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 | |---|---|---|---| | `displayHint` | java.lang.String | [[cdk.support/lookup-entry]] | `:display-hint` |
(build-nested-stack-builder builder id config)
The build-nested-stack-builder function updates a NestedStack$Builder instance using the provided configuration. The function takes the NestedStack$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 |
notificationArns | java.util.List | cdk.support/lookup-entry | :notification-arns |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-nested-stack-builder function updates a NestedStack$Builder instance using the provided configuration. The function takes the NestedStack$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` | | `notificationArns` | java.util.List | [[cdk.support/lookup-entry]] | `:notification-arns` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-nested-stack-props-builder builder id config)
The build-nested-stack-props-builder function updates a NestedStackProps$Builder instance using the provided configuration. The function takes the NestedStackProps$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 |
notificationArns | java.util.List | cdk.support/lookup-entry | :notification-arns |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-nested-stack-props-builder function updates a NestedStackProps$Builder instance using the provided configuration. The function takes the NestedStackProps$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` | | `notificationArns` | java.util.List | [[cdk.support/lookup-entry]] | `:notification-arns` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-policy-validation-plugin-report-beta1-builder builder id config)
The build-policy-validation-plugin-report-beta1-builder function updates a PolicyValidationPluginReportBeta1$Builder instance using the provided configuration. The function takes the PolicyValidationPluginReportBeta1$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 |
---|---|---|---|
metadata | java.util.Map | cdk.support/lookup-entry | :metadata |
pluginVersion | java.lang.String | cdk.support/lookup-entry | :plugin-version |
success | java.lang.Boolean | cdk.support/lookup-entry | :success |
violations | java.util.List | cdk.support/lookup-entry | :violations |
The build-policy-validation-plugin-report-beta1-builder function updates a PolicyValidationPluginReportBeta1$Builder instance using the provided configuration. The function takes the PolicyValidationPluginReportBeta1$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 | |---|---|---|---| | `metadata` | java.util.Map | [[cdk.support/lookup-entry]] | `:metadata` | | `pluginVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:plugin-version` | | `success` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:success` | | `violations` | java.util.List | [[cdk.support/lookup-entry]] | `:violations` |
(build-policy-violating-resource-beta1-builder builder id config)
The build-policy-violating-resource-beta1-builder function updates a PolicyViolatingResourceBeta1$Builder instance using the provided configuration. The function takes the PolicyViolatingResourceBeta1$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 |
---|---|---|---|
locations | java.util.List | cdk.support/lookup-entry | :locations |
resourceLogicalId | java.lang.String | cdk.support/lookup-entry | :resource-logical-id |
templatePath | java.lang.String | cdk.support/lookup-entry | :template-path |
The build-policy-violating-resource-beta1-builder function updates a PolicyViolatingResourceBeta1$Builder instance using the provided configuration. The function takes the PolicyViolatingResourceBeta1$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 | |---|---|---|---| | `locations` | java.util.List | [[cdk.support/lookup-entry]] | `:locations` | | `resourceLogicalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-logical-id` | | `templatePath` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-path` |
(build-policy-violation-beta1-builder builder id config)
The build-policy-violation-beta1-builder function updates a PolicyViolationBeta1$Builder instance using the provided configuration. The function takes the PolicyViolationBeta1$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 |
fix | java.lang.String | cdk.support/lookup-entry | :fix |
ruleMetadata | java.util.Map | cdk.support/lookup-entry | :rule-metadata |
ruleName | java.lang.String | cdk.support/lookup-entry | :rule-name |
severity | java.lang.String | cdk.support/lookup-entry | :severity |
violatingResources | java.util.List | cdk.support/lookup-entry | :violating-resources |
The build-policy-violation-beta1-builder function updates a PolicyViolationBeta1$Builder instance using the provided configuration. The function takes the PolicyViolationBeta1$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` | | `fix` | java.lang.String | [[cdk.support/lookup-entry]] | `:fix` | | `ruleMetadata` | java.util.Map | [[cdk.support/lookup-entry]] | `:rule-metadata` | | `ruleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-name` | | `severity` | java.lang.String | [[cdk.support/lookup-entry]] | `:severity` | | `violatingResources` | java.util.List | [[cdk.support/lookup-entry]] | `:violating-resources` |
(build-removal-policy-options-builder builder id config)
The build-removal-policy-options-builder function updates a RemovalPolicyOptions$Builder instance using the provided configuration. The function takes the RemovalPolicyOptions$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 |
---|---|---|---|
applyToUpdateReplacePolicy | java.lang.Boolean | cdk.support/lookup-entry | :apply-to-update-replace-policy |
defaultValue | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :default-value |
The build-removal-policy-options-builder function updates a RemovalPolicyOptions$Builder instance using the provided configuration. The function takes the RemovalPolicyOptions$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 | |---|---|---|---| | `applyToUpdateReplacePolicy` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:apply-to-update-replace-policy` | | `defaultValue` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:default-value` |
(build-remove-tag-builder builder id config)
The build-remove-tag-builder function updates a RemoveTag$Builder instance using the provided configuration. The function takes the RemoveTag$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 |
---|---|---|---|
applyToLaunchedInstances | java.lang.Boolean | cdk.support/lookup-entry | :apply-to-launched-instances |
excludeResourceTypes | java.util.List | cdk.support/lookup-entry | :exclude-resource-types |
includeResourceTypes | java.util.List | cdk.support/lookup-entry | :include-resource-types |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
The build-remove-tag-builder function updates a RemoveTag$Builder instance using the provided configuration. The function takes the RemoveTag$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 | |---|---|---|---| | `applyToLaunchedInstances` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:apply-to-launched-instances` | | `excludeResourceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude-resource-types` | | `includeResourceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:include-resource-types` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` |
(build-resolve-change-context-options-builder builder id config)
The build-resolve-change-context-options-builder function updates a ResolveChangeContextOptions$Builder instance using the provided configuration. The function takes the ResolveChangeContextOptions$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 |
---|---|---|---|
allowIntrinsicKeys | java.lang.Boolean | cdk.support/lookup-entry | :allow-intrinsic-keys |
removeEmpty | java.lang.Boolean | cdk.support/lookup-entry | :remove-empty |
The build-resolve-change-context-options-builder function updates a ResolveChangeContextOptions$Builder instance using the provided configuration. The function takes the ResolveChangeContextOptions$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 | |---|---|---|---| | `allowIntrinsicKeys` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-intrinsic-keys` | | `removeEmpty` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:remove-empty` |
(build-resolve-options-builder builder id config)
The build-resolve-options-builder function updates a ResolveOptions$Builder instance using the provided configuration. The function takes the ResolveOptions$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 |
---|---|---|---|
preparing | java.lang.Boolean | cdk.support/lookup-entry | :preparing |
removeEmpty | java.lang.Boolean | cdk.support/lookup-entry | :remove-empty |
resolver | software.amazon.awscdk.ITokenResolver | cdk.support/lookup-entry | :resolver |
scope | software.constructs.IConstruct | cdk.support/lookup-entry | :scope |
The build-resolve-options-builder function updates a ResolveOptions$Builder instance using the provided configuration. The function takes the ResolveOptions$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 | |---|---|---|---| | `preparing` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:preparing` | | `removeEmpty` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:remove-empty` | | `resolver` | software.amazon.awscdk.ITokenResolver | [[cdk.support/lookup-entry]] | `:resolver` | | `scope` | software.constructs.IConstruct | [[cdk.support/lookup-entry]] | `:scope` |
(build-resource-environment-builder builder id config)
The build-resource-environment-builder function updates a ResourceEnvironment$Builder instance using the provided configuration. The function takes the ResourceEnvironment$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 |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
region | java.lang.String | cdk.support/lookup-entry | :region |
The build-resource-environment-builder function updates a ResourceEnvironment$Builder instance using the provided configuration. The function takes the ResourceEnvironment$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 | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` |
(build-resource-props-builder builder id config)
The build-resource-props-builder function updates a ResourceProps$Builder instance using the provided configuration. The function takes the ResourceProps$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 |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
environmentFromArn | java.lang.String | cdk.support/lookup-entry | :environment-from-arn |
physicalName | java.lang.String | cdk.support/lookup-entry | :physical-name |
region | java.lang.String | cdk.support/lookup-entry | :region |
The build-resource-props-builder function updates a ResourceProps$Builder instance using the provided configuration. The function takes the ResourceProps$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 | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `environmentFromArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-from-arn` | | `physicalName` | java.lang.String | [[cdk.support/lookup-entry]] | `:physical-name` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` |
(build-reverse-options-builder builder id config)
The build-reverse-options-builder function updates a ReverseOptions$Builder instance using the provided configuration. The function takes the ReverseOptions$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 |
---|---|---|---|
failConcat | java.lang.Boolean | cdk.support/lookup-entry | :fail-concat |
The build-reverse-options-builder function updates a ReverseOptions$Builder instance using the provided configuration. The function takes the ReverseOptions$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 | |---|---|---|---| | `failConcat` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:fail-concat` |
(build-role-options-builder builder id config)
The build-role-options-builder function updates a RoleOptions$Builder instance using the provided configuration. The function takes the RoleOptions$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 |
---|---|---|---|
assumeRoleArn | java.lang.String | cdk.support/lookup-entry | :assume-role-arn |
assumeRoleExternalId | java.lang.String | cdk.support/lookup-entry | :assume-role-external-id |
The build-role-options-builder function updates a RoleOptions$Builder instance using the provided configuration. The function takes the RoleOptions$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 | |---|---|---|---| | `assumeRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:assume-role-arn` | | `assumeRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:assume-role-external-id` |
(build-secret-value-builder builder id config)
The build-secret-value-builder function updates a SecretValue$Builder instance using the provided configuration. The function takes the SecretValue$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 |
---|---|---|---|
stackTrace | java.lang.Boolean | cdk.support/lookup-entry | :stack-trace |
typeHint | software.amazon.awscdk.ResolutionTypeHint | cdk.api/resolution-type-hint | :type-hint |
The build-secret-value-builder function updates a SecretValue$Builder instance using the provided configuration. The function takes the SecretValue$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 | |---|---|---|---| | `stackTrace` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stack-trace` | | `typeHint` | software.amazon.awscdk.ResolutionTypeHint | [[cdk.api/resolution-type-hint]] | `:type-hint` |
(build-secrets-manager-secret-options-builder builder id config)
The build-secrets-manager-secret-options-builder function updates a SecretsManagerSecretOptions$Builder instance using the provided configuration. The function takes the SecretsManagerSecretOptions$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 |
---|---|---|---|
jsonField | java.lang.String | cdk.support/lookup-entry | :json-field |
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
versionStage | java.lang.String | cdk.support/lookup-entry | :version-stage |
The build-secrets-manager-secret-options-builder function updates a SecretsManagerSecretOptions$Builder instance using the provided configuration. The function takes the SecretsManagerSecretOptions$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 | |---|---|---|---| | `jsonField` | java.lang.String | [[cdk.support/lookup-entry]] | `:json-field` | | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` | | `versionStage` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-stage` |
(build-size-conversion-options-builder builder id config)
The build-size-conversion-options-builder function updates a SizeConversionOptions$Builder instance using the provided configuration. The function takes the SizeConversionOptions$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 |
---|---|---|---|
rounding | software.amazon.awscdk.SizeRoundingBehavior | cdk.api/size-rounding-behavior | :rounding |
The build-size-conversion-options-builder function updates a SizeConversionOptions$Builder instance using the provided configuration. The function takes the SizeConversionOptions$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 | |---|---|---|---| | `rounding` | software.amazon.awscdk.SizeRoundingBehavior | [[cdk.api/size-rounding-behavior]] | `:rounding` |
(build-stack-builder builder id config)
The build-stack-builder function updates a Stack$Builder instance using the provided configuration. The function takes the Stack$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 |
---|---|---|---|
analyticsReporting | java.lang.Boolean | cdk.support/lookup-entry | :analytics-reporting |
crossRegionReferences | java.lang.Boolean | cdk.support/lookup-entry | :cross-region-references |
description | java.lang.String | cdk.support/lookup-entry | :description |
env | software.amazon.awscdk.Environment | cdk.support/lookup-entry | :env |
permissionsBoundary | software.amazon.awscdk.PermissionsBoundary | cdk.support/lookup-entry | :permissions-boundary |
stackName | java.lang.String | cdk.support/lookup-entry | :stack-name |
suppressTemplateIndentation | java.lang.Boolean | cdk.support/lookup-entry | :suppress-template-indentation |
synthesizer | software.amazon.awscdk.IStackSynthesizer | cdk.support/lookup-entry | :synthesizer |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
terminationProtection | java.lang.Boolean | cdk.support/lookup-entry | :termination-protection |
The build-stack-builder function updates a Stack$Builder instance using the provided configuration. The function takes the Stack$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 | |---|---|---|---| | `analyticsReporting` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:analytics-reporting` | | `crossRegionReferences` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cross-region-references` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `env` | software.amazon.awscdk.Environment | [[cdk.support/lookup-entry]] | `:env` | | `permissionsBoundary` | software.amazon.awscdk.PermissionsBoundary | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `stackName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-name` | | `suppressTemplateIndentation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:suppress-template-indentation` | | `synthesizer` | software.amazon.awscdk.IStackSynthesizer | [[cdk.support/lookup-entry]] | `:synthesizer` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` | | `terminationProtection` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:termination-protection` |
(build-stack-props-builder builder id config)
The build-stack-props-builder function updates a StackProps$Builder instance using the provided configuration. The function takes the StackProps$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 |
---|---|---|---|
analyticsReporting | java.lang.Boolean | cdk.support/lookup-entry | :analytics-reporting |
crossRegionReferences | java.lang.Boolean | cdk.support/lookup-entry | :cross-region-references |
description | java.lang.String | cdk.support/lookup-entry | :description |
env | software.amazon.awscdk.Environment | cdk.support/lookup-entry | :env |
permissionsBoundary | software.amazon.awscdk.PermissionsBoundary | cdk.support/lookup-entry | :permissions-boundary |
stackName | java.lang.String | cdk.support/lookup-entry | :stack-name |
suppressTemplateIndentation | java.lang.Boolean | cdk.support/lookup-entry | :suppress-template-indentation |
synthesizer | software.amazon.awscdk.IStackSynthesizer | cdk.support/lookup-entry | :synthesizer |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
terminationProtection | java.lang.Boolean | cdk.support/lookup-entry | :termination-protection |
The build-stack-props-builder function updates a StackProps$Builder instance using the provided configuration. The function takes the StackProps$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 | |---|---|---|---| | `analyticsReporting` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:analytics-reporting` | | `crossRegionReferences` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cross-region-references` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `env` | software.amazon.awscdk.Environment | [[cdk.support/lookup-entry]] | `:env` | | `permissionsBoundary` | software.amazon.awscdk.PermissionsBoundary | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `stackName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-name` | | `suppressTemplateIndentation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:suppress-template-indentation` | | `synthesizer` | software.amazon.awscdk.IStackSynthesizer | [[cdk.support/lookup-entry]] | `:synthesizer` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` | | `terminationProtection` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:termination-protection` |
(build-stage-builder builder id config)
The build-stage-builder function updates a Stage$Builder instance using the provided configuration. The function takes the Stage$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 |
---|---|---|---|
env | software.amazon.awscdk.Environment | cdk.support/lookup-entry | :env |
outdir | java.lang.String | cdk.support/lookup-entry | :outdir |
permissionsBoundary | software.amazon.awscdk.PermissionsBoundary | cdk.support/lookup-entry | :permissions-boundary |
policyValidationBeta1 | java.util.List | cdk.support/lookup-entry | :policy-validation-beta1 |
stageName | java.lang.String | cdk.support/lookup-entry | :stage-name |
The build-stage-builder function updates a Stage$Builder instance using the provided configuration. The function takes the Stage$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 | |---|---|---|---| | `env` | software.amazon.awscdk.Environment | [[cdk.support/lookup-entry]] | `:env` | | `outdir` | java.lang.String | [[cdk.support/lookup-entry]] | `:outdir` | | `permissionsBoundary` | software.amazon.awscdk.PermissionsBoundary | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `policyValidationBeta1` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-validation-beta1` | | `stageName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stage-name` |
(build-stage-props-builder builder id config)
The build-stage-props-builder function updates a StageProps$Builder instance using the provided configuration. The function takes the StageProps$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 |
---|---|---|---|
env | software.amazon.awscdk.Environment | cdk.support/lookup-entry | :env |
outdir | java.lang.String | cdk.support/lookup-entry | :outdir |
permissionsBoundary | software.amazon.awscdk.PermissionsBoundary | cdk.support/lookup-entry | :permissions-boundary |
policyValidationBeta1 | java.util.List | cdk.support/lookup-entry | :policy-validation-beta1 |
stageName | java.lang.String | cdk.support/lookup-entry | :stage-name |
The build-stage-props-builder function updates a StageProps$Builder instance using the provided configuration. The function takes the StageProps$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 | |---|---|---|---| | `env` | software.amazon.awscdk.Environment | [[cdk.support/lookup-entry]] | `:env` | | `outdir` | java.lang.String | [[cdk.support/lookup-entry]] | `:outdir` | | `permissionsBoundary` | software.amazon.awscdk.PermissionsBoundary | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `policyValidationBeta1` | java.util.List | [[cdk.support/lookup-entry]] | `:policy-validation-beta1` | | `stageName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stage-name` |
(build-stage-synthesis-options-builder builder id config)
The build-stage-synthesis-options-builder function updates a StageSynthesisOptions$Builder instance using the provided configuration. The function takes the StageSynthesisOptions$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 |
---|---|---|---|
force | java.lang.Boolean | cdk.support/lookup-entry | :force |
skipValidation | java.lang.Boolean | cdk.support/lookup-entry | :skip-validation |
validateOnSynthesis | java.lang.Boolean | cdk.support/lookup-entry | :validate-on-synthesis |
The build-stage-synthesis-options-builder function updates a StageSynthesisOptions$Builder instance using the provided configuration. The function takes the StageSynthesisOptions$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 | |---|---|---|---| | `force` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:force` | | `skipValidation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:skip-validation` | | `validateOnSynthesis` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:validate-on-synthesis` |
(build-synthesize-stack-artifact-options-builder builder id config)
The build-synthesize-stack-artifact-options-builder function updates a SynthesizeStackArtifactOptions$Builder instance using the provided configuration. The function takes the SynthesizeStackArtifactOptions$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 |
---|---|---|---|
additionalDependencies | java.util.List | cdk.support/lookup-entry | :additional-dependencies |
assumeRoleArn | java.lang.String | cdk.support/lookup-entry | :assume-role-arn |
assumeRoleExternalId | java.lang.String | cdk.support/lookup-entry | :assume-role-external-id |
bootstrapStackVersionSsmParameter | java.lang.String | cdk.support/lookup-entry | :bootstrap-stack-version-ssm-parameter |
cloudFormationExecutionRoleArn | java.lang.String | cdk.support/lookup-entry | :cloud-formation-execution-role-arn |
lookupRole | software.amazon.awscdk.cloudassembly.schema.BootstrapRole | cdk.support/lookup-entry | :lookup-role |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
requiresBootstrapStackVersion | java.lang.Number | cdk.support/lookup-entry | :requires-bootstrap-stack-version |
stackTemplateAssetObjectUrl | java.lang.String | cdk.support/lookup-entry | :stack-template-asset-object-url |
The build-synthesize-stack-artifact-options-builder function updates a SynthesizeStackArtifactOptions$Builder instance using the provided configuration. The function takes the SynthesizeStackArtifactOptions$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 | |---|---|---|---| | `additionalDependencies` | java.util.List | [[cdk.support/lookup-entry]] | `:additional-dependencies` | | `assumeRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:assume-role-arn` | | `assumeRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:assume-role-external-id` | | `bootstrapStackVersionSsmParameter` | java.lang.String | [[cdk.support/lookup-entry]] | `:bootstrap-stack-version-ssm-parameter` | | `cloudFormationExecutionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:cloud-formation-execution-role-arn` | | `lookupRole` | software.amazon.awscdk.cloudassembly.schema.BootstrapRole | [[cdk.support/lookup-entry]] | `:lookup-role` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `requiresBootstrapStackVersion` | java.lang.Number | [[cdk.support/lookup-entry]] | `:requires-bootstrap-stack-version` | | `stackTemplateAssetObjectUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-template-asset-object-url` |
(build-tag-builder builder id config)
The build-tag-builder function updates a Tag$Builder instance using the provided configuration. The function takes the Tag$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 |
---|---|---|---|
applyToLaunchedInstances | java.lang.Boolean | cdk.support/lookup-entry | :apply-to-launched-instances |
excludeResourceTypes | java.util.List | cdk.support/lookup-entry | :exclude-resource-types |
includeResourceTypes | java.util.List | cdk.support/lookup-entry | :include-resource-types |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
The build-tag-builder function updates a Tag$Builder instance using the provided configuration. The function takes the Tag$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 | |---|---|---|---| | `applyToLaunchedInstances` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:apply-to-launched-instances` | | `excludeResourceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude-resource-types` | | `includeResourceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:include-resource-types` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` |
(build-tag-manager-builder builder id config)
The build-tag-manager-builder function updates a TagManager$Builder instance using the provided configuration. The function takes the TagManager$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 |
---|---|---|---|
tagPropertyName | java.lang.String | cdk.support/lookup-entry | :tag-property-name |
The build-tag-manager-builder function updates a TagManager$Builder instance using the provided configuration. The function takes the TagManager$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 | |---|---|---|---| | `tagPropertyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:tag-property-name` |
(build-tag-manager-options-builder builder id config)
The build-tag-manager-options-builder function updates a TagManagerOptions$Builder instance using the provided configuration. The function takes the TagManagerOptions$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 |
---|---|---|---|
tagPropertyName | java.lang.String | cdk.support/lookup-entry | :tag-property-name |
The build-tag-manager-options-builder function updates a TagManagerOptions$Builder instance using the provided configuration. The function takes the TagManagerOptions$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 | |---|---|---|---| | `tagPropertyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:tag-property-name` |
(build-tag-props-builder builder id config)
The build-tag-props-builder function updates a TagProps$Builder instance using the provided configuration. The function takes the TagProps$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 |
---|---|---|---|
applyToLaunchedInstances | java.lang.Boolean | cdk.support/lookup-entry | :apply-to-launched-instances |
excludeResourceTypes | java.util.List | cdk.support/lookup-entry | :exclude-resource-types |
includeResourceTypes | java.util.List | cdk.support/lookup-entry | :include-resource-types |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
The build-tag-props-builder function updates a TagProps$Builder instance using the provided configuration. The function takes the TagProps$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 | |---|---|---|---| | `applyToLaunchedInstances` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:apply-to-launched-instances` | | `excludeResourceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude-resource-types` | | `includeResourceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:include-resource-types` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` |
(build-time-conversion-options-builder builder id config)
The build-time-conversion-options-builder function updates a TimeConversionOptions$Builder instance using the provided configuration. The function takes the TimeConversionOptions$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 |
---|---|---|---|
integral | java.lang.Boolean | cdk.support/lookup-entry | :integral |
The build-time-conversion-options-builder function updates a TimeConversionOptions$Builder instance using the provided configuration. The function takes the TimeConversionOptions$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 | |---|---|---|---| | `integral` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:integral` |
(build-unique-resource-name-options-builder builder id config)
The build-unique-resource-name-options-builder function updates a UniqueResourceNameOptions$Builder instance using the provided configuration. The function takes the UniqueResourceNameOptions$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 |
---|---|---|---|
allowedSpecialCharacters | java.lang.String | cdk.support/lookup-entry | :allowed-special-characters |
maxLength | java.lang.Number | cdk.support/lookup-entry | :max-length |
separator | java.lang.String | cdk.support/lookup-entry | :separator |
The build-unique-resource-name-options-builder function updates a UniqueResourceNameOptions$Builder instance using the provided configuration. The function takes the UniqueResourceNameOptions$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 | |---|---|---|---| | `allowedSpecialCharacters` | java.lang.String | [[cdk.support/lookup-entry]] | `:allowed-special-characters` | | `maxLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-length` | | `separator` | java.lang.String | [[cdk.support/lookup-entry]] | `:separator` |
(bundling-file-access config id item-key)
The bundling-file-access
function data interprets values in the provided config data into a
BundlingFileAccess
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:
BundlingFileAccess
- the value is returned.:bind-mount
- BundlingFileAccess/BIND_MOUNT
is returned:volume-copy
- BundlingFileAccess/VOLUME_COPY
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `bundling-file-access` function data interprets values in the provided config data into a `BundlingFileAccess` 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 `BundlingFileAccess` - the value is returned. * is `:bind-mount` - `BundlingFileAccess/BIND_MOUNT` is returned * is `:volume-copy` - `BundlingFileAccess/VOLUME_COPY` is returned If a value is not found or matches the above criteria, nil is returned.
(bundling-options-builder id config)
Creates a BundlingOptions$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 |
Creates a `BundlingOptions$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 |
(bundling-output config id item-key)
The bundling-output
function data interprets values in the provided config data into a
BundlingOutput
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:
BundlingOutput
- the value is returned.:auto-discover
- BundlingOutput/AUTO_DISCOVER
is returned:single-file
- BundlingOutput/SINGLE_FILE
is returned:archived
- BundlingOutput/ARCHIVED
is returned:not-archived
- BundlingOutput/NOT_ARCHIVED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `bundling-output` function data interprets values in the provided config data into a `BundlingOutput` 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 `BundlingOutput` - the value is returned. * is `:auto-discover` - `BundlingOutput/AUTO_DISCOVER` is returned * is `:single-file` - `BundlingOutput/SINGLE_FILE` is returned * is `:archived` - `BundlingOutput/ARCHIVED` is returned * is `:not-archived` - `BundlingOutput/NOT_ARCHIVED` is returned If a value is not found or matches the above criteria, nil is returned.
(cfn-auto-scaling-replacing-update-builder id config)
Creates a CfnAutoScalingReplacingUpdate$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 |
Creates a `CfnAutoScalingReplacingUpdate$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 |
(cfn-auto-scaling-rolling-update-builder id config)
Creates a CfnAutoScalingRollingUpdate$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 |
Creates a `CfnAutoScalingRollingUpdate$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 |
(cfn-auto-scaling-scheduled-action-builder id config)
Creates a CfnAutoScalingScheduledAction$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 |
Creates a `CfnAutoScalingScheduledAction$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 |
(cfn-capabilities config id item-key)
The cfn-capabilities
function data interprets values in the provided config data into a
CfnCapabilities
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:
CfnCapabilities
- the value is returned.:auto-expand
- CfnCapabilities/AUTO_EXPAND
is returned:none
- CfnCapabilities/NONE
is returned:named-iam
- CfnCapabilities/NAMED_IAM
is returned:anonymous-iam
- CfnCapabilities/ANONYMOUS_IAM
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `cfn-capabilities` function data interprets values in the provided config data into a `CfnCapabilities` 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 `CfnCapabilities` - the value is returned. * is `:auto-expand` - `CfnCapabilities/AUTO_EXPAND` is returned * is `:none` - `CfnCapabilities/NONE` is returned * is `:named-iam` - `CfnCapabilities/NAMED_IAM` is returned * is `:anonymous-iam` - `CfnCapabilities/ANONYMOUS_IAM` is returned If a value is not found or matches the above criteria, nil is returned.
(cfn-code-deploy-blue-green-additional-options-builder id config)
Creates a CfnCodeDeployBlueGreenAdditionalOptions$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 |
Creates a `CfnCodeDeployBlueGreenAdditionalOptions$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 |
(cfn-code-deploy-blue-green-application-builder id config)
Creates a CfnCodeDeployBlueGreenApplication$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 |
Creates a `CfnCodeDeployBlueGreenApplication$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 |
(cfn-code-deploy-blue-green-application-target-builder id config)
Creates a CfnCodeDeployBlueGreenApplicationTarget$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 |
Creates a `CfnCodeDeployBlueGreenApplicationTarget$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 |
(cfn-code-deploy-blue-green-ecs-attributes-builder id config)
Creates a CfnCodeDeployBlueGreenEcsAttributes$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 |
Creates a `CfnCodeDeployBlueGreenEcsAttributes$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 |
(cfn-code-deploy-blue-green-hook-builder scope id config)
Creates a CfnCodeDeployBlueGreenHook$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 `CfnCodeDeployBlueGreenHook$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 |
(cfn-code-deploy-blue-green-hook-props-builder id config)
Creates a CfnCodeDeployBlueGreenHookProps$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 |
Creates a `CfnCodeDeployBlueGreenHookProps$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 |
(cfn-code-deploy-blue-green-lifecycle-event-hooks-builder id config)
Creates a CfnCodeDeployBlueGreenLifecycleEventHooks$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 |
Creates a `CfnCodeDeployBlueGreenLifecycleEventHooks$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 |
(cfn-code-deploy-lambda-alias-update-builder id config)
Creates a CfnCodeDeployLambdaAliasUpdate$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 |
Creates a `CfnCodeDeployLambdaAliasUpdate$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 |
(cfn-condition-builder scope id config)
Creates a CfnCondition$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 `CfnCondition$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 |
(cfn-condition-props-builder id config)
Creates a CfnConditionProps$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 |
Creates a `CfnConditionProps$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 |
(cfn-creation-policy-builder id config)
Creates a CfnCreationPolicy$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 |
Creates a `CfnCreationPolicy$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 |
(cfn-custom-resource-builder scope id config)
Creates a CfnCustomResource$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 `CfnCustomResource$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 |
(cfn-custom-resource-props-builder id config)
Creates a CfnCustomResourceProps$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 |
Creates a `CfnCustomResourceProps$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 |
(cfn-deletion-policy config id item-key)
The cfn-deletion-policy
function data interprets values in the provided config data into a
CfnDeletionPolicy
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:
CfnDeletionPolicy
- the value is returned.:delete
- CfnDeletionPolicy/DELETE
is returned:snapshot
- CfnDeletionPolicy/SNAPSHOT
is returned:retain
- CfnDeletionPolicy/RETAIN
is returned:retain-except-on-create
- CfnDeletionPolicy/RETAIN_EXCEPT_ON_CREATE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `cfn-deletion-policy` function data interprets values in the provided config data into a `CfnDeletionPolicy` 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 `CfnDeletionPolicy` - the value is returned. * is `:delete` - `CfnDeletionPolicy/DELETE` is returned * is `:snapshot` - `CfnDeletionPolicy/SNAPSHOT` is returned * is `:retain` - `CfnDeletionPolicy/RETAIN` is returned * is `:retain-except-on-create` - `CfnDeletionPolicy/RETAIN_EXCEPT_ON_CREATE` is returned If a value is not found or matches the above criteria, nil is returned.
(cfn-dynamic-reference-props-builder id config)
Creates a CfnDynamicReferenceProps$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 |
Creates a `CfnDynamicReferenceProps$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 |
(cfn-dynamic-reference-service config id item-key)
The cfn-dynamic-reference-service
function data interprets values in the provided config data into a
CfnDynamicReferenceService
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:
CfnDynamicReferenceService
- the value is returned.:secrets-manager
- CfnDynamicReferenceService/SECRETS_MANAGER
is returned:ssm
- CfnDynamicReferenceService/SSM
is returned:ssm-secure
- CfnDynamicReferenceService/SSM_SECURE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `cfn-dynamic-reference-service` function data interprets values in the provided config data into a `CfnDynamicReferenceService` 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 `CfnDynamicReferenceService` - the value is returned. * is `:secrets-manager` - `CfnDynamicReferenceService/SECRETS_MANAGER` is returned * is `:ssm` - `CfnDynamicReferenceService/SSM` is returned * is `:ssm-secure` - `CfnDynamicReferenceService/SSM_SECURE` is returned If a value is not found or matches the above criteria, nil is returned.
(cfn-hook-builder scope id config)
Creates a CfnHook$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 `CfnHook$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 |
(cfn-hook-default-version-builder scope id config)
Creates a CfnHookDefaultVersion$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 `CfnHookDefaultVersion$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 |
(cfn-hook-default-version-props-builder id config)
Creates a CfnHookDefaultVersionProps$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 |
Creates a `CfnHookDefaultVersionProps$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 |
(cfn-hook-props-builder id config)
Creates a CfnHookProps$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 |
Creates a `CfnHookProps$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 |
(cfn-hook-type-config-builder scope id config)
Creates a CfnHookTypeConfig$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 `CfnHookTypeConfig$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 |
(cfn-hook-type-config-props-builder id config)
Creates a CfnHookTypeConfigProps$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 |
Creates a `CfnHookTypeConfigProps$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 |
(cfn-hook-version-builder scope id config)
Creates a CfnHookVersion$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 `CfnHookVersion$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 |
(cfn-hook-version-logging-config-property-builder id config)
Creates a CfnHookVersion$LoggingConfigProperty$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 |
Creates a `CfnHookVersion$LoggingConfigProperty$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 |
(cfn-hook-version-props-builder id config)
Creates a CfnHookVersionProps$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 |
Creates a `CfnHookVersionProps$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 |
(cfn-json-builder scope id config)
Creates a CfnJson$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 `CfnJson$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 |
(cfn-json-props-builder id config)
Creates a CfnJsonProps$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 |
Creates a `CfnJsonProps$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 |
(cfn-macro-builder scope id config)
Creates a CfnMacro$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 `CfnMacro$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 |
(cfn-macro-props-builder id config)
Creates a CfnMacroProps$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 |
Creates a `CfnMacroProps$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 |
(cfn-mapping-builder scope id config)
Creates a CfnMapping$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 `CfnMapping$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 |
(cfn-mapping-props-builder id config)
Creates a CfnMappingProps$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 |
Creates a `CfnMappingProps$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 |
(cfn-module-default-version-builder scope id config)
Creates a CfnModuleDefaultVersion$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 `CfnModuleDefaultVersion$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 |
(cfn-module-default-version-props-builder id config)
Creates a CfnModuleDefaultVersionProps$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 |
Creates a `CfnModuleDefaultVersionProps$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 |
(cfn-module-version-builder scope id config)
Creates a CfnModuleVersion$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 `CfnModuleVersion$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 |
(cfn-module-version-props-builder id config)
Creates a CfnModuleVersionProps$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 |
Creates a `CfnModuleVersionProps$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 |
(cfn-output-builder scope id config)
Creates a CfnOutput$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 `CfnOutput$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 |
(cfn-output-props-builder id config)
Creates a CfnOutputProps$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 |
Creates a `CfnOutputProps$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 |
(cfn-parameter-builder scope id config)
Creates a CfnParameter$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 `CfnParameter$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 |
(cfn-parameter-props-builder id config)
Creates a CfnParameterProps$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 |
Creates a `CfnParameterProps$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 |
(cfn-public-type-version-builder scope id config)
Creates a CfnPublicTypeVersion$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 `CfnPublicTypeVersion$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 |
(cfn-public-type-version-props-builder id config)
Creates a CfnPublicTypeVersionProps$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 |
Creates a `CfnPublicTypeVersionProps$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 |
(cfn-publisher-builder scope id config)
Creates a CfnPublisher$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 `CfnPublisher$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 |
(cfn-publisher-props-builder id config)
Creates a CfnPublisherProps$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 |
Creates a `CfnPublisherProps$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 |
(cfn-resource-auto-scaling-creation-policy-builder id config)
Creates a CfnResourceAutoScalingCreationPolicy$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 |
Creates a `CfnResourceAutoScalingCreationPolicy$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 |
(cfn-resource-builder scope id config)
Creates a CfnResource$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 `CfnResource$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 |
(cfn-resource-default-version-builder scope id config)
Creates a CfnResourceDefaultVersion$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 `CfnResourceDefaultVersion$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 |
(cfn-resource-default-version-props-builder id config)
Creates a CfnResourceDefaultVersionProps$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 |
Creates a `CfnResourceDefaultVersionProps$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 |
(cfn-resource-props-builder id config)
Creates a CfnResourceProps$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 |
Creates a `CfnResourceProps$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 |
(cfn-resource-signal-builder id config)
Creates a CfnResourceSignal$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 |
Creates a `CfnResourceSignal$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 |
(cfn-resource-version-builder scope id config)
Creates a CfnResourceVersion$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 `CfnResourceVersion$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 |
(cfn-resource-version-logging-config-property-builder id config)
Creates a CfnResourceVersion$LoggingConfigProperty$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 |
Creates a `CfnResourceVersion$LoggingConfigProperty$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 |
(cfn-resource-version-props-builder id config)
Creates a CfnResourceVersionProps$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 |
Creates a `CfnResourceVersionProps$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 |
(cfn-rule-assertion-builder id config)
Creates a CfnRuleAssertion$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 |
Creates a `CfnRuleAssertion$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 |
(cfn-rule-builder scope id config)
Creates a CfnRule$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 `CfnRule$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 |
(cfn-rule-props-builder id config)
Creates a CfnRuleProps$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 |
Creates a `CfnRuleProps$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 |
(cfn-stack-builder scope id config)
Creates a CfnStack$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 `CfnStack$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 |
(cfn-stack-output-property-builder id config)
Creates a CfnStack$OutputProperty$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 |
Creates a `CfnStack$OutputProperty$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 |
(cfn-stack-props-builder id config)
Creates a CfnStackProps$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 |
Creates a `CfnStackProps$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 |
(cfn-stack-set-auto-deployment-property-builder id config)
Creates a CfnStackSet$AutoDeploymentProperty$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 |
Creates a `CfnStackSet$AutoDeploymentProperty$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 |
(cfn-stack-set-builder scope id config)
Creates a CfnStackSet$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 `CfnStackSet$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 |
(cfn-stack-set-deployment-targets-property-builder id config)
Creates a CfnStackSet$DeploymentTargetsProperty$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 |
Creates a `CfnStackSet$DeploymentTargetsProperty$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 |
(cfn-stack-set-managed-execution-property-builder id config)
Creates a CfnStackSet$ManagedExecutionProperty$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 |
Creates a `CfnStackSet$ManagedExecutionProperty$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 |
(cfn-stack-set-operation-preferences-property-builder id config)
Creates a CfnStackSet$OperationPreferencesProperty$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 |
Creates a `CfnStackSet$OperationPreferencesProperty$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 |
(cfn-stack-set-parameter-property-builder id config)
Creates a CfnStackSet$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 |
Creates a `CfnStackSet$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 |
(cfn-stack-set-props-builder id config)
Creates a CfnStackSetProps$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 |
Creates a `CfnStackSetProps$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 |
(cfn-stack-set-stack-instances-property-builder id config)
Creates a CfnStackSet$StackInstancesProperty$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 |
Creates a `CfnStackSet$StackInstancesProperty$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 |
(cfn-tag-builder id config)
Creates a CfnTag$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 |
Creates a `CfnTag$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 |
(cfn-traffic-route-builder id config)
Creates a CfnTrafficRoute$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 |
Creates a `CfnTrafficRoute$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 |
(cfn-traffic-routing-builder id config)
Creates a CfnTrafficRouting$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 |
Creates a `CfnTrafficRouting$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 |
(cfn-traffic-routing-config-builder id config)
Creates a CfnTrafficRoutingConfig$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 |
Creates a `CfnTrafficRoutingConfig$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 |
(cfn-traffic-routing-time-based-canary-builder id config)
Creates a CfnTrafficRoutingTimeBasedCanary$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 |
Creates a `CfnTrafficRoutingTimeBasedCanary$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 |
(cfn-traffic-routing-time-based-linear-builder id config)
Creates a CfnTrafficRoutingTimeBasedLinear$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 |
Creates a `CfnTrafficRoutingTimeBasedLinear$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 |
(cfn-traffic-routing-type config id item-key)
The cfn-traffic-routing-type
function data interprets values in the provided config data into a
CfnTrafficRoutingType
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:
CfnTrafficRoutingType
- the value is returned.:time-based-linear
- CfnTrafficRoutingType/TIME_BASED_LINEAR
is returned:all-at-once
- CfnTrafficRoutingType/ALL_AT_ONCE
is returned:time-based-canary
- CfnTrafficRoutingType/TIME_BASED_CANARY
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `cfn-traffic-routing-type` function data interprets values in the provided config data into a `CfnTrafficRoutingType` 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 `CfnTrafficRoutingType` - the value is returned. * is `:time-based-linear` - `CfnTrafficRoutingType/TIME_BASED_LINEAR` is returned * is `:all-at-once` - `CfnTrafficRoutingType/ALL_AT_ONCE` is returned * is `:time-based-canary` - `CfnTrafficRoutingType/TIME_BASED_CANARY` is returned If a value is not found or matches the above criteria, nil is returned.
(cfn-type-activation-builder scope id config)
Creates a CfnTypeActivation$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 `CfnTypeActivation$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 |
(cfn-type-activation-logging-config-property-builder id config)
Creates a CfnTypeActivation$LoggingConfigProperty$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 |
Creates a `CfnTypeActivation$LoggingConfigProperty$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 |
(cfn-type-activation-props-builder id config)
Creates a CfnTypeActivationProps$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 |
Creates a `CfnTypeActivationProps$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 |
(cfn-update-policy-builder id config)
Creates a CfnUpdatePolicy$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 |
Creates a `CfnUpdatePolicy$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 |
(cfn-wait-condition-builder scope id config)
Creates a CfnWaitCondition$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 `CfnWaitCondition$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 |
(cfn-wait-condition-handle-builder scope id)
Creates a CfnWaitConditionHandle$Builder
instance using a parent scope and ID, 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. |
Creates a `CfnWaitConditionHandle$Builder` instance using a parent scope and ID, 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. |
(cfn-wait-condition-handle-props-builder)
Creates a CfnWaitConditionHandleProps$Builder
instance using a no-argument construct,then builds it.
Creates a `CfnWaitConditionHandleProps$Builder` instance using a no-argument construct,then builds it.
(cfn-wait-condition-props-builder id config)
Creates a CfnWaitConditionProps$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 |
Creates a `CfnWaitConditionProps$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 |
(cli-credentials-stack-synthesizer-builder id config)
Creates a CliCredentialsStackSynthesizer$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 |
Creates a `CliCredentialsStackSynthesizer$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 |
(cli-credentials-stack-synthesizer-props-builder id config)
Creates a CliCredentialsStackSynthesizerProps$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 |
Creates a `CliCredentialsStackSynthesizerProps$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 |
(copy-options-builder id config)
Creates a CopyOptions$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 |
Creates a `CopyOptions$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 |
(custom-resource-builder scope id config)
Creates a CustomResource$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 `CustomResource$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 |
(custom-resource-props-builder id config)
Creates a CustomResourceProps$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 |
Creates a `CustomResourceProps$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 |
(custom-resource-provider-base-props-builder id config)
Creates a CustomResourceProviderBaseProps$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 |
Creates a `CustomResourceProviderBaseProps$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 |
(custom-resource-provider-options-builder id config)
Creates a CustomResourceProviderOptions$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 |
Creates a `CustomResourceProviderOptions$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 |
(custom-resource-provider-props-builder id config)
Creates a CustomResourceProviderProps$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 |
Creates a `CustomResourceProviderProps$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 |
(custom-resource-provider-runtime config id item-key)
The custom-resource-provider-runtime
function data interprets values in the provided config data into a
CustomResourceProviderRuntime
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:
CustomResourceProviderRuntime
- the value is returned.:nodejs-14-x
- CustomResourceProviderRuntime/NODEJS_14_X
is returned:nodejs-12-x
- CustomResourceProviderRuntime/NODEJS_12_X
is returned:nodejs-16-x
- CustomResourceProviderRuntime/NODEJS_16_X
is returned:nodejs-18-x
- CustomResourceProviderRuntime/NODEJS_18_X
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `custom-resource-provider-runtime` function data interprets values in the provided config data into a `CustomResourceProviderRuntime` 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 `CustomResourceProviderRuntime` - the value is returned. * is `:nodejs-14-x` - `CustomResourceProviderRuntime/NODEJS_14_X` is returned * is `:nodejs-12-x` - `CustomResourceProviderRuntime/NODEJS_12_X` is returned * is `:nodejs-16-x` - `CustomResourceProviderRuntime/NODEJS_16_X` is returned * is `:nodejs-18-x` - `CustomResourceProviderRuntime/NODEJS_18_X` is returned If a value is not found or matches the above criteria, nil is returned.
(default-stack-synthesizer-builder id config)
Creates a DefaultStackSynthesizer$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 |
Creates a `DefaultStackSynthesizer$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 |
(default-stack-synthesizer-props-builder id config)
Creates a DefaultStackSynthesizerProps$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 |
Creates a `DefaultStackSynthesizerProps$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 |
(docker-build-options-builder id config)
Creates a DockerBuildOptions$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 |
Creates a `DockerBuildOptions$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 |
(docker-cache-option-builder id config)
Creates a DockerCacheOption$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 |
Creates a `DockerCacheOption$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 |
(docker-image-asset-location-builder id config)
Creates a DockerImageAssetLocation$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 |
Creates a `DockerImageAssetLocation$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 |
(docker-image-asset-source-builder id config)
Creates a DockerImageAssetSource$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 |
Creates a `DockerImageAssetSource$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 |
(docker-run-options-builder id config)
Creates a DockerRunOptions$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 |
Creates a `DockerRunOptions$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 |
(docker-volume-builder id config)
Creates a DockerVolume$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 |
Creates a `DockerVolume$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 |
(docker-volume-consistency config id item-key)
The docker-volume-consistency
function data interprets values in the provided config data into a
DockerVolumeConsistency
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:
DockerVolumeConsistency
- the value is returned.:consistent
- DockerVolumeConsistency/CONSISTENT
is returned:delegated
- DockerVolumeConsistency/DELEGATED
is returned:cached
- DockerVolumeConsistency/CACHED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `docker-volume-consistency` function data interprets values in the provided config data into a `DockerVolumeConsistency` 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 `DockerVolumeConsistency` - the value is returned. * is `:consistent` - `DockerVolumeConsistency/CONSISTENT` is returned * is `:delegated` - `DockerVolumeConsistency/DELEGATED` is returned * is `:cached` - `DockerVolumeConsistency/CACHED` is returned If a value is not found or matches the above criteria, nil is returned.
(encoding-options-builder id config)
Creates a EncodingOptions$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 |
Creates a `EncodingOptions$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 |
(environment-builder id config)
Creates a Environment$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 |
Creates a `Environment$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 |
(export-value-options-builder id config)
Creates a ExportValueOptions$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 |
Creates a `ExportValueOptions$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 |
(file-asset-location-builder id config)
Creates a FileAssetLocation$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 |
Creates a `FileAssetLocation$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 |
(file-asset-packaging config id item-key)
The file-asset-packaging
function data interprets values in the provided config data into a
FileAssetPackaging
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:
FileAssetPackaging
- the value is returned.:zip-directory
- FileAssetPackaging/ZIP_DIRECTORY
is returned:file
- FileAssetPackaging/FILE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `file-asset-packaging` function data interprets values in the provided config data into a `FileAssetPackaging` 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 `FileAssetPackaging` - the value is returned. * is `:zip-directory` - `FileAssetPackaging/ZIP_DIRECTORY` is returned * is `:file` - `FileAssetPackaging/FILE` is returned If a value is not found or matches the above criteria, nil is returned.
(file-asset-source-builder id config)
Creates a FileAssetSource$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 |
Creates a `FileAssetSource$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 |
(file-copy-options-builder id config)
Creates a FileCopyOptions$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 |
Creates a `FileCopyOptions$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 |
(file-fingerprint-options-builder id config)
Creates a FileFingerprintOptions$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 |
Creates a `FileFingerprintOptions$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 |
(fingerprint-options-builder id config)
Creates a FingerprintOptions$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 |
Creates a `FingerprintOptions$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 |
(get-context-key-options-builder id config)
Creates a GetContextKeyOptions$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 |
Creates a `GetContextKeyOptions$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 |
(get-context-key-result-builder id config)
Creates a GetContextKeyResult$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 |
Creates a `GetContextKeyResult$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 |
(get-context-value-options-builder id config)
Creates a GetContextValueOptions$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 |
Creates a `GetContextValueOptions$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 |
(get-context-value-result-builder id config)
Creates a GetContextValueResult$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 |
Creates a `GetContextValueResult$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 |
(ignore-mode config id item-key)
The ignore-mode
function data interprets values in the provided config data into a
IgnoreMode
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:
IgnoreMode
- the value is returned.:docker
- IgnoreMode/DOCKER
is returned:git
- IgnoreMode/GIT
is returned:glob
- IgnoreMode/GLOB
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `ignore-mode` function data interprets values in the provided config data into a `IgnoreMode` 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 `IgnoreMode` - the value is returned. * is `:docker` - `IgnoreMode/DOCKER` is returned * is `:git` - `IgnoreMode/GIT` is returned * is `:glob` - `IgnoreMode/GLOB` is returned If a value is not found or matches the above criteria, nil is returned.
(intrinsic-builder value id config)
Creates a Intrinsic$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.Object] | Argument | DataType | Description | |---|---|---| | value | java.lang.Object | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `Intrinsic$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.Object]___ | Argument | DataType | Description | |---|---|---| | value | java.lang.Object | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(intrinsic-props-builder id config)
Creates a IntrinsicProps$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 |
Creates a `IntrinsicProps$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 |
(lazy-any-value-options-builder id config)
Creates a LazyAnyValueOptions$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 |
Creates a `LazyAnyValueOptions$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 |
(lazy-list-value-options-builder id config)
Creates a LazyListValueOptions$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 |
Creates a `LazyListValueOptions$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 |
(lazy-string-value-options-builder id config)
Creates a LazyStringValueOptions$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 |
Creates a `LazyStringValueOptions$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 |
(nested-stack-builder scope id config)
Creates a NestedStack$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 `NestedStack$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 |
(nested-stack-props-builder id config)
Creates a NestedStackProps$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 |
Creates a `NestedStackProps$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 |
(permissions-boundary-bind-options-builder)
Creates a PermissionsBoundaryBindOptions$Builder
instance using a no-argument construct,then builds it.
Creates a `PermissionsBoundaryBindOptions$Builder` instance using a no-argument construct,then builds it.
(policy-validation-plugin-report-beta1-builder id config)
Creates a PolicyValidationPluginReportBeta1$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 |
Creates a `PolicyValidationPluginReportBeta1$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 |
(policy-validation-report-status-beta1 config id item-key)
The policy-validation-report-status-beta1
function data interprets values in the provided config data into a
PolicyValidationReportStatusBeta1
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:
PolicyValidationReportStatusBeta1
- the value is returned.:success
- PolicyValidationReportStatusBeta1/SUCCESS
is returned:failure
- PolicyValidationReportStatusBeta1/FAILURE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `policy-validation-report-status-beta1` function data interprets values in the provided config data into a `PolicyValidationReportStatusBeta1` 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 `PolicyValidationReportStatusBeta1` - the value is returned. * is `:success` - `PolicyValidationReportStatusBeta1/SUCCESS` is returned * is `:failure` - `PolicyValidationReportStatusBeta1/FAILURE` is returned If a value is not found or matches the above criteria, nil is returned.
(policy-violating-resource-beta1-builder id config)
Creates a PolicyViolatingResourceBeta1$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 |
Creates a `PolicyViolatingResourceBeta1$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 |
(policy-violation-beta1-builder id config)
Creates a PolicyViolationBeta1$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 |
Creates a `PolicyViolationBeta1$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 |
(removal-policy config id item-key)
The removal-policy
function data interprets values in the provided config data into a
RemovalPolicy
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:
RemovalPolicy
- the value is returned.:snapshot
- RemovalPolicy/SNAPSHOT
is returned:retain-on-update-or-delete
- RemovalPolicy/RETAIN_ON_UPDATE_OR_DELETE
is returned:destroy
- RemovalPolicy/DESTROY
is returned:retain
- RemovalPolicy/RETAIN
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `removal-policy` function data interprets values in the provided config data into a `RemovalPolicy` 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 `RemovalPolicy` - the value is returned. * is `:snapshot` - `RemovalPolicy/SNAPSHOT` is returned * is `:retain-on-update-or-delete` - `RemovalPolicy/RETAIN_ON_UPDATE_OR_DELETE` is returned * is `:destroy` - `RemovalPolicy/DESTROY` is returned * is `:retain` - `RemovalPolicy/RETAIN` is returned If a value is not found or matches the above criteria, nil is returned.
(removal-policy-options-builder id config)
Creates a RemovalPolicyOptions$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 |
Creates a `RemovalPolicyOptions$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 |
(remove-tag-builder tag-key id config)
Creates a RemoveTag$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---| | tag-key | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `RemoveTag$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | tag-key | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(resolution-type-hint config id item-key)
The resolution-type-hint
function data interprets values in the provided config data into a
ResolutionTypeHint
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:
ResolutionTypeHint
- the value is returned.:string
- ResolutionTypeHint/STRING
is returned:number
- ResolutionTypeHint/NUMBER
is returned:string-list
- ResolutionTypeHint/STRING_LIST
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `resolution-type-hint` function data interprets values in the provided config data into a `ResolutionTypeHint` 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 `ResolutionTypeHint` - the value is returned. * is `:string` - `ResolutionTypeHint/STRING` is returned * is `:number` - `ResolutionTypeHint/NUMBER` is returned * is `:string-list` - `ResolutionTypeHint/STRING_LIST` is returned If a value is not found or matches the above criteria, nil is returned.
(resolve-change-context-options-builder id config)
Creates a ResolveChangeContextOptions$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 |
Creates a `ResolveChangeContextOptions$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 |
(resolve-options-builder id config)
Creates a ResolveOptions$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 |
Creates a `ResolveOptions$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 |
(resource-environment-builder id config)
Creates a ResourceEnvironment$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 |
Creates a `ResourceEnvironment$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 |
(resource-props-builder id config)
Creates a ResourceProps$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 |
Creates a `ResourceProps$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 |
(reverse-options-builder id config)
Creates a ReverseOptions$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 |
Creates a `ReverseOptions$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 |
(role-options-builder id config)
Creates a RoleOptions$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 |
Creates a `RoleOptions$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 |
(secret-value-builder protected-value id config)
Creates a SecretValue$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.Object] | Argument | DataType | Description | |---|---|---| | protected-value | java.lang.Object | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `SecretValue$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.Object]___ | Argument | DataType | Description | |---|---|---| | protected-value | java.lang.Object | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(secrets-manager-secret-options-builder id config)
Creates a SecretsManagerSecretOptions$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 |
Creates a `SecretsManagerSecretOptions$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 |
(size-conversion-options-builder id config)
Creates a SizeConversionOptions$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 |
Creates a `SizeConversionOptions$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 |
(size-rounding-behavior config id item-key)
The size-rounding-behavior
function data interprets values in the provided config data into a
SizeRoundingBehavior
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:
SizeRoundingBehavior
- the value is returned.:floor
- SizeRoundingBehavior/FLOOR
is returned:fail
- SizeRoundingBehavior/FAIL
is returned:none
- SizeRoundingBehavior/NONE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `size-rounding-behavior` function data interprets values in the provided config data into a `SizeRoundingBehavior` 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 `SizeRoundingBehavior` - the value is returned. * is `:floor` - `SizeRoundingBehavior/FLOOR` is returned * is `:fail` - `SizeRoundingBehavior/FAIL` is returned * is `:none` - `SizeRoundingBehavior/NONE` is returned If a value is not found or matches the above criteria, nil is returned.
(stack-builder id config)
(stack-builder scope id config)
Creates a Stack$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[] | Argument | DataType | Description | |---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Create Form: _[software.constructs.Construct java.lang.String] | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `Stack$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[]___ | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration | __Create Form:__ ____[software.constructs.Construct java.lang.String]___ | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(stack-props-builder id config)
Creates a StackProps$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 |
Creates a `StackProps$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 |
(stage-builder scope id config)
Creates a Stage$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 `Stage$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 |
(stage-props-builder id config)
Creates a StageProps$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 |
Creates a `StageProps$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 |
(stage-synthesis-options-builder id config)
Creates a StageSynthesisOptions$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 |
Creates a `StageSynthesisOptions$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 |
(symlink-follow-mode config id item-key)
The symlink-follow-mode
function data interprets values in the provided config data into a
SymlinkFollowMode
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:
SymlinkFollowMode
- the value is returned.:never
- SymlinkFollowMode/NEVER
is returned:block-external
- SymlinkFollowMode/BLOCK_EXTERNAL
is returned:always
- SymlinkFollowMode/ALWAYS
is returned:external
- SymlinkFollowMode/EXTERNAL
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `symlink-follow-mode` function data interprets values in the provided config data into a `SymlinkFollowMode` 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 `SymlinkFollowMode` - the value is returned. * is `:never` - `SymlinkFollowMode/NEVER` is returned * is `:block-external` - `SymlinkFollowMode/BLOCK_EXTERNAL` is returned * is `:always` - `SymlinkFollowMode/ALWAYS` is returned * is `:external` - `SymlinkFollowMode/EXTERNAL` is returned If a value is not found or matches the above criteria, nil is returned.
(synthesize-stack-artifact-options-builder id config)
Creates a SynthesizeStackArtifactOptions$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 |
Creates a `SynthesizeStackArtifactOptions$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 |
(tag-builder tag-key tag-value id config)
Creates a Tag$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String java.lang.String] | Argument | DataType | Description | |---|---|---| | tag-key | java.lang.String | | | tag-value | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `Tag$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String java.lang.String]___ | Argument | DataType | Description | |---|---|---| | tag-key | java.lang.String | | | tag-value | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(tag-manager-builder tag-type resource-manager id config)
(tag-manager-builder tag-type resource-manager initial-tags id config)
Creates a TagManager$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[software.amazon.awscdk.TagType java.lang.String] | Argument | DataType | Description | |---|---|---| | tag-type | software.amazon.awscdk.TagType | | | resource-manager | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Create Form: _[software.amazon.awscdk.TagType java.lang.String java.lang.Object] | Argument | DataType | Description | |---|---|---| | tag-type | software.amazon.awscdk.TagType | | | resource-manager | java.lang.String | | | initial-tags | java.lang.Object | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `TagManager$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[software.amazon.awscdk.TagType java.lang.String]___ | Argument | DataType | Description | |---|---|---| | tag-type | software.amazon.awscdk.TagType | | | resource-manager | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration | __Create Form:__ ____[software.amazon.awscdk.TagType java.lang.String java.lang.Object]___ | Argument | DataType | Description | |---|---|---| | tag-type | software.amazon.awscdk.TagType | | | resource-manager | java.lang.String | | | initial-tags | java.lang.Object | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(tag-manager-options-builder id config)
Creates a TagManagerOptions$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 |
Creates a `TagManagerOptions$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 |
(tag-props-builder id config)
Creates a TagProps$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 |
Creates a `TagProps$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 |
(tag-type config id item-key)
The tag-type
function data interprets values in the provided config data into a
TagType
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:
TagType
- the value is returned.:map
- TagType/MAP
is returned:standard
- TagType/STANDARD
is returned:not-taggable
- TagType/NOT_TAGGABLE
is returned:key-value
- TagType/KEY_VALUE
is returned:autoscaling-group
- TagType/AUTOSCALING_GROUP
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `tag-type` function data interprets values in the provided config data into a `TagType` 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 `TagType` - the value is returned. * is `:map` - `TagType/MAP` is returned * is `:standard` - `TagType/STANDARD` is returned * is `:not-taggable` - `TagType/NOT_TAGGABLE` is returned * is `:key-value` - `TagType/KEY_VALUE` is returned * is `:autoscaling-group` - `TagType/AUTOSCALING_GROUP` is returned If a value is not found or matches the above criteria, nil is returned.
(time-conversion-options-builder id config)
Creates a TimeConversionOptions$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 |
Creates a `TimeConversionOptions$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 |
(unique-resource-name-options-builder id config)
Creates a UniqueResourceNameOptions$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 |
Creates a `UniqueResourceNameOptions$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 |
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close