Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.lambda package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.lambda package.
(adot-instrumentation-config-builder id config)
Creates a AdotInstrumentationConfig$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 `AdotInstrumentationConfig$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 |
(adot-lambda-exec-wrapper config id item-key)
The adot-lambda-exec-wrapper
function data interprets values in the provided config data into a
AdotLambdaExecWrapper
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:
AdotLambdaExecWrapper
- the value is returned.:regular-handler
- AdotLambdaExecWrapper/REGULAR_HANDLER
is returned:stream-handler
- AdotLambdaExecWrapper/STREAM_HANDLER
is returned:proxy-handler
- AdotLambdaExecWrapper/PROXY_HANDLER
is returned:instrument-handler
- AdotLambdaExecWrapper/INSTRUMENT_HANDLER
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `adot-lambda-exec-wrapper` function data interprets values in the provided config data into a `AdotLambdaExecWrapper` 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 `AdotLambdaExecWrapper` - the value is returned. * is `:regular-handler` - `AdotLambdaExecWrapper/REGULAR_HANDLER` is returned * is `:stream-handler` - `AdotLambdaExecWrapper/STREAM_HANDLER` is returned * is `:proxy-handler` - `AdotLambdaExecWrapper/PROXY_HANDLER` is returned * is `:instrument-handler` - `AdotLambdaExecWrapper/INSTRUMENT_HANDLER` is returned If a value is not found or matches the above criteria, nil is returned.
(alias-attributes-builder id config)
Creates a AliasAttributes$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 `AliasAttributes$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 |
(alias-builder scope id config)
Creates a Alias$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 `Alias$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 |
(alias-options-builder id config)
Creates a AliasOptions$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 `AliasOptions$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 |
(alias-props-builder id config)
Creates a AliasProps$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 `AliasProps$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 |
(application-log-level config id item-key)
The application-log-level
function data interprets values in the provided config data into a
ApplicationLogLevel
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:
ApplicationLogLevel
- the value is returned.:trace
- ApplicationLogLevel/TRACE
is returned:debug
- ApplicationLogLevel/DEBUG
is returned:info
- ApplicationLogLevel/INFO
is returned:fatal
- ApplicationLogLevel/FATAL
is returned:error
- ApplicationLogLevel/ERROR
is returned:warn
- ApplicationLogLevel/WARN
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `application-log-level` function data interprets values in the provided config data into a `ApplicationLogLevel` 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 `ApplicationLogLevel` - the value is returned. * is `:trace` - `ApplicationLogLevel/TRACE` is returned * is `:debug` - `ApplicationLogLevel/DEBUG` is returned * is `:info` - `ApplicationLogLevel/INFO` is returned * is `:fatal` - `ApplicationLogLevel/FATAL` is returned * is `:error` - `ApplicationLogLevel/ERROR` is returned * is `:warn` - `ApplicationLogLevel/WARN` is returned If a value is not found or matches the above criteria, nil is returned.
(asset-code-builder path id config)
Creates a AssetCode$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---| | path | 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 `AssetCode$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | path | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(asset-image-code-builder directory id config)
Creates a AssetImageCode$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---| | directory | 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 `AssetImageCode$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | directory | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(asset-image-code-props-builder id config)
Creates a AssetImageCodeProps$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 `AssetImageCodeProps$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 |
(auto-scaling-options-builder id config)
Creates a AutoScalingOptions$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 `AutoScalingOptions$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-adot-instrumentation-config-builder builder id config)
The build-adot-instrumentation-config-builder function updates a AdotInstrumentationConfig$Builder instance using the provided configuration. The function takes the AdotInstrumentationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
execWrapper | software.amazon.awscdk.services.lambda.AdotLambdaExecWrapper | cdk.api.services.lambda/adot-lambda-exec-wrapper | :exec-wrapper |
layerVersion | software.amazon.awscdk.services.lambda.AdotLayerVersion | cdk.support/lookup-entry | :layer-version |
The build-adot-instrumentation-config-builder function updates a AdotInstrumentationConfig$Builder instance using the provided configuration. The function takes the AdotInstrumentationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `execWrapper` | software.amazon.awscdk.services.lambda.AdotLambdaExecWrapper | [[cdk.api.services.lambda/adot-lambda-exec-wrapper]] | `:exec-wrapper` | | `layerVersion` | software.amazon.awscdk.services.lambda.AdotLayerVersion | [[cdk.support/lookup-entry]] | `:layer-version` |
(build-alias-attributes-builder builder id config)
The build-alias-attributes-builder function updates a AliasAttributes$Builder instance using the provided configuration. The function takes the AliasAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
aliasName | java.lang.String | cdk.support/lookup-entry | :alias-name |
aliasVersion | software.amazon.awscdk.services.lambda.IVersion | cdk.support/lookup-entry | :alias-version |
The build-alias-attributes-builder function updates a AliasAttributes$Builder instance using the provided configuration. The function takes the AliasAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `aliasName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alias-name` | | `aliasVersion` | software.amazon.awscdk.services.lambda.IVersion | [[cdk.support/lookup-entry]] | `:alias-version` |
(build-alias-builder builder id config)
The build-alias-builder function updates a Alias$Builder instance using the provided configuration. The function takes the Alias$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalVersions | java.util.List | cdk.support/lookup-entry | :additional-versions |
aliasName | java.lang.String | cdk.support/lookup-entry | :alias-name |
description | java.lang.String | cdk.support/lookup-entry | :description |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
version | software.amazon.awscdk.services.lambda.IVersion | cdk.support/lookup-entry | :version |
The build-alias-builder function updates a Alias$Builder instance using the provided configuration. The function takes the Alias$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalVersions` | java.util.List | [[cdk.support/lookup-entry]] | `:additional-versions` | | `aliasName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alias-name` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `version` | software.amazon.awscdk.services.lambda.IVersion | [[cdk.support/lookup-entry]] | `:version` |
(build-alias-options-builder builder id config)
The build-alias-options-builder function updates a AliasOptions$Builder instance using the provided configuration. The function takes the AliasOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalVersions | java.util.List | cdk.support/lookup-entry | :additional-versions |
description | java.lang.String | cdk.support/lookup-entry | :description |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-alias-options-builder function updates a AliasOptions$Builder instance using the provided configuration. The function takes the AliasOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalVersions` | java.util.List | [[cdk.support/lookup-entry]] | `:additional-versions` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-alias-props-builder builder id config)
The build-alias-props-builder function updates a AliasProps$Builder instance using the provided configuration. The function takes the AliasProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalVersions | java.util.List | cdk.support/lookup-entry | :additional-versions |
aliasName | java.lang.String | cdk.support/lookup-entry | :alias-name |
description | java.lang.String | cdk.support/lookup-entry | :description |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
version | software.amazon.awscdk.services.lambda.IVersion | cdk.support/lookup-entry | :version |
The build-alias-props-builder function updates a AliasProps$Builder instance using the provided configuration. The function takes the AliasProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalVersions` | java.util.List | [[cdk.support/lookup-entry]] | `:additional-versions` | | `aliasName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alias-name` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `version` | software.amazon.awscdk.services.lambda.IVersion | [[cdk.support/lookup-entry]] | `:version` |
(build-asset-code-builder builder id config)
The build-asset-code-builder function updates a AssetCode$Builder instance using the provided configuration. The function takes the AssetCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
deployTime | java.lang.Boolean | cdk.support/lookup-entry | :deploy-time |
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 |
readers | java.util.List | cdk.support/lookup-entry | :readers |
The build-asset-code-builder function updates a AssetCode$Builder instance using the provided configuration. The function takes the AssetCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `deployTime` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:deploy-time` | | `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` | | `readers` | java.util.List | [[cdk.support/lookup-entry]] | `:readers` |
(build-asset-image-code-builder builder id config)
The build-asset-image-code-builder function updates a AssetImageCode$Builder instance using the provided configuration. The function takes the AssetImageCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
buildArgs | java.util.Map | cdk.support/lookup-entry | :build-args |
buildSecrets | java.util.Map | cdk.support/lookup-entry | :build-secrets |
buildSsh | java.lang.String | cdk.support/lookup-entry | :build-ssh |
cacheDisabled | java.lang.Boolean | cdk.support/lookup-entry | :cache-disabled |
cacheFrom | java.util.List | cdk.support/lookup-entry | :cache-from |
cacheTo | software.amazon.awscdk.services.ecr.assets.DockerCacheOption | cdk.support/lookup-entry | :cache-to |
cmd | java.util.List | cdk.support/lookup-entry | :cmd |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
extraHash | java.lang.String | cdk.support/lookup-entry | :extra-hash |
file | java.lang.String | cdk.support/lookup-entry | :file |
followSymlinks | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow-symlinks |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
invalidation | software.amazon.awscdk.services.ecr.assets.DockerImageAssetInvalidationOptions | cdk.support/lookup-entry | :invalidation |
networkMode | software.amazon.awscdk.services.ecr.assets.NetworkMode | cdk.support/lookup-entry | :network-mode |
outputs | java.util.List | cdk.support/lookup-entry | :outputs |
platform | software.amazon.awscdk.services.ecr.assets.Platform | cdk.support/lookup-entry | :platform |
target | java.lang.String | cdk.support/lookup-entry | :target |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-asset-image-code-builder function updates a AssetImageCode$Builder instance using the provided configuration. The function takes the AssetImageCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `buildArgs` | java.util.Map | [[cdk.support/lookup-entry]] | `:build-args` | | `buildSecrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:build-secrets` | | `buildSsh` | java.lang.String | [[cdk.support/lookup-entry]] | `:build-ssh` | | `cacheDisabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cache-disabled` | | `cacheFrom` | java.util.List | [[cdk.support/lookup-entry]] | `:cache-from` | | `cacheTo` | software.amazon.awscdk.services.ecr.assets.DockerCacheOption | [[cdk.support/lookup-entry]] | `:cache-to` | | `cmd` | java.util.List | [[cdk.support/lookup-entry]] | `:cmd` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `extraHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:extra-hash` | | `file` | java.lang.String | [[cdk.support/lookup-entry]] | `:file` | | `followSymlinks` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow-symlinks` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` | | `invalidation` | software.amazon.awscdk.services.ecr.assets.DockerImageAssetInvalidationOptions | [[cdk.support/lookup-entry]] | `:invalidation` | | `networkMode` | software.amazon.awscdk.services.ecr.assets.NetworkMode | [[cdk.support/lookup-entry]] | `:network-mode` | | `outputs` | java.util.List | [[cdk.support/lookup-entry]] | `:outputs` | | `platform` | software.amazon.awscdk.services.ecr.assets.Platform | [[cdk.support/lookup-entry]] | `:platform` | | `target` | java.lang.String | [[cdk.support/lookup-entry]] | `:target` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-asset-image-code-props-builder builder id config)
The build-asset-image-code-props-builder function updates a AssetImageCodeProps$Builder instance using the provided configuration. The function takes the AssetImageCodeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
buildArgs | java.util.Map | cdk.support/lookup-entry | :build-args |
buildSecrets | java.util.Map | cdk.support/lookup-entry | :build-secrets |
buildSsh | java.lang.String | cdk.support/lookup-entry | :build-ssh |
cacheDisabled | java.lang.Boolean | cdk.support/lookup-entry | :cache-disabled |
cacheFrom | java.util.List | cdk.support/lookup-entry | :cache-from |
cacheTo | software.amazon.awscdk.services.ecr.assets.DockerCacheOption | cdk.support/lookup-entry | :cache-to |
cmd | java.util.List | cdk.support/lookup-entry | :cmd |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
exclude | java.util.List | cdk.support/lookup-entry | :exclude |
extraHash | java.lang.String | cdk.support/lookup-entry | :extra-hash |
file | java.lang.String | cdk.support/lookup-entry | :file |
followSymlinks | software.amazon.awscdk.SymlinkFollowMode | cdk.api/symlink-follow-mode | :follow-symlinks |
ignoreMode | software.amazon.awscdk.IgnoreMode | cdk.api/ignore-mode | :ignore-mode |
invalidation | software.amazon.awscdk.services.ecr.assets.DockerImageAssetInvalidationOptions | cdk.support/lookup-entry | :invalidation |
networkMode | software.amazon.awscdk.services.ecr.assets.NetworkMode | cdk.support/lookup-entry | :network-mode |
outputs | java.util.List | cdk.support/lookup-entry | :outputs |
platform | software.amazon.awscdk.services.ecr.assets.Platform | cdk.support/lookup-entry | :platform |
target | java.lang.String | cdk.support/lookup-entry | :target |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-asset-image-code-props-builder function updates a AssetImageCodeProps$Builder instance using the provided configuration. The function takes the AssetImageCodeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `buildArgs` | java.util.Map | [[cdk.support/lookup-entry]] | `:build-args` | | `buildSecrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:build-secrets` | | `buildSsh` | java.lang.String | [[cdk.support/lookup-entry]] | `:build-ssh` | | `cacheDisabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cache-disabled` | | `cacheFrom` | java.util.List | [[cdk.support/lookup-entry]] | `:cache-from` | | `cacheTo` | software.amazon.awscdk.services.ecr.assets.DockerCacheOption | [[cdk.support/lookup-entry]] | `:cache-to` | | `cmd` | java.util.List | [[cdk.support/lookup-entry]] | `:cmd` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `exclude` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude` | | `extraHash` | java.lang.String | [[cdk.support/lookup-entry]] | `:extra-hash` | | `file` | java.lang.String | [[cdk.support/lookup-entry]] | `:file` | | `followSymlinks` | software.amazon.awscdk.SymlinkFollowMode | [[cdk.api/symlink-follow-mode]] | `:follow-symlinks` | | `ignoreMode` | software.amazon.awscdk.IgnoreMode | [[cdk.api/ignore-mode]] | `:ignore-mode` | | `invalidation` | software.amazon.awscdk.services.ecr.assets.DockerImageAssetInvalidationOptions | [[cdk.support/lookup-entry]] | `:invalidation` | | `networkMode` | software.amazon.awscdk.services.ecr.assets.NetworkMode | [[cdk.support/lookup-entry]] | `:network-mode` | | `outputs` | java.util.List | [[cdk.support/lookup-entry]] | `:outputs` | | `platform` | software.amazon.awscdk.services.ecr.assets.Platform | [[cdk.support/lookup-entry]] | `:platform` | | `target` | java.lang.String | [[cdk.support/lookup-entry]] | `:target` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-auto-scaling-options-builder builder id config)
The build-auto-scaling-options-builder function updates a AutoScalingOptions$Builder instance using the provided configuration. The function takes the AutoScalingOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
maxCapacity | java.lang.Number | cdk.support/lookup-entry | :max-capacity |
minCapacity | java.lang.Number | cdk.support/lookup-entry | :min-capacity |
The build-auto-scaling-options-builder function updates a AutoScalingOptions$Builder instance using the provided configuration. The function takes the AutoScalingOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `maxCapacity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-capacity` | | `minCapacity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-capacity` |
(build-cfn-alias-alias-routing-configuration-property-builder builder id config)
The build-cfn-alias-alias-routing-configuration-property-builder function updates a CfnAlias$AliasRoutingConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnAlias$AliasRoutingConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalVersionWeights | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :additional-version-weights |
The build-cfn-alias-alias-routing-configuration-property-builder function updates a CfnAlias$AliasRoutingConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnAlias$AliasRoutingConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalVersionWeights` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:additional-version-weights` |
(build-cfn-alias-builder builder id config)
The build-cfn-alias-builder function updates a CfnAlias$Builder instance using the provided configuration. The function takes the CfnAlias$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
functionVersion | java.lang.String | cdk.support/lookup-entry | :function-version |
name | java.lang.String | cdk.support/lookup-entry | :name |
provisionedConcurrencyConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :provisioned-concurrency-config |
routingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :routing-config |
The build-cfn-alias-builder function updates a CfnAlias$Builder instance using the provided configuration. The function takes the CfnAlias$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `functionVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-version` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `provisionedConcurrencyConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:provisioned-concurrency-config` | | `routingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:routing-config` |
(build-cfn-alias-props-builder builder id config)
The build-cfn-alias-props-builder function updates a CfnAliasProps$Builder instance using the provided configuration. The function takes the CfnAliasProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
functionVersion | java.lang.String | cdk.support/lookup-entry | :function-version |
name | java.lang.String | cdk.support/lookup-entry | :name |
provisionedConcurrencyConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :provisioned-concurrency-config |
routingConfig | software.amazon.awscdk.services.lambda.CfnAlias$AliasRoutingConfigurationProperty | cdk.support/lookup-entry | :routing-config |
The build-cfn-alias-props-builder function updates a CfnAliasProps$Builder instance using the provided configuration. The function takes the CfnAliasProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `functionVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-version` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `provisionedConcurrencyConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:provisioned-concurrency-config` | | `routingConfig` | software.amazon.awscdk.services.lambda.CfnAlias$AliasRoutingConfigurationProperty | [[cdk.support/lookup-entry]] | `:routing-config` |
(build-cfn-alias-provisioned-concurrency-configuration-property-builder builder
id
config)
The build-cfn-alias-provisioned-concurrency-configuration-property-builder function updates a CfnAlias$ProvisionedConcurrencyConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnAlias$ProvisionedConcurrencyConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
The build-cfn-alias-provisioned-concurrency-configuration-property-builder function updates a CfnAlias$ProvisionedConcurrencyConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnAlias$ProvisionedConcurrencyConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` |
(build-cfn-alias-version-weight-property-builder builder id config)
The build-cfn-alias-version-weight-property-builder function updates a CfnAlias$VersionWeightProperty$Builder instance using the provided configuration. The function takes the CfnAlias$VersionWeightProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
functionVersion | java.lang.String | cdk.support/lookup-entry | :function-version |
functionWeight | java.lang.Number | cdk.support/lookup-entry | :function-weight |
The build-cfn-alias-version-weight-property-builder function updates a CfnAlias$VersionWeightProperty$Builder instance using the provided configuration. The function takes the CfnAlias$VersionWeightProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `functionVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-version` | | `functionWeight` | java.lang.Number | [[cdk.support/lookup-entry]] | `:function-weight` |
(build-cfn-code-signing-config-allowed-publishers-property-builder builder
id
config)
The build-cfn-code-signing-config-allowed-publishers-property-builder function updates a CfnCodeSigningConfig$AllowedPublishersProperty$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfig$AllowedPublishersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
signingProfileVersionArns | java.util.List | cdk.support/lookup-entry | :signing-profile-version-arns |
The build-cfn-code-signing-config-allowed-publishers-property-builder function updates a CfnCodeSigningConfig$AllowedPublishersProperty$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfig$AllowedPublishersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `signingProfileVersionArns` | java.util.List | [[cdk.support/lookup-entry]] | `:signing-profile-version-arns` |
(build-cfn-code-signing-config-builder builder id config)
The build-cfn-code-signing-config-builder function updates a CfnCodeSigningConfig$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allowedPublishers | software.amazon.awscdk.services.lambda.CfnCodeSigningConfig$AllowedPublishersProperty | cdk.support/lookup-entry | :allowed-publishers |
codeSigningPolicies | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :code-signing-policies |
description | java.lang.String | cdk.support/lookup-entry | :description |
The build-cfn-code-signing-config-builder function updates a CfnCodeSigningConfig$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allowedPublishers` | software.amazon.awscdk.services.lambda.CfnCodeSigningConfig$AllowedPublishersProperty | [[cdk.support/lookup-entry]] | `:allowed-publishers` | | `codeSigningPolicies` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:code-signing-policies` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
(build-cfn-code-signing-config-code-signing-policies-property-builder builder
id
config)
The build-cfn-code-signing-config-code-signing-policies-property-builder function updates a CfnCodeSigningConfig$CodeSigningPoliciesProperty$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfig$CodeSigningPoliciesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
untrustedArtifactOnDeployment | java.lang.String | cdk.support/lookup-entry | :untrusted-artifact-on-deployment |
The build-cfn-code-signing-config-code-signing-policies-property-builder function updates a CfnCodeSigningConfig$CodeSigningPoliciesProperty$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfig$CodeSigningPoliciesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `untrustedArtifactOnDeployment` | java.lang.String | [[cdk.support/lookup-entry]] | `:untrusted-artifact-on-deployment` |
(build-cfn-code-signing-config-props-builder builder id config)
The build-cfn-code-signing-config-props-builder function updates a CfnCodeSigningConfigProps$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allowedPublishers | software.amazon.awscdk.services.lambda.CfnCodeSigningConfig$AllowedPublishersProperty | cdk.support/lookup-entry | :allowed-publishers |
codeSigningPolicies | software.amazon.awscdk.services.lambda.CfnCodeSigningConfig$CodeSigningPoliciesProperty | cdk.support/lookup-entry | :code-signing-policies |
description | java.lang.String | cdk.support/lookup-entry | :description |
The build-cfn-code-signing-config-props-builder function updates a CfnCodeSigningConfigProps$Builder instance using the provided configuration. The function takes the CfnCodeSigningConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allowedPublishers` | software.amazon.awscdk.services.lambda.CfnCodeSigningConfig$AllowedPublishersProperty | [[cdk.support/lookup-entry]] | `:allowed-publishers` | | `codeSigningPolicies` | software.amazon.awscdk.services.lambda.CfnCodeSigningConfig$CodeSigningPoliciesProperty | [[cdk.support/lookup-entry]] | `:code-signing-policies` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
(build-cfn-event-invoke-config-builder builder id config)
The build-cfn-event-invoke-config-builder function updates a CfnEventInvokeConfig$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destinationConfig | software.amazon.awscdk.services.lambda.CfnEventInvokeConfig$DestinationConfigProperty | cdk.support/lookup-entry | :destination-config |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
maximumEventAgeInSeconds | java.lang.Number | cdk.support/lookup-entry | :maximum-event-age-in-seconds |
maximumRetryAttempts | java.lang.Number | cdk.support/lookup-entry | :maximum-retry-attempts |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
The build-cfn-event-invoke-config-builder function updates a CfnEventInvokeConfig$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destinationConfig` | software.amazon.awscdk.services.lambda.CfnEventInvokeConfig$DestinationConfigProperty | [[cdk.support/lookup-entry]] | `:destination-config` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `maximumEventAgeInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-event-age-in-seconds` | | `maximumRetryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-retry-attempts` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` |
(build-cfn-event-invoke-config-destination-config-property-builder builder
id
config)
The build-cfn-event-invoke-config-destination-config-property-builder function updates a CfnEventInvokeConfig$DestinationConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$DestinationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
onFailure | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :on-success |
The build-cfn-event-invoke-config-destination-config-property-builder function updates a CfnEventInvokeConfig$DestinationConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$DestinationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `onFailure` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:on-success` |
(build-cfn-event-invoke-config-on-failure-property-builder builder id config)
The build-cfn-event-invoke-config-on-failure-property-builder function updates a CfnEventInvokeConfig$OnFailureProperty$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$OnFailureProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destination | java.lang.String | cdk.support/lookup-entry | :destination |
The build-cfn-event-invoke-config-on-failure-property-builder function updates a CfnEventInvokeConfig$OnFailureProperty$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$OnFailureProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destination` | java.lang.String | [[cdk.support/lookup-entry]] | `:destination` |
(build-cfn-event-invoke-config-on-success-property-builder builder id config)
The build-cfn-event-invoke-config-on-success-property-builder function updates a CfnEventInvokeConfig$OnSuccessProperty$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$OnSuccessProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destination | java.lang.String | cdk.support/lookup-entry | :destination |
The build-cfn-event-invoke-config-on-success-property-builder function updates a CfnEventInvokeConfig$OnSuccessProperty$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfig$OnSuccessProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destination` | java.lang.String | [[cdk.support/lookup-entry]] | `:destination` |
(build-cfn-event-invoke-config-props-builder builder id config)
The build-cfn-event-invoke-config-props-builder function updates a CfnEventInvokeConfigProps$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destinationConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :destination-config |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
maximumEventAgeInSeconds | java.lang.Number | cdk.support/lookup-entry | :maximum-event-age-in-seconds |
maximumRetryAttempts | java.lang.Number | cdk.support/lookup-entry | :maximum-retry-attempts |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
The build-cfn-event-invoke-config-props-builder function updates a CfnEventInvokeConfigProps$Builder instance using the provided configuration. The function takes the CfnEventInvokeConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destinationConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:destination-config` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `maximumEventAgeInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-event-age-in-seconds` | | `maximumRetryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-retry-attempts` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` |
(build-cfn-event-source-mapping-amazon-managed-kafka-event-source-config-property-builder
builder
id
config)
The build-cfn-event-source-mapping-amazon-managed-kafka-event-source-config-property-builder function updates a CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
consumerGroupId | java.lang.String | cdk.support/lookup-entry | :consumer-group-id |
The build-cfn-event-source-mapping-amazon-managed-kafka-event-source-config-property-builder function updates a CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `consumerGroupId` | java.lang.String | [[cdk.support/lookup-entry]] | `:consumer-group-id` |
(build-cfn-event-source-mapping-builder builder id config)
The build-cfn-event-source-mapping-builder function updates a CfnEventSourceMapping$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
amazonManagedKafkaEventSourceConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :amazon-managed-kafka-event-source-config |
batchSize | java.lang.Number | cdk.support/lookup-entry | :batch-size |
bisectBatchOnFunctionError | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :bisect-batch-on-function-error |
destinationConfig | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$DestinationConfigProperty | cdk.support/lookup-entry | :destination-config |
documentDbEventSourceConfig | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$DocumentDBEventSourceConfigProperty | cdk.support/lookup-entry | :document-db-event-source-config |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
eventSourceArn | java.lang.String | cdk.support/lookup-entry | :event-source-arn |
filterCriteria | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :filter-criteria |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
functionResponseTypes | java.util.List | cdk.support/lookup-entry | :function-response-types |
maximumBatchingWindowInSeconds | java.lang.Number | cdk.support/lookup-entry | :maximum-batching-window-in-seconds |
maximumRecordAgeInSeconds | java.lang.Number | cdk.support/lookup-entry | :maximum-record-age-in-seconds |
maximumRetryAttempts | java.lang.Number | cdk.support/lookup-entry | :maximum-retry-attempts |
parallelizationFactor | java.lang.Number | cdk.support/lookup-entry | :parallelization-factor |
queues | java.util.List | cdk.support/lookup-entry | :queues |
scalingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :scaling-config |
selfManagedEventSource | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$SelfManagedEventSourceProperty | cdk.support/lookup-entry | :self-managed-event-source |
selfManagedKafkaEventSourceConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :self-managed-kafka-event-source-config |
sourceAccessConfigurations | java.util.List | cdk.support/lookup-entry | :source-access-configurations |
startingPosition | java.lang.String | cdk.support/lookup-entry | :starting-position |
startingPositionTimestamp | java.lang.Number | cdk.support/lookup-entry | :starting-position-timestamp |
topics | java.util.List | cdk.support/lookup-entry | :topics |
tumblingWindowInSeconds | java.lang.Number | cdk.support/lookup-entry | :tumbling-window-in-seconds |
The build-cfn-event-source-mapping-builder function updates a CfnEventSourceMapping$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `amazonManagedKafkaEventSourceConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:amazon-managed-kafka-event-source-config` | | `batchSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:batch-size` | | `bisectBatchOnFunctionError` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:bisect-batch-on-function-error` | | `destinationConfig` | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$DestinationConfigProperty | [[cdk.support/lookup-entry]] | `:destination-config` | | `documentDbEventSourceConfig` | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$DocumentDBEventSourceConfigProperty | [[cdk.support/lookup-entry]] | `:document-db-event-source-config` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `eventSourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-arn` | | `filterCriteria` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:filter-criteria` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `functionResponseTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:function-response-types` | | `maximumBatchingWindowInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-batching-window-in-seconds` | | `maximumRecordAgeInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-record-age-in-seconds` | | `maximumRetryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-retry-attempts` | | `parallelizationFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:parallelization-factor` | | `queues` | java.util.List | [[cdk.support/lookup-entry]] | `:queues` | | `scalingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:scaling-config` | | `selfManagedEventSource` | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$SelfManagedEventSourceProperty | [[cdk.support/lookup-entry]] | `:self-managed-event-source` | | `selfManagedKafkaEventSourceConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:self-managed-kafka-event-source-config` | | `sourceAccessConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:source-access-configurations` | | `startingPosition` | java.lang.String | [[cdk.support/lookup-entry]] | `:starting-position` | | `startingPositionTimestamp` | java.lang.Number | [[cdk.support/lookup-entry]] | `:starting-position-timestamp` | | `topics` | java.util.List | [[cdk.support/lookup-entry]] | `:topics` | | `tumblingWindowInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:tumbling-window-in-seconds` |
(build-cfn-event-source-mapping-destination-config-property-builder builder
id
config)
The build-cfn-event-source-mapping-destination-config-property-builder function updates a CfnEventSourceMapping$DestinationConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$DestinationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
onFailure | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :on-failure |
The build-cfn-event-source-mapping-destination-config-property-builder function updates a CfnEventSourceMapping$DestinationConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$DestinationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `onFailure` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:on-failure` |
(build-cfn-event-source-mapping-document-db-event-source-config-property-builder
builder
id
config)
The build-cfn-event-source-mapping-document-db-event-source-config-property-builder function updates a CfnEventSourceMapping$DocumentDBEventSourceConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$DocumentDBEventSourceConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
collectionName | java.lang.String | cdk.support/lookup-entry | :collection-name |
databaseName | java.lang.String | cdk.support/lookup-entry | :database-name |
fullDocument | java.lang.String | cdk.support/lookup-entry | :full-document |
The build-cfn-event-source-mapping-document-db-event-source-config-property-builder function updates a CfnEventSourceMapping$DocumentDBEventSourceConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$DocumentDBEventSourceConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `collectionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:collection-name` | | `databaseName` | java.lang.String | [[cdk.support/lookup-entry]] | `:database-name` | | `fullDocument` | java.lang.String | [[cdk.support/lookup-entry]] | `:full-document` |
(build-cfn-event-source-mapping-endpoints-property-builder builder id config)
The build-cfn-event-source-mapping-endpoints-property-builder function updates a CfnEventSourceMapping$EndpointsProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$EndpointsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
kafkaBootstrapServers | java.util.List | cdk.support/lookup-entry | :kafka-bootstrap-servers |
The build-cfn-event-source-mapping-endpoints-property-builder function updates a CfnEventSourceMapping$EndpointsProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$EndpointsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `kafkaBootstrapServers` | java.util.List | [[cdk.support/lookup-entry]] | `:kafka-bootstrap-servers` |
(build-cfn-event-source-mapping-filter-criteria-property-builder builder
id
config)
The build-cfn-event-source-mapping-filter-criteria-property-builder function updates a CfnEventSourceMapping$FilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$FilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
filters | java.util.List | cdk.support/lookup-entry | :filters |
The build-cfn-event-source-mapping-filter-criteria-property-builder function updates a CfnEventSourceMapping$FilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$FilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `filters` | java.util.List | [[cdk.support/lookup-entry]] | `:filters` |
(build-cfn-event-source-mapping-filter-property-builder builder id config)
The build-cfn-event-source-mapping-filter-property-builder function updates a CfnEventSourceMapping$FilterProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$FilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
pattern | java.lang.String | cdk.support/lookup-entry | :pattern |
The build-cfn-event-source-mapping-filter-property-builder function updates a CfnEventSourceMapping$FilterProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$FilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `pattern` | java.lang.String | [[cdk.support/lookup-entry]] | `:pattern` |
(build-cfn-event-source-mapping-on-failure-property-builder builder id config)
The build-cfn-event-source-mapping-on-failure-property-builder function updates a CfnEventSourceMapping$OnFailureProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$OnFailureProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destination | java.lang.String | cdk.support/lookup-entry | :destination |
The build-cfn-event-source-mapping-on-failure-property-builder function updates a CfnEventSourceMapping$OnFailureProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$OnFailureProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destination` | java.lang.String | [[cdk.support/lookup-entry]] | `:destination` |
(build-cfn-event-source-mapping-props-builder builder id config)
The build-cfn-event-source-mapping-props-builder function updates a CfnEventSourceMappingProps$Builder instance using the provided configuration. The function takes the CfnEventSourceMappingProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
amazonManagedKafkaEventSourceConfig | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty | cdk.support/lookup-entry | :amazon-managed-kafka-event-source-config |
batchSize | java.lang.Number | cdk.support/lookup-entry | :batch-size |
bisectBatchOnFunctionError | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :bisect-batch-on-function-error |
destinationConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :destination-config |
documentDbEventSourceConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :document-db-event-source-config |
enabled | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :enabled |
eventSourceArn | java.lang.String | cdk.support/lookup-entry | :event-source-arn |
filterCriteria | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :filter-criteria |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
functionResponseTypes | java.util.List | cdk.support/lookup-entry | :function-response-types |
maximumBatchingWindowInSeconds | java.lang.Number | cdk.support/lookup-entry | :maximum-batching-window-in-seconds |
maximumRecordAgeInSeconds | java.lang.Number | cdk.support/lookup-entry | :maximum-record-age-in-seconds |
maximumRetryAttempts | java.lang.Number | cdk.support/lookup-entry | :maximum-retry-attempts |
parallelizationFactor | java.lang.Number | cdk.support/lookup-entry | :parallelization-factor |
queues | java.util.List | cdk.support/lookup-entry | :queues |
scalingConfig | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$ScalingConfigProperty | cdk.support/lookup-entry | :scaling-config |
selfManagedEventSource | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :self-managed-event-source |
selfManagedKafkaEventSourceConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :self-managed-kafka-event-source-config |
sourceAccessConfigurations | java.util.List | cdk.support/lookup-entry | :source-access-configurations |
startingPosition | java.lang.String | cdk.support/lookup-entry | :starting-position |
startingPositionTimestamp | java.lang.Number | cdk.support/lookup-entry | :starting-position-timestamp |
topics | java.util.List | cdk.support/lookup-entry | :topics |
tumblingWindowInSeconds | java.lang.Number | cdk.support/lookup-entry | :tumbling-window-in-seconds |
The build-cfn-event-source-mapping-props-builder function updates a CfnEventSourceMappingProps$Builder instance using the provided configuration. The function takes the CfnEventSourceMappingProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `amazonManagedKafkaEventSourceConfig` | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty | [[cdk.support/lookup-entry]] | `:amazon-managed-kafka-event-source-config` | | `batchSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:batch-size` | | `bisectBatchOnFunctionError` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:bisect-batch-on-function-error` | | `destinationConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:destination-config` | | `documentDbEventSourceConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:document-db-event-source-config` | | `enabled` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:enabled` | | `eventSourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-arn` | | `filterCriteria` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:filter-criteria` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `functionResponseTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:function-response-types` | | `maximumBatchingWindowInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-batching-window-in-seconds` | | `maximumRecordAgeInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-record-age-in-seconds` | | `maximumRetryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-retry-attempts` | | `parallelizationFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:parallelization-factor` | | `queues` | java.util.List | [[cdk.support/lookup-entry]] | `:queues` | | `scalingConfig` | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$ScalingConfigProperty | [[cdk.support/lookup-entry]] | `:scaling-config` | | `selfManagedEventSource` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:self-managed-event-source` | | `selfManagedKafkaEventSourceConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:self-managed-kafka-event-source-config` | | `sourceAccessConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:source-access-configurations` | | `startingPosition` | java.lang.String | [[cdk.support/lookup-entry]] | `:starting-position` | | `startingPositionTimestamp` | java.lang.Number | [[cdk.support/lookup-entry]] | `:starting-position-timestamp` | | `topics` | java.util.List | [[cdk.support/lookup-entry]] | `:topics` | | `tumblingWindowInSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:tumbling-window-in-seconds` |
(build-cfn-event-source-mapping-scaling-config-property-builder builder
id
config)
The build-cfn-event-source-mapping-scaling-config-property-builder function updates a CfnEventSourceMapping$ScalingConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$ScalingConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
maximumConcurrency | java.lang.Number | cdk.support/lookup-entry | :maximum-concurrency |
The build-cfn-event-source-mapping-scaling-config-property-builder function updates a CfnEventSourceMapping$ScalingConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$ScalingConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `maximumConcurrency` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-concurrency` |
(build-cfn-event-source-mapping-self-managed-event-source-property-builder
builder
id
config)
The build-cfn-event-source-mapping-self-managed-event-source-property-builder function updates a CfnEventSourceMapping$SelfManagedEventSourceProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$SelfManagedEventSourceProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
endpoints | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$EndpointsProperty | cdk.support/lookup-entry | :endpoints |
The build-cfn-event-source-mapping-self-managed-event-source-property-builder function updates a CfnEventSourceMapping$SelfManagedEventSourceProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$SelfManagedEventSourceProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `endpoints` | software.amazon.awscdk.services.lambda.CfnEventSourceMapping$EndpointsProperty | [[cdk.support/lookup-entry]] | `:endpoints` |
(build-cfn-event-source-mapping-self-managed-kafka-event-source-config-property-builder
builder
id
config)
The build-cfn-event-source-mapping-self-managed-kafka-event-source-config-property-builder function updates a CfnEventSourceMapping$SelfManagedKafkaEventSourceConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$SelfManagedKafkaEventSourceConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
consumerGroupId | java.lang.String | cdk.support/lookup-entry | :consumer-group-id |
The build-cfn-event-source-mapping-self-managed-kafka-event-source-config-property-builder function updates a CfnEventSourceMapping$SelfManagedKafkaEventSourceConfigProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$SelfManagedKafkaEventSourceConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `consumerGroupId` | java.lang.String | [[cdk.support/lookup-entry]] | `:consumer-group-id` |
(build-cfn-event-source-mapping-source-access-configuration-property-builder
builder
id
config)
The build-cfn-event-source-mapping-source-access-configuration-property-builder function updates a CfnEventSourceMapping$SourceAccessConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$SourceAccessConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
type | java.lang.String | cdk.support/lookup-entry | :type |
uri | java.lang.String | cdk.support/lookup-entry | :uri |
The build-cfn-event-source-mapping-source-access-configuration-property-builder function updates a CfnEventSourceMapping$SourceAccessConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnEventSourceMapping$SourceAccessConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `uri` | java.lang.String | [[cdk.support/lookup-entry]] | `:uri` |
(build-cfn-function-builder builder id config)
The build-cfn-function-builder function updates a CfnFunction$Builder instance using the provided configuration. The function takes the CfnFunction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
architectures | java.util.List | cdk.support/lookup-entry | :architectures |
code | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :code |
codeSigningConfigArn | java.lang.String | cdk.support/lookup-entry | :code-signing-config-arn |
deadLetterConfig | software.amazon.awscdk.services.lambda.CfnFunction$DeadLetterConfigProperty | cdk.support/lookup-entry | :dead-letter-config |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | software.amazon.awscdk.services.lambda.CfnFunction$EnvironmentProperty | cdk.support/lookup-entry | :environment |
ephemeralStorage | software.amazon.awscdk.services.lambda.CfnFunction$EphemeralStorageProperty | cdk.support/lookup-entry | :ephemeral-storage |
fileSystemConfigs | java.util.List | cdk.support/lookup-entry | :file-system-configs |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
handler | java.lang.String | cdk.support/lookup-entry | :handler |
imageConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :image-config |
kmsKeyArn | java.lang.String | cdk.support/lookup-entry | :kms-key-arn |
layers | java.util.List | cdk.support/lookup-entry | :layers |
loggingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :logging-config |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
packageType | java.lang.String | cdk.support/lookup-entry | :package-type |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
role | java.lang.String | cdk.support/lookup-entry | :role |
runtime | java.lang.String | cdk.support/lookup-entry | :runtime |
runtimeManagementConfig | software.amazon.awscdk.services.lambda.CfnFunction$RuntimeManagementConfigProperty | cdk.support/lookup-entry | :runtime-management-config |
snapStart | software.amazon.awscdk.services.lambda.CfnFunction$SnapStartProperty | cdk.support/lookup-entry | :snap-start |
tags | java.util.List | cdk.support/lookup-entry | :tags |
timeout | java.lang.Number | cdk.support/lookup-entry | :timeout |
tracingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :tracing-config |
vpcConfig | software.amazon.awscdk.services.lambda.CfnFunction$VpcConfigProperty | cdk.support/lookup-entry | :vpc-config |
The build-cfn-function-builder function updates a CfnFunction$Builder instance using the provided configuration. The function takes the CfnFunction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `architectures` | java.util.List | [[cdk.support/lookup-entry]] | `:architectures` | | `code` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfigArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-signing-config-arn` | | `deadLetterConfig` | software.amazon.awscdk.services.lambda.CfnFunction$DeadLetterConfigProperty | [[cdk.support/lookup-entry]] | `:dead-letter-config` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | software.amazon.awscdk.services.lambda.CfnFunction$EnvironmentProperty | [[cdk.support/lookup-entry]] | `:environment` | | `ephemeralStorage` | software.amazon.awscdk.services.lambda.CfnFunction$EphemeralStorageProperty | [[cdk.support/lookup-entry]] | `:ephemeral-storage` | | `fileSystemConfigs` | java.util.List | [[cdk.support/lookup-entry]] | `:file-system-configs` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `handler` | java.lang.String | [[cdk.support/lookup-entry]] | `:handler` | | `imageConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:image-config` | | `kmsKeyArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-arn` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `loggingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:logging-config` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `packageType` | java.lang.String | [[cdk.support/lookup-entry]] | `:package-type` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `role` | java.lang.String | [[cdk.support/lookup-entry]] | `:role` | | `runtime` | java.lang.String | [[cdk.support/lookup-entry]] | `:runtime` | | `runtimeManagementConfig` | software.amazon.awscdk.services.lambda.CfnFunction$RuntimeManagementConfigProperty | [[cdk.support/lookup-entry]] | `:runtime-management-config` | | `snapStart` | software.amazon.awscdk.services.lambda.CfnFunction$SnapStartProperty | [[cdk.support/lookup-entry]] | `:snap-start` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `timeout` | java.lang.Number | [[cdk.support/lookup-entry]] | `:timeout` | | `tracingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:tracing-config` | | `vpcConfig` | software.amazon.awscdk.services.lambda.CfnFunction$VpcConfigProperty | [[cdk.support/lookup-entry]] | `:vpc-config` |
(build-cfn-function-code-property-builder builder id config)
The build-cfn-function-code-property-builder function updates a CfnFunction$CodeProperty$Builder instance using the provided configuration. The function takes the CfnFunction$CodeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
imageUri | java.lang.String | cdk.support/lookup-entry | :image-uri |
s3Bucket | java.lang.String | cdk.support/lookup-entry | :s3-bucket |
s3Key | java.lang.String | cdk.support/lookup-entry | :s3-key |
s3ObjectVersion | java.lang.String | cdk.support/lookup-entry | :s3-object-version |
zipFile | java.lang.String | cdk.support/lookup-entry | :zip-file |
The build-cfn-function-code-property-builder function updates a CfnFunction$CodeProperty$Builder instance using the provided configuration. The function takes the CfnFunction$CodeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `imageUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-uri` | | `s3Bucket` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-bucket` | | `s3Key` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-key` | | `s3ObjectVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-object-version` | | `zipFile` | java.lang.String | [[cdk.support/lookup-entry]] | `:zip-file` |
(build-cfn-function-dead-letter-config-property-builder builder id config)
The build-cfn-function-dead-letter-config-property-builder function updates a CfnFunction$DeadLetterConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$DeadLetterConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
targetArn | java.lang.String | cdk.support/lookup-entry | :target-arn |
The build-cfn-function-dead-letter-config-property-builder function updates a CfnFunction$DeadLetterConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$DeadLetterConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `targetArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-arn` |
(build-cfn-function-environment-property-builder builder id config)
The build-cfn-function-environment-property-builder function updates a CfnFunction$EnvironmentProperty$Builder instance using the provided configuration. The function takes the CfnFunction$EnvironmentProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
variables | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :variables |
The build-cfn-function-environment-property-builder function updates a CfnFunction$EnvironmentProperty$Builder instance using the provided configuration. The function takes the CfnFunction$EnvironmentProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `variables` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:variables` |
(build-cfn-function-ephemeral-storage-property-builder builder id config)
The build-cfn-function-ephemeral-storage-property-builder function updates a CfnFunction$EphemeralStorageProperty$Builder instance using the provided configuration. The function takes the CfnFunction$EphemeralStorageProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
size | java.lang.Number | cdk.support/lookup-entry | :size |
The build-cfn-function-ephemeral-storage-property-builder function updates a CfnFunction$EphemeralStorageProperty$Builder instance using the provided configuration. The function takes the CfnFunction$EphemeralStorageProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `size` | java.lang.Number | [[cdk.support/lookup-entry]] | `:size` |
(build-cfn-function-file-system-config-property-builder builder id config)
The build-cfn-function-file-system-config-property-builder function updates a CfnFunction$FileSystemConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$FileSystemConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
localMountPath | java.lang.String | cdk.support/lookup-entry | :local-mount-path |
The build-cfn-function-file-system-config-property-builder function updates a CfnFunction$FileSystemConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$FileSystemConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `localMountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:local-mount-path` |
(build-cfn-function-image-config-property-builder builder id config)
The build-cfn-function-image-config-property-builder function updates a CfnFunction$ImageConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$ImageConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 | :entry-point |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-cfn-function-image-config-property-builder function updates a CfnFunction$ImageConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$ImageConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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]] | `:entry-point` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-cfn-function-logging-config-property-builder builder id config)
The build-cfn-function-logging-config-property-builder function updates a CfnFunction$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$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 |
---|---|---|---|
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | java.lang.String | cdk.support/lookup-entry | :log-group |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
The build-cfn-function-logging-config-property-builder function updates a CfnFunction$LoggingConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$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 | |---|---|---|---| | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` |
(build-cfn-function-props-builder builder id config)
The build-cfn-function-props-builder function updates a CfnFunctionProps$Builder instance using the provided configuration. The function takes the CfnFunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
architectures | java.util.List | cdk.support/lookup-entry | :architectures |
code | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :code |
codeSigningConfigArn | java.lang.String | cdk.support/lookup-entry | :code-signing-config-arn |
deadLetterConfig | software.amazon.awscdk.services.lambda.CfnFunction$DeadLetterConfigProperty | cdk.support/lookup-entry | :dead-letter-config |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | software.amazon.awscdk.services.lambda.CfnFunction$EnvironmentProperty | cdk.support/lookup-entry | :environment |
ephemeralStorage | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :ephemeral-storage |
fileSystemConfigs | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :file-system-configs |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
handler | java.lang.String | cdk.support/lookup-entry | :handler |
imageConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :image-config |
kmsKeyArn | java.lang.String | cdk.support/lookup-entry | :kms-key-arn |
layers | java.util.List | cdk.support/lookup-entry | :layers |
loggingConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :logging-config |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
packageType | java.lang.String | cdk.support/lookup-entry | :package-type |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
role | java.lang.String | cdk.support/lookup-entry | :role |
runtime | java.lang.String | cdk.support/lookup-entry | :runtime |
runtimeManagementConfig | software.amazon.awscdk.services.lambda.CfnFunction$RuntimeManagementConfigProperty | cdk.support/lookup-entry | :runtime-management-config |
snapStart | software.amazon.awscdk.services.lambda.CfnFunction$SnapStartProperty | cdk.support/lookup-entry | :snap-start |
tags | java.util.List | cdk.support/lookup-entry | :tags |
timeout | java.lang.Number | cdk.support/lookup-entry | :timeout |
tracingConfig | software.amazon.awscdk.services.lambda.CfnFunction$TracingConfigProperty | cdk.support/lookup-entry | :tracing-config |
vpcConfig | software.amazon.awscdk.services.lambda.CfnFunction$VpcConfigProperty | cdk.support/lookup-entry | :vpc-config |
The build-cfn-function-props-builder function updates a CfnFunctionProps$Builder instance using the provided configuration. The function takes the CfnFunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `architectures` | java.util.List | [[cdk.support/lookup-entry]] | `:architectures` | | `code` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfigArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-signing-config-arn` | | `deadLetterConfig` | software.amazon.awscdk.services.lambda.CfnFunction$DeadLetterConfigProperty | [[cdk.support/lookup-entry]] | `:dead-letter-config` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | software.amazon.awscdk.services.lambda.CfnFunction$EnvironmentProperty | [[cdk.support/lookup-entry]] | `:environment` | | `ephemeralStorage` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:ephemeral-storage` | | `fileSystemConfigs` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:file-system-configs` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `handler` | java.lang.String | [[cdk.support/lookup-entry]] | `:handler` | | `imageConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:image-config` | | `kmsKeyArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-arn` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `loggingConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:logging-config` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `packageType` | java.lang.String | [[cdk.support/lookup-entry]] | `:package-type` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `role` | java.lang.String | [[cdk.support/lookup-entry]] | `:role` | | `runtime` | java.lang.String | [[cdk.support/lookup-entry]] | `:runtime` | | `runtimeManagementConfig` | software.amazon.awscdk.services.lambda.CfnFunction$RuntimeManagementConfigProperty | [[cdk.support/lookup-entry]] | `:runtime-management-config` | | `snapStart` | software.amazon.awscdk.services.lambda.CfnFunction$SnapStartProperty | [[cdk.support/lookup-entry]] | `:snap-start` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `timeout` | java.lang.Number | [[cdk.support/lookup-entry]] | `:timeout` | | `tracingConfig` | software.amazon.awscdk.services.lambda.CfnFunction$TracingConfigProperty | [[cdk.support/lookup-entry]] | `:tracing-config` | | `vpcConfig` | software.amazon.awscdk.services.lambda.CfnFunction$VpcConfigProperty | [[cdk.support/lookup-entry]] | `:vpc-config` |
(build-cfn-function-runtime-management-config-property-builder builder
id
config)
The build-cfn-function-runtime-management-config-property-builder function updates a CfnFunction$RuntimeManagementConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$RuntimeManagementConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
runtimeVersionArn | java.lang.String | cdk.support/lookup-entry | :runtime-version-arn |
updateRuntimeOn | java.lang.String | cdk.support/lookup-entry | :update-runtime-on |
The build-cfn-function-runtime-management-config-property-builder function updates a CfnFunction$RuntimeManagementConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$RuntimeManagementConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `runtimeVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:runtime-version-arn` | | `updateRuntimeOn` | java.lang.String | [[cdk.support/lookup-entry]] | `:update-runtime-on` |
(build-cfn-function-snap-start-property-builder builder id config)
The build-cfn-function-snap-start-property-builder function updates a CfnFunction$SnapStartProperty$Builder instance using the provided configuration. The function takes the CfnFunction$SnapStartProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applyOn | java.lang.String | cdk.support/lookup-entry | :apply-on |
The build-cfn-function-snap-start-property-builder function updates a CfnFunction$SnapStartProperty$Builder instance using the provided configuration. The function takes the CfnFunction$SnapStartProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applyOn` | java.lang.String | [[cdk.support/lookup-entry]] | `:apply-on` |
(build-cfn-function-snap-start-response-property-builder builder id config)
The build-cfn-function-snap-start-response-property-builder function updates a CfnFunction$SnapStartResponseProperty$Builder instance using the provided configuration. The function takes the CfnFunction$SnapStartResponseProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applyOn | java.lang.String | cdk.support/lookup-entry | :apply-on |
optimizationStatus | java.lang.String | cdk.support/lookup-entry | :optimization-status |
The build-cfn-function-snap-start-response-property-builder function updates a CfnFunction$SnapStartResponseProperty$Builder instance using the provided configuration. The function takes the CfnFunction$SnapStartResponseProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applyOn` | java.lang.String | [[cdk.support/lookup-entry]] | `:apply-on` | | `optimizationStatus` | java.lang.String | [[cdk.support/lookup-entry]] | `:optimization-status` |
(build-cfn-function-tracing-config-property-builder builder id config)
The build-cfn-function-tracing-config-property-builder function updates a CfnFunction$TracingConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$TracingConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mode | java.lang.String | cdk.support/lookup-entry | :mode |
The build-cfn-function-tracing-config-property-builder function updates a CfnFunction$TracingConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$TracingConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mode` | java.lang.String | [[cdk.support/lookup-entry]] | `:mode` |
(build-cfn-function-vpc-config-property-builder builder id config)
The build-cfn-function-vpc-config-property-builder function updates a CfnFunction$VpcConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$VpcConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
ipv6AllowedForDualStack | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
securityGroupIds | java.util.List | cdk.support/lookup-entry | :security-group-ids |
subnetIds | java.util.List | cdk.support/lookup-entry | :subnet-ids |
The build-cfn-function-vpc-config-property-builder function updates a CfnFunction$VpcConfigProperty$Builder instance using the provided configuration. The function takes the CfnFunction$VpcConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `ipv6AllowedForDualStack` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `securityGroupIds` | java.util.List | [[cdk.support/lookup-entry]] | `:security-group-ids` | | `subnetIds` | java.util.List | [[cdk.support/lookup-entry]] | `:subnet-ids` |
(build-cfn-layer-version-builder builder id config)
The build-cfn-layer-version-builder function updates a CfnLayerVersion$Builder instance using the provided configuration. The function takes the CfnLayerVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
compatibleArchitectures | java.util.List | cdk.support/lookup-entry | :compatible-architectures |
compatibleRuntimes | java.util.List | cdk.support/lookup-entry | :compatible-runtimes |
content | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :content |
description | java.lang.String | cdk.support/lookup-entry | :description |
layerName | java.lang.String | cdk.support/lookup-entry | :layer-name |
licenseInfo | java.lang.String | cdk.support/lookup-entry | :license-info |
The build-cfn-layer-version-builder function updates a CfnLayerVersion$Builder instance using the provided configuration. The function takes the CfnLayerVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `compatibleArchitectures` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-architectures` | | `compatibleRuntimes` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-runtimes` | | `content` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:content` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `layerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-name` | | `licenseInfo` | java.lang.String | [[cdk.support/lookup-entry]] | `:license-info` |
(build-cfn-layer-version-content-property-builder builder id config)
The build-cfn-layer-version-content-property-builder function updates a CfnLayerVersion$ContentProperty$Builder instance using the provided configuration. The function takes the CfnLayerVersion$ContentProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
s3Bucket | java.lang.String | cdk.support/lookup-entry | :s3-bucket |
s3Key | java.lang.String | cdk.support/lookup-entry | :s3-key |
s3ObjectVersion | java.lang.String | cdk.support/lookup-entry | :s3-object-version |
The build-cfn-layer-version-content-property-builder function updates a CfnLayerVersion$ContentProperty$Builder instance using the provided configuration. The function takes the CfnLayerVersion$ContentProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `s3Bucket` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-bucket` | | `s3Key` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-key` | | `s3ObjectVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:s3-object-version` |
(build-cfn-layer-version-permission-builder builder id config)
The build-cfn-layer-version-permission-builder function updates a CfnLayerVersionPermission$Builder instance using the provided configuration. The function takes the CfnLayerVersionPermission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
layerVersionArn | java.lang.String | cdk.support/lookup-entry | :layer-version-arn |
organizationId | java.lang.String | cdk.support/lookup-entry | :organization-id |
principal | java.lang.String | cdk.support/lookup-entry | :principal |
The build-cfn-layer-version-permission-builder function updates a CfnLayerVersionPermission$Builder instance using the provided configuration. The function takes the CfnLayerVersionPermission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `layerVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-version-arn` | | `organizationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:organization-id` | | `principal` | java.lang.String | [[cdk.support/lookup-entry]] | `:principal` |
(build-cfn-layer-version-permission-props-builder builder id config)
The build-cfn-layer-version-permission-props-builder function updates a CfnLayerVersionPermissionProps$Builder instance using the provided configuration. The function takes the CfnLayerVersionPermissionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
layerVersionArn | java.lang.String | cdk.support/lookup-entry | :layer-version-arn |
organizationId | java.lang.String | cdk.support/lookup-entry | :organization-id |
principal | java.lang.String | cdk.support/lookup-entry | :principal |
The build-cfn-layer-version-permission-props-builder function updates a CfnLayerVersionPermissionProps$Builder instance using the provided configuration. The function takes the CfnLayerVersionPermissionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `layerVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-version-arn` | | `organizationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:organization-id` | | `principal` | java.lang.String | [[cdk.support/lookup-entry]] | `:principal` |
(build-cfn-layer-version-props-builder builder id config)
The build-cfn-layer-version-props-builder function updates a CfnLayerVersionProps$Builder instance using the provided configuration. The function takes the CfnLayerVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
compatibleArchitectures | java.util.List | cdk.support/lookup-entry | :compatible-architectures |
compatibleRuntimes | java.util.List | cdk.support/lookup-entry | :compatible-runtimes |
content | software.amazon.awscdk.services.lambda.CfnLayerVersion$ContentProperty | cdk.support/lookup-entry | :content |
description | java.lang.String | cdk.support/lookup-entry | :description |
layerName | java.lang.String | cdk.support/lookup-entry | :layer-name |
licenseInfo | java.lang.String | cdk.support/lookup-entry | :license-info |
The build-cfn-layer-version-props-builder function updates a CfnLayerVersionProps$Builder instance using the provided configuration. The function takes the CfnLayerVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `compatibleArchitectures` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-architectures` | | `compatibleRuntimes` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-runtimes` | | `content` | software.amazon.awscdk.services.lambda.CfnLayerVersion$ContentProperty | [[cdk.support/lookup-entry]] | `:content` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `layerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-name` | | `licenseInfo` | java.lang.String | [[cdk.support/lookup-entry]] | `:license-info` |
(build-cfn-parameters-code-builder builder id config)
The build-cfn-parameters-code-builder function updates a CfnParametersCode$Builder instance using the provided configuration. The function takes the CfnParametersCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
bucketNameParam | software.amazon.awscdk.CfnParameter | cdk.support/lookup-entry | :bucket-name-param |
objectKeyParam | software.amazon.awscdk.CfnParameter | cdk.support/lookup-entry | :object-key-param |
The build-cfn-parameters-code-builder function updates a CfnParametersCode$Builder instance using the provided configuration. The function takes the CfnParametersCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `bucketNameParam` | software.amazon.awscdk.CfnParameter | [[cdk.support/lookup-entry]] | `:bucket-name-param` | | `objectKeyParam` | software.amazon.awscdk.CfnParameter | [[cdk.support/lookup-entry]] | `:object-key-param` |
(build-cfn-parameters-code-props-builder builder id config)
The build-cfn-parameters-code-props-builder function updates a CfnParametersCodeProps$Builder instance using the provided configuration. The function takes the CfnParametersCodeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
bucketNameParam | software.amazon.awscdk.CfnParameter | cdk.support/lookup-entry | :bucket-name-param |
objectKeyParam | software.amazon.awscdk.CfnParameter | cdk.support/lookup-entry | :object-key-param |
The build-cfn-parameters-code-props-builder function updates a CfnParametersCodeProps$Builder instance using the provided configuration. The function takes the CfnParametersCodeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `bucketNameParam` | software.amazon.awscdk.CfnParameter | [[cdk.support/lookup-entry]] | `:bucket-name-param` | | `objectKeyParam` | software.amazon.awscdk.CfnParameter | [[cdk.support/lookup-entry]] | `:object-key-param` |
(build-cfn-permission-builder builder id config)
The build-cfn-permission-builder function updates a CfnPermission$Builder instance using the provided configuration. The function takes the CfnPermission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
eventSourceToken | java.lang.String | cdk.support/lookup-entry | :event-source-token |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
functionUrlAuthType | java.lang.String | cdk.support/lookup-entry | :function-url-auth-type |
principal | java.lang.String | cdk.support/lookup-entry | :principal |
principalOrgId | java.lang.String | cdk.support/lookup-entry | :principal-org-id |
sourceAccount | java.lang.String | cdk.support/lookup-entry | :source-account |
sourceArn | java.lang.String | cdk.support/lookup-entry | :source-arn |
The build-cfn-permission-builder function updates a CfnPermission$Builder instance using the provided configuration. The function takes the CfnPermission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `eventSourceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-token` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `functionUrlAuthType` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-url-auth-type` | | `principal` | java.lang.String | [[cdk.support/lookup-entry]] | `:principal` | | `principalOrgId` | java.lang.String | [[cdk.support/lookup-entry]] | `:principal-org-id` | | `sourceAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-account` | | `sourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-arn` |
(build-cfn-permission-props-builder builder id config)
The build-cfn-permission-props-builder function updates a CfnPermissionProps$Builder instance using the provided configuration. The function takes the CfnPermissionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
eventSourceToken | java.lang.String | cdk.support/lookup-entry | :event-source-token |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
functionUrlAuthType | java.lang.String | cdk.support/lookup-entry | :function-url-auth-type |
principal | java.lang.String | cdk.support/lookup-entry | :principal |
principalOrgId | java.lang.String | cdk.support/lookup-entry | :principal-org-id |
sourceAccount | java.lang.String | cdk.support/lookup-entry | :source-account |
sourceArn | java.lang.String | cdk.support/lookup-entry | :source-arn |
The build-cfn-permission-props-builder function updates a CfnPermissionProps$Builder instance using the provided configuration. The function takes the CfnPermissionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `eventSourceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-token` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `functionUrlAuthType` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-url-auth-type` | | `principal` | java.lang.String | [[cdk.support/lookup-entry]] | `:principal` | | `principalOrgId` | java.lang.String | [[cdk.support/lookup-entry]] | `:principal-org-id` | | `sourceAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-account` | | `sourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-arn` |
(build-cfn-url-builder builder id config)
The build-cfn-url-builder function updates a CfnUrl$Builder instance using the provided configuration. The function takes the CfnUrl$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authType | java.lang.String | cdk.support/lookup-entry | :auth-type |
cors | software.amazon.awscdk.services.lambda.CfnUrl$CorsProperty | cdk.support/lookup-entry | :cors |
invokeMode | java.lang.String | cdk.support/lookup-entry | :invoke-mode |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
targetFunctionArn | java.lang.String | cdk.support/lookup-entry | :target-function-arn |
The build-cfn-url-builder function updates a CfnUrl$Builder instance using the provided configuration. The function takes the CfnUrl$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authType` | java.lang.String | [[cdk.support/lookup-entry]] | `:auth-type` | | `cors` | software.amazon.awscdk.services.lambda.CfnUrl$CorsProperty | [[cdk.support/lookup-entry]] | `:cors` | | `invokeMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:invoke-mode` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` | | `targetFunctionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-function-arn` |
(build-cfn-url-cors-property-builder builder id config)
The build-cfn-url-cors-property-builder function updates a CfnUrl$CorsProperty$Builder instance using the provided configuration. The function takes the CfnUrl$CorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allowCredentials | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :allow-credentials |
allowHeaders | java.util.List | cdk.support/lookup-entry | :allow-headers |
allowMethods | java.util.List | cdk.support/lookup-entry | :allow-methods |
allowOrigins | java.util.List | cdk.support/lookup-entry | :allow-origins |
exposeHeaders | java.util.List | cdk.support/lookup-entry | :expose-headers |
maxAge | java.lang.Number | cdk.support/lookup-entry | :max-age |
The build-cfn-url-cors-property-builder function updates a CfnUrl$CorsProperty$Builder instance using the provided configuration. The function takes the CfnUrl$CorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allowCredentials` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:allow-credentials` | | `allowHeaders` | java.util.List | [[cdk.support/lookup-entry]] | `:allow-headers` | | `allowMethods` | java.util.List | [[cdk.support/lookup-entry]] | `:allow-methods` | | `allowOrigins` | java.util.List | [[cdk.support/lookup-entry]] | `:allow-origins` | | `exposeHeaders` | java.util.List | [[cdk.support/lookup-entry]] | `:expose-headers` | | `maxAge` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-age` |
(build-cfn-url-props-builder builder id config)
The build-cfn-url-props-builder function updates a CfnUrlProps$Builder instance using the provided configuration. The function takes the CfnUrlProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authType | java.lang.String | cdk.support/lookup-entry | :auth-type |
cors | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :cors |
invokeMode | java.lang.String | cdk.support/lookup-entry | :invoke-mode |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
targetFunctionArn | java.lang.String | cdk.support/lookup-entry | :target-function-arn |
The build-cfn-url-props-builder function updates a CfnUrlProps$Builder instance using the provided configuration. The function takes the CfnUrlProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authType` | java.lang.String | [[cdk.support/lookup-entry]] | `:auth-type` | | `cors` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:cors` | | `invokeMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:invoke-mode` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` | | `targetFunctionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-function-arn` |
(build-cfn-version-builder builder id config)
The build-cfn-version-builder function updates a CfnVersion$Builder instance using the provided configuration. The function takes the CfnVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
codeSha256 | java.lang.String | cdk.support/lookup-entry | :code-sha256 |
description | java.lang.String | cdk.support/lookup-entry | :description |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
policy | java.lang.Object | cdk.support/lookup-entry | :policy |
provisionedConcurrencyConfig | software.amazon.awscdk.services.lambda.CfnVersion$ProvisionedConcurrencyConfigurationProperty | cdk.support/lookup-entry | :provisioned-concurrency-config |
runtimePolicy | software.amazon.awscdk.services.lambda.CfnVersion$RuntimePolicyProperty | cdk.support/lookup-entry | :runtime-policy |
The build-cfn-version-builder function updates a CfnVersion$Builder instance using the provided configuration. The function takes the CfnVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `codeSha256` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-sha256` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `policy` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy` | | `provisionedConcurrencyConfig` | software.amazon.awscdk.services.lambda.CfnVersion$ProvisionedConcurrencyConfigurationProperty | [[cdk.support/lookup-entry]] | `:provisioned-concurrency-config` | | `runtimePolicy` | software.amazon.awscdk.services.lambda.CfnVersion$RuntimePolicyProperty | [[cdk.support/lookup-entry]] | `:runtime-policy` |
(build-cfn-version-props-builder builder id config)
The build-cfn-version-props-builder function updates a CfnVersionProps$Builder instance using the provided configuration. The function takes the CfnVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
codeSha256 | java.lang.String | cdk.support/lookup-entry | :code-sha256 |
description | java.lang.String | cdk.support/lookup-entry | :description |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
policy | java.lang.Object | cdk.support/lookup-entry | :policy |
provisionedConcurrencyConfig | software.amazon.awscdk.services.lambda.CfnVersion$ProvisionedConcurrencyConfigurationProperty | cdk.support/lookup-entry | :provisioned-concurrency-config |
runtimePolicy | software.amazon.awscdk.services.lambda.CfnVersion$RuntimePolicyProperty | cdk.support/lookup-entry | :runtime-policy |
The build-cfn-version-props-builder function updates a CfnVersionProps$Builder instance using the provided configuration. The function takes the CfnVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `codeSha256` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-sha256` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `policy` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy` | | `provisionedConcurrencyConfig` | software.amazon.awscdk.services.lambda.CfnVersion$ProvisionedConcurrencyConfigurationProperty | [[cdk.support/lookup-entry]] | `:provisioned-concurrency-config` | | `runtimePolicy` | software.amazon.awscdk.services.lambda.CfnVersion$RuntimePolicyProperty | [[cdk.support/lookup-entry]] | `:runtime-policy` |
(build-cfn-version-provisioned-concurrency-configuration-property-builder
builder
id
config)
The build-cfn-version-provisioned-concurrency-configuration-property-builder function updates a CfnVersion$ProvisionedConcurrencyConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnVersion$ProvisionedConcurrencyConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
The build-cfn-version-provisioned-concurrency-configuration-property-builder function updates a CfnVersion$ProvisionedConcurrencyConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnVersion$ProvisionedConcurrencyConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` |
(build-cfn-version-runtime-policy-property-builder builder id config)
The build-cfn-version-runtime-policy-property-builder function updates a CfnVersion$RuntimePolicyProperty$Builder instance using the provided configuration. The function takes the CfnVersion$RuntimePolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
runtimeVersionArn | java.lang.String | cdk.support/lookup-entry | :runtime-version-arn |
updateRuntimeOn | java.lang.String | cdk.support/lookup-entry | :update-runtime-on |
The build-cfn-version-runtime-policy-property-builder function updates a CfnVersion$RuntimePolicyProperty$Builder instance using the provided configuration. The function takes the CfnVersion$RuntimePolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `runtimeVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:runtime-version-arn` | | `updateRuntimeOn` | java.lang.String | [[cdk.support/lookup-entry]] | `:update-runtime-on` |
(build-code-config-builder builder id config)
The build-code-config-builder function updates a CodeConfig$Builder instance using the provided configuration. The function takes the CodeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
image | software.amazon.awscdk.services.lambda.CodeImageConfig | cdk.support/lookup-entry | :image |
inlineCode | java.lang.String | cdk.support/lookup-entry | :inline-code |
s3Location | software.amazon.awscdk.services.s3.Location | cdk.support/lookup-entry | :s3-location |
The build-code-config-builder function updates a CodeConfig$Builder instance using the provided configuration. The function takes the CodeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `image` | software.amazon.awscdk.services.lambda.CodeImageConfig | [[cdk.support/lookup-entry]] | `:image` | | `inlineCode` | java.lang.String | [[cdk.support/lookup-entry]] | `:inline-code` | | `s3Location` | software.amazon.awscdk.services.s3.Location | [[cdk.support/lookup-entry]] | `:s3-location` |
(build-code-image-config-builder builder id config)
The build-code-image-config-builder function updates a CodeImageConfig$Builder instance using the provided configuration. The function takes the CodeImageConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
cmd | java.util.List | cdk.support/lookup-entry | :cmd |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
imageUri | java.lang.String | cdk.support/lookup-entry | :image-uri |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-code-image-config-builder function updates a CodeImageConfig$Builder instance using the provided configuration. The function takes the CodeImageConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `cmd` | java.util.List | [[cdk.support/lookup-entry]] | `:cmd` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `imageUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-uri` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-code-signing-config-builder builder id config)
The build-code-signing-config-builder function updates a CodeSigningConfig$Builder instance using the provided configuration. The function takes the CodeSigningConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
signingProfiles | java.util.List | cdk.support/lookup-entry | :signing-profiles |
untrustedArtifactOnDeployment | software.amazon.awscdk.services.lambda.UntrustedArtifactOnDeployment | cdk.api.services.lambda/untrusted-artifact-on-deployment | :untrusted-artifact-on-deployment |
The build-code-signing-config-builder function updates a CodeSigningConfig$Builder instance using the provided configuration. The function takes the CodeSigningConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `signingProfiles` | java.util.List | [[cdk.support/lookup-entry]] | `:signing-profiles` | | `untrustedArtifactOnDeployment` | software.amazon.awscdk.services.lambda.UntrustedArtifactOnDeployment | [[cdk.api.services.lambda/untrusted-artifact-on-deployment]] | `:untrusted-artifact-on-deployment` |
(build-code-signing-config-props-builder builder id config)
The build-code-signing-config-props-builder function updates a CodeSigningConfigProps$Builder instance using the provided configuration. The function takes the CodeSigningConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
signingProfiles | java.util.List | cdk.support/lookup-entry | :signing-profiles |
untrustedArtifactOnDeployment | software.amazon.awscdk.services.lambda.UntrustedArtifactOnDeployment | cdk.api.services.lambda/untrusted-artifact-on-deployment | :untrusted-artifact-on-deployment |
The build-code-signing-config-props-builder function updates a CodeSigningConfigProps$Builder instance using the provided configuration. The function takes the CodeSigningConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `signingProfiles` | java.util.List | [[cdk.support/lookup-entry]] | `:signing-profiles` | | `untrustedArtifactOnDeployment` | software.amazon.awscdk.services.lambda.UntrustedArtifactOnDeployment | [[cdk.api.services.lambda/untrusted-artifact-on-deployment]] | `:untrusted-artifact-on-deployment` |
(build-custom-command-options-builder builder id config)
The build-custom-command-options-builder function updates a CustomCommandOptions$Builder instance using the provided configuration. The function takes the CustomCommandOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
commandOptions | java.util.Map | cdk.support/lookup-entry | :command-options |
deployTime | java.lang.Boolean | cdk.support/lookup-entry | :deploy-time |
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 |
readers | java.util.List | cdk.support/lookup-entry | :readers |
The build-custom-command-options-builder function updates a CustomCommandOptions$Builder instance using the provided configuration. The function takes the CustomCommandOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `commandOptions` | java.util.Map | [[cdk.support/lookup-entry]] | `:command-options` | | `deployTime` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:deploy-time` | | `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` | | `readers` | java.util.List | [[cdk.support/lookup-entry]] | `:readers` |
(build-destination-config-builder builder id config)
The build-destination-config-builder function updates a DestinationConfig$Builder instance using the provided configuration. The function takes the DestinationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destination | java.lang.String | cdk.support/lookup-entry | :destination |
The build-destination-config-builder function updates a DestinationConfig$Builder instance using the provided configuration. The function takes the DestinationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destination` | java.lang.String | [[cdk.support/lookup-entry]] | `:destination` |
(build-destination-options-builder builder id config)
The build-destination-options-builder function updates a DestinationOptions$Builder instance using the provided configuration. The function takes the DestinationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
type | software.amazon.awscdk.services.lambda.DestinationType | cdk.api.services.lambda/destination-type | :type |
The build-destination-options-builder function updates a DestinationOptions$Builder instance using the provided configuration. The function takes the DestinationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `type` | software.amazon.awscdk.services.lambda.DestinationType | [[cdk.api.services.lambda/destination-type]] | `:type` |
(build-dlq-destination-config-builder builder id config)
The build-dlq-destination-config-builder function updates a DlqDestinationConfig$Builder instance using the provided configuration. The function takes the DlqDestinationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
destination | java.lang.String | cdk.support/lookup-entry | :destination |
The build-dlq-destination-config-builder function updates a DlqDestinationConfig$Builder instance using the provided configuration. The function takes the DlqDestinationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `destination` | java.lang.String | [[cdk.support/lookup-entry]] | `:destination` |
(build-docker-build-asset-options-builder builder id config)
The build-docker-build-asset-options-builder function updates a DockerBuildAssetOptions$Builder instance using the provided configuration. The function takes the DockerBuildAssetOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
imagePath | java.lang.String | cdk.support/lookup-entry | :image-path |
outputPath | java.lang.String | cdk.support/lookup-entry | :output-path |
platform | java.lang.String | cdk.support/lookup-entry | :platform |
targetStage | java.lang.String | cdk.support/lookup-entry | :target-stage |
The build-docker-build-asset-options-builder function updates a DockerBuildAssetOptions$Builder instance using the provided configuration. The function takes the DockerBuildAssetOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `imagePath` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-path` | | `outputPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:output-path` | | `platform` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform` | | `targetStage` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-stage` |
(build-docker-image-function-builder builder id config)
The build-docker-image-function-builder function updates a DockerImageFunction$Builder instance using the provided configuration. The function takes the DockerImageFunction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
code | software.amazon.awscdk.services.lambda.DockerImageCode | cdk.support/lookup-entry | :code |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-docker-image-function-builder function updates a DockerImageFunction$Builder instance using the provided configuration. The function takes the DockerImageFunction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `code` | software.amazon.awscdk.services.lambda.DockerImageCode | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-docker-image-function-props-builder builder id config)
The build-docker-image-function-props-builder function updates a DockerImageFunctionProps$Builder instance using the provided configuration. The function takes the DockerImageFunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
code | software.amazon.awscdk.services.lambda.DockerImageCode | cdk.support/lookup-entry | :code |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-docker-image-function-props-builder function updates a DockerImageFunctionProps$Builder instance using the provided configuration. The function takes the DockerImageFunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `code` | software.amazon.awscdk.services.lambda.DockerImageCode | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-ecr-image-code-builder builder id config)
The build-ecr-image-code-builder function updates a EcrImageCode$Builder instance using the provided configuration. The function takes the EcrImageCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
cmd | java.util.List | cdk.support/lookup-entry | :cmd |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
tag | java.lang.String | cdk.support/lookup-entry | :tag |
tagOrDigest | java.lang.String | cdk.support/lookup-entry | :tag-or-digest |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-ecr-image-code-builder function updates a EcrImageCode$Builder instance using the provided configuration. The function takes the EcrImageCode$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `cmd` | java.util.List | [[cdk.support/lookup-entry]] | `:cmd` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `tag` | java.lang.String | [[cdk.support/lookup-entry]] | `:tag` | | `tagOrDigest` | java.lang.String | [[cdk.support/lookup-entry]] | `:tag-or-digest` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-ecr-image-code-props-builder builder id config)
The build-ecr-image-code-props-builder function updates a EcrImageCodeProps$Builder instance using the provided configuration. The function takes the EcrImageCodeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
cmd | java.util.List | cdk.support/lookup-entry | :cmd |
entrypoint | java.util.List | cdk.support/lookup-entry | :entrypoint |
tag | java.lang.String | cdk.support/lookup-entry | :tag |
tagOrDigest | java.lang.String | cdk.support/lookup-entry | :tag-or-digest |
workingDirectory | java.lang.String | cdk.support/lookup-entry | :working-directory |
The build-ecr-image-code-props-builder function updates a EcrImageCodeProps$Builder instance using the provided configuration. The function takes the EcrImageCodeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `cmd` | java.util.List | [[cdk.support/lookup-entry]] | `:cmd` | | `entrypoint` | java.util.List | [[cdk.support/lookup-entry]] | `:entrypoint` | | `tag` | java.lang.String | [[cdk.support/lookup-entry]] | `:tag` | | `tagOrDigest` | java.lang.String | [[cdk.support/lookup-entry]] | `:tag-or-digest` | | `workingDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:working-directory` |
(build-environment-options-builder builder id config)
The build-environment-options-builder function updates a EnvironmentOptions$Builder instance using the provided configuration. The function takes the EnvironmentOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
removeInEdge | java.lang.Boolean | cdk.support/lookup-entry | :remove-in-edge |
The build-environment-options-builder function updates a EnvironmentOptions$Builder instance using the provided configuration. The function takes the EnvironmentOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `removeInEdge` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:remove-in-edge` |
(build-event-invoke-config-builder builder id config)
The build-event-invoke-config-builder function updates a EventInvokeConfig$Builder instance using the provided configuration. The function takes the EventInvokeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
function | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :function |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-event-invoke-config-builder function updates a EventInvokeConfig$Builder instance using the provided configuration. The function takes the EventInvokeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `function` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:function` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-event-invoke-config-options-builder builder id config)
The build-event-invoke-config-options-builder function updates a EventInvokeConfigOptions$Builder instance using the provided configuration. The function takes the EventInvokeConfigOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-event-invoke-config-options-builder function updates a EventInvokeConfigOptions$Builder instance using the provided configuration. The function takes the EventInvokeConfigOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-event-invoke-config-props-builder builder id config)
The build-event-invoke-config-props-builder function updates a EventInvokeConfigProps$Builder instance using the provided configuration. The function takes the EventInvokeConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
function | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :function |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
qualifier | java.lang.String | cdk.support/lookup-entry | :qualifier |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-event-invoke-config-props-builder function updates a EventInvokeConfigProps$Builder instance using the provided configuration. The function takes the EventInvokeConfigProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `function` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:function` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `qualifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:qualifier` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-event-source-mapping-builder builder id config)
The build-event-source-mapping-builder function updates a EventSourceMapping$Builder instance using the provided configuration. The function takes the EventSourceMapping$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
batchSize | java.lang.Number | cdk.support/lookup-entry | :batch-size |
bisectBatchOnError | java.lang.Boolean | cdk.support/lookup-entry | :bisect-batch-on-error |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
eventSourceArn | java.lang.String | cdk.support/lookup-entry | :event-source-arn |
filters | java.util.List | cdk.support/lookup-entry | :filters |
kafkaBootstrapServers | java.util.List | cdk.support/lookup-entry | :kafka-bootstrap-servers |
kafkaConsumerGroupId | java.lang.String | cdk.support/lookup-entry | :kafka-consumer-group-id |
kafkaTopic | java.lang.String | cdk.support/lookup-entry | :kafka-topic |
maxBatchingWindow | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-batching-window |
maxConcurrency | java.lang.Number | cdk.support/lookup-entry | :max-concurrency |
maxRecordAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-record-age |
onFailure | software.amazon.awscdk.services.lambda.IEventSourceDlq | cdk.support/lookup-entry | :on-failure |
parallelizationFactor | java.lang.Number | cdk.support/lookup-entry | :parallelization-factor |
reportBatchItemFailures | java.lang.Boolean | cdk.support/lookup-entry | :report-batch-item-failures |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
sourceAccessConfigurations | java.util.List | cdk.support/lookup-entry | :source-access-configurations |
startingPosition | software.amazon.awscdk.services.lambda.StartingPosition | cdk.api.services.lambda/starting-position | :starting-position |
startingPositionTimestamp | java.lang.Number | cdk.support/lookup-entry | :starting-position-timestamp |
supportS3OnFailureDestination | java.lang.Boolean | cdk.support/lookup-entry | :support-s3-on-failure-destination |
target | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :target |
tumblingWindow | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :tumbling-window |
The build-event-source-mapping-builder function updates a EventSourceMapping$Builder instance using the provided configuration. The function takes the EventSourceMapping$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `batchSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:batch-size` | | `bisectBatchOnError` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:bisect-batch-on-error` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `eventSourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-arn` | | `filters` | java.util.List | [[cdk.support/lookup-entry]] | `:filters` | | `kafkaBootstrapServers` | java.util.List | [[cdk.support/lookup-entry]] | `:kafka-bootstrap-servers` | | `kafkaConsumerGroupId` | java.lang.String | [[cdk.support/lookup-entry]] | `:kafka-consumer-group-id` | | `kafkaTopic` | java.lang.String | [[cdk.support/lookup-entry]] | `:kafka-topic` | | `maxBatchingWindow` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-batching-window` | | `maxConcurrency` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-concurrency` | | `maxRecordAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-record-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IEventSourceDlq | [[cdk.support/lookup-entry]] | `:on-failure` | | `parallelizationFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:parallelization-factor` | | `reportBatchItemFailures` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:report-batch-item-failures` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `sourceAccessConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:source-access-configurations` | | `startingPosition` | software.amazon.awscdk.services.lambda.StartingPosition | [[cdk.api.services.lambda/starting-position]] | `:starting-position` | | `startingPositionTimestamp` | java.lang.Number | [[cdk.support/lookup-entry]] | `:starting-position-timestamp` | | `supportS3OnFailureDestination` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:support-s3-on-failure-destination` | | `target` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:target` | | `tumblingWindow` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:tumbling-window` |
(build-event-source-mapping-options-builder builder id config)
The build-event-source-mapping-options-builder function updates a EventSourceMappingOptions$Builder instance using the provided configuration. The function takes the EventSourceMappingOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
batchSize | java.lang.Number | cdk.support/lookup-entry | :batch-size |
bisectBatchOnError | java.lang.Boolean | cdk.support/lookup-entry | :bisect-batch-on-error |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
eventSourceArn | java.lang.String | cdk.support/lookup-entry | :event-source-arn |
filters | java.util.List | cdk.support/lookup-entry | :filters |
kafkaBootstrapServers | java.util.List | cdk.support/lookup-entry | :kafka-bootstrap-servers |
kafkaConsumerGroupId | java.lang.String | cdk.support/lookup-entry | :kafka-consumer-group-id |
kafkaTopic | java.lang.String | cdk.support/lookup-entry | :kafka-topic |
maxBatchingWindow | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-batching-window |
maxConcurrency | java.lang.Number | cdk.support/lookup-entry | :max-concurrency |
maxRecordAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-record-age |
onFailure | software.amazon.awscdk.services.lambda.IEventSourceDlq | cdk.support/lookup-entry | :on-failure |
parallelizationFactor | java.lang.Number | cdk.support/lookup-entry | :parallelization-factor |
reportBatchItemFailures | java.lang.Boolean | cdk.support/lookup-entry | :report-batch-item-failures |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
sourceAccessConfigurations | java.util.List | cdk.support/lookup-entry | :source-access-configurations |
startingPosition | software.amazon.awscdk.services.lambda.StartingPosition | cdk.api.services.lambda/starting-position | :starting-position |
startingPositionTimestamp | java.lang.Number | cdk.support/lookup-entry | :starting-position-timestamp |
supportS3OnFailureDestination | java.lang.Boolean | cdk.support/lookup-entry | :support-s3-on-failure-destination |
tumblingWindow | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :tumbling-window |
The build-event-source-mapping-options-builder function updates a EventSourceMappingOptions$Builder instance using the provided configuration. The function takes the EventSourceMappingOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `batchSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:batch-size` | | `bisectBatchOnError` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:bisect-batch-on-error` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `eventSourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-arn` | | `filters` | java.util.List | [[cdk.support/lookup-entry]] | `:filters` | | `kafkaBootstrapServers` | java.util.List | [[cdk.support/lookup-entry]] | `:kafka-bootstrap-servers` | | `kafkaConsumerGroupId` | java.lang.String | [[cdk.support/lookup-entry]] | `:kafka-consumer-group-id` | | `kafkaTopic` | java.lang.String | [[cdk.support/lookup-entry]] | `:kafka-topic` | | `maxBatchingWindow` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-batching-window` | | `maxConcurrency` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-concurrency` | | `maxRecordAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-record-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IEventSourceDlq | [[cdk.support/lookup-entry]] | `:on-failure` | | `parallelizationFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:parallelization-factor` | | `reportBatchItemFailures` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:report-batch-item-failures` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `sourceAccessConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:source-access-configurations` | | `startingPosition` | software.amazon.awscdk.services.lambda.StartingPosition | [[cdk.api.services.lambda/starting-position]] | `:starting-position` | | `startingPositionTimestamp` | java.lang.Number | [[cdk.support/lookup-entry]] | `:starting-position-timestamp` | | `supportS3OnFailureDestination` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:support-s3-on-failure-destination` | | `tumblingWindow` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:tumbling-window` |
(build-event-source-mapping-props-builder builder id config)
The build-event-source-mapping-props-builder function updates a EventSourceMappingProps$Builder instance using the provided configuration. The function takes the EventSourceMappingProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
batchSize | java.lang.Number | cdk.support/lookup-entry | :batch-size |
bisectBatchOnError | java.lang.Boolean | cdk.support/lookup-entry | :bisect-batch-on-error |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
eventSourceArn | java.lang.String | cdk.support/lookup-entry | :event-source-arn |
filters | java.util.List | cdk.support/lookup-entry | :filters |
kafkaBootstrapServers | java.util.List | cdk.support/lookup-entry | :kafka-bootstrap-servers |
kafkaConsumerGroupId | java.lang.String | cdk.support/lookup-entry | :kafka-consumer-group-id |
kafkaTopic | java.lang.String | cdk.support/lookup-entry | :kafka-topic |
maxBatchingWindow | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-batching-window |
maxConcurrency | java.lang.Number | cdk.support/lookup-entry | :max-concurrency |
maxRecordAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-record-age |
onFailure | software.amazon.awscdk.services.lambda.IEventSourceDlq | cdk.support/lookup-entry | :on-failure |
parallelizationFactor | java.lang.Number | cdk.support/lookup-entry | :parallelization-factor |
reportBatchItemFailures | java.lang.Boolean | cdk.support/lookup-entry | :report-batch-item-failures |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
sourceAccessConfigurations | java.util.List | cdk.support/lookup-entry | :source-access-configurations |
startingPosition | software.amazon.awscdk.services.lambda.StartingPosition | cdk.api.services.lambda/starting-position | :starting-position |
startingPositionTimestamp | java.lang.Number | cdk.support/lookup-entry | :starting-position-timestamp |
supportS3OnFailureDestination | java.lang.Boolean | cdk.support/lookup-entry | :support-s3-on-failure-destination |
target | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :target |
tumblingWindow | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :tumbling-window |
The build-event-source-mapping-props-builder function updates a EventSourceMappingProps$Builder instance using the provided configuration. The function takes the EventSourceMappingProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `batchSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:batch-size` | | `bisectBatchOnError` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:bisect-batch-on-error` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `eventSourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-arn` | | `filters` | java.util.List | [[cdk.support/lookup-entry]] | `:filters` | | `kafkaBootstrapServers` | java.util.List | [[cdk.support/lookup-entry]] | `:kafka-bootstrap-servers` | | `kafkaConsumerGroupId` | java.lang.String | [[cdk.support/lookup-entry]] | `:kafka-consumer-group-id` | | `kafkaTopic` | java.lang.String | [[cdk.support/lookup-entry]] | `:kafka-topic` | | `maxBatchingWindow` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-batching-window` | | `maxConcurrency` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-concurrency` | | `maxRecordAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-record-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IEventSourceDlq | [[cdk.support/lookup-entry]] | `:on-failure` | | `parallelizationFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:parallelization-factor` | | `reportBatchItemFailures` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:report-batch-item-failures` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `sourceAccessConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:source-access-configurations` | | `startingPosition` | software.amazon.awscdk.services.lambda.StartingPosition | [[cdk.api.services.lambda/starting-position]] | `:starting-position` | | `startingPositionTimestamp` | java.lang.Number | [[cdk.support/lookup-entry]] | `:starting-position-timestamp` | | `supportS3OnFailureDestination` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:support-s3-on-failure-destination` | | `target` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:target` | | `tumblingWindow` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:tumbling-window` |
(build-file-system-config-builder builder id config)
The build-file-system-config-builder function updates a FileSystemConfig$Builder instance using the provided configuration. The function takes the FileSystemConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
connections | software.amazon.awscdk.services.ec2.Connections | cdk.support/lookup-entry | :connections |
dependency | java.util.List | cdk.support/lookup-entry | :dependency |
localMountPath | java.lang.String | cdk.support/lookup-entry | :local-mount-path |
policies | java.util.List | cdk.support/lookup-entry | :policies |
The build-file-system-config-builder function updates a FileSystemConfig$Builder instance using the provided configuration. The function takes the FileSystemConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `connections` | software.amazon.awscdk.services.ec2.Connections | [[cdk.support/lookup-entry]] | `:connections` | | `dependency` | java.util.List | [[cdk.support/lookup-entry]] | `:dependency` | | `localMountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:local-mount-path` | | `policies` | java.util.List | [[cdk.support/lookup-entry]] | `:policies` |
(build-function-attributes-builder builder id config)
The build-function-attributes-builder function updates a FunctionAttributes$Builder instance using the provided configuration. The function takes the FunctionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
functionArn | java.lang.String | cdk.support/lookup-entry | :function-arn |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
sameEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :same-environment |
securityGroup | software.amazon.awscdk.services.ec2.ISecurityGroup | cdk.support/lookup-entry | :security-group |
skipPermissions | java.lang.Boolean | cdk.support/lookup-entry | :skip-permissions |
The build-function-attributes-builder function updates a FunctionAttributes$Builder instance using the provided configuration. The function takes the FunctionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `functionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-arn` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `sameEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:same-environment` | | `securityGroup` | software.amazon.awscdk.services.ec2.ISecurityGroup | [[cdk.support/lookup-entry]] | `:security-group` | | `skipPermissions` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:skip-permissions` |
(build-function-builder builder id config)
The build-function-builder function updates a Function$Builder instance using the provided configuration. The function takes the Function$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
code | software.amazon.awscdk.services.lambda.Code | cdk.support/lookup-entry | :code |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
handler | java.lang.String | cdk.support/lookup-entry | :handler |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtime | software.amazon.awscdk.services.lambda.Runtime | cdk.support/lookup-entry | :runtime |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-function-builder function updates a Function$Builder instance using the provided configuration. The function takes the Function$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `code` | software.amazon.awscdk.services.lambda.Code | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `handler` | java.lang.String | [[cdk.support/lookup-entry]] | `:handler` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtime` | software.amazon.awscdk.services.lambda.Runtime | [[cdk.support/lookup-entry]] | `:runtime` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-function-options-builder builder id config)
The build-function-options-builder function updates a FunctionOptions$Builder instance using the provided configuration. The function takes the FunctionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-function-options-builder function updates a FunctionOptions$Builder instance using the provided configuration. The function takes the FunctionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-function-props-builder builder id config)
The build-function-props-builder function updates a FunctionProps$Builder instance using the provided configuration. The function takes the FunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
code | software.amazon.awscdk.services.lambda.Code | cdk.support/lookup-entry | :code |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
handler | java.lang.String | cdk.support/lookup-entry | :handler |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtime | software.amazon.awscdk.services.lambda.Runtime | cdk.support/lookup-entry | :runtime |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-function-props-builder function updates a FunctionProps$Builder instance using the provided configuration. The function takes the FunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `code` | software.amazon.awscdk.services.lambda.Code | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `handler` | java.lang.String | [[cdk.support/lookup-entry]] | `:handler` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtime` | software.amazon.awscdk.services.lambda.Runtime | [[cdk.support/lookup-entry]] | `:runtime` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-function-url-builder builder id config)
The build-function-url-builder function updates a FunctionUrl$Builder instance using the provided configuration. The function takes the FunctionUrl$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authType | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | cdk.api.services.lambda/function-url-auth-type | :auth-type |
cors | software.amazon.awscdk.services.lambda.FunctionUrlCorsOptions | cdk.support/lookup-entry | :cors |
function | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :function |
invokeMode | software.amazon.awscdk.services.lambda.InvokeMode | cdk.api.services.lambda/invoke-mode | :invoke-mode |
The build-function-url-builder function updates a FunctionUrl$Builder instance using the provided configuration. The function takes the FunctionUrl$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authType` | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | [[cdk.api.services.lambda/function-url-auth-type]] | `:auth-type` | | `cors` | software.amazon.awscdk.services.lambda.FunctionUrlCorsOptions | [[cdk.support/lookup-entry]] | `:cors` | | `function` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:function` | | `invokeMode` | software.amazon.awscdk.services.lambda.InvokeMode | [[cdk.api.services.lambda/invoke-mode]] | `:invoke-mode` |
(build-function-url-cors-options-builder builder id config)
The build-function-url-cors-options-builder function updates a FunctionUrlCorsOptions$Builder instance using the provided configuration. The function takes the FunctionUrlCorsOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allowCredentials | java.lang.Boolean | cdk.support/lookup-entry | :allow-credentials |
allowedHeaders | java.util.List | cdk.support/lookup-entry | :allowed-headers |
allowedMethods | java.util.List | cdk.support/lookup-entry | :allowed-methods |
allowedOrigins | java.util.List | cdk.support/lookup-entry | :allowed-origins |
exposedHeaders | java.util.List | cdk.support/lookup-entry | :exposed-headers |
maxAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-age |
The build-function-url-cors-options-builder function updates a FunctionUrlCorsOptions$Builder instance using the provided configuration. The function takes the FunctionUrlCorsOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allowCredentials` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-credentials` | | `allowedHeaders` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-headers` | | `allowedMethods` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-methods` | | `allowedOrigins` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-origins` | | `exposedHeaders` | java.util.List | [[cdk.support/lookup-entry]] | `:exposed-headers` | | `maxAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-age` |
(build-function-url-options-builder builder id config)
The build-function-url-options-builder function updates a FunctionUrlOptions$Builder instance using the provided configuration. The function takes the FunctionUrlOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authType | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | cdk.api.services.lambda/function-url-auth-type | :auth-type |
cors | software.amazon.awscdk.services.lambda.FunctionUrlCorsOptions | cdk.support/lookup-entry | :cors |
invokeMode | software.amazon.awscdk.services.lambda.InvokeMode | cdk.api.services.lambda/invoke-mode | :invoke-mode |
The build-function-url-options-builder function updates a FunctionUrlOptions$Builder instance using the provided configuration. The function takes the FunctionUrlOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authType` | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | [[cdk.api.services.lambda/function-url-auth-type]] | `:auth-type` | | `cors` | software.amazon.awscdk.services.lambda.FunctionUrlCorsOptions | [[cdk.support/lookup-entry]] | `:cors` | | `invokeMode` | software.amazon.awscdk.services.lambda.InvokeMode | [[cdk.api.services.lambda/invoke-mode]] | `:invoke-mode` |
(build-function-url-props-builder builder id config)
The build-function-url-props-builder function updates a FunctionUrlProps$Builder instance using the provided configuration. The function takes the FunctionUrlProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authType | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | cdk.api.services.lambda/function-url-auth-type | :auth-type |
cors | software.amazon.awscdk.services.lambda.FunctionUrlCorsOptions | cdk.support/lookup-entry | :cors |
function | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :function |
invokeMode | software.amazon.awscdk.services.lambda.InvokeMode | cdk.api.services.lambda/invoke-mode | :invoke-mode |
The build-function-url-props-builder function updates a FunctionUrlProps$Builder instance using the provided configuration. The function takes the FunctionUrlProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authType` | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | [[cdk.api.services.lambda/function-url-auth-type]] | `:auth-type` | | `cors` | software.amazon.awscdk.services.lambda.FunctionUrlCorsOptions | [[cdk.support/lookup-entry]] | `:cors` | | `function` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:function` | | `invokeMode` | software.amazon.awscdk.services.lambda.InvokeMode | [[cdk.api.services.lambda/invoke-mode]] | `:invoke-mode` |
(build-lambda-runtime-props-builder builder id config)
The build-lambda-runtime-props-builder function updates a LambdaRuntimeProps$Builder instance using the provided configuration. The function takes the LambdaRuntimeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
bundlingDockerImage | java.lang.String | cdk.support/lookup-entry | :bundling-docker-image |
isVariable | java.lang.Boolean | cdk.support/lookup-entry | :is-variable |
supportsCodeGuruProfiling | java.lang.Boolean | cdk.support/lookup-entry | :supports-code-guru-profiling |
supportsInlineCode | java.lang.Boolean | cdk.support/lookup-entry | :supports-inline-code |
supportsSnapStart | java.lang.Boolean | cdk.support/lookup-entry | :supports-snap-start |
The build-lambda-runtime-props-builder function updates a LambdaRuntimeProps$Builder instance using the provided configuration. The function takes the LambdaRuntimeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `bundlingDockerImage` | java.lang.String | [[cdk.support/lookup-entry]] | `:bundling-docker-image` | | `isVariable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:is-variable` | | `supportsCodeGuruProfiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:supports-code-guru-profiling` | | `supportsInlineCode` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:supports-inline-code` | | `supportsSnapStart` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:supports-snap-start` |
(build-layer-version-attributes-builder builder id config)
The build-layer-version-attributes-builder function updates a LayerVersionAttributes$Builder instance using the provided configuration. The function takes the LayerVersionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
compatibleRuntimes | java.util.List | cdk.support/lookup-entry | :compatible-runtimes |
layerVersionArn | java.lang.String | cdk.support/lookup-entry | :layer-version-arn |
The build-layer-version-attributes-builder function updates a LayerVersionAttributes$Builder instance using the provided configuration. The function takes the LayerVersionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `compatibleRuntimes` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-runtimes` | | `layerVersionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-version-arn` |
(build-layer-version-builder builder id config)
The build-layer-version-builder function updates a LayerVersion$Builder instance using the provided configuration. The function takes the LayerVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
code | software.amazon.awscdk.services.lambda.Code | cdk.support/lookup-entry | :code |
compatibleArchitectures | java.util.List | cdk.support/lookup-entry | :compatible-architectures |
compatibleRuntimes | java.util.List | cdk.support/lookup-entry | :compatible-runtimes |
description | java.lang.String | cdk.support/lookup-entry | :description |
layerVersionName | java.lang.String | cdk.support/lookup-entry | :layer-version-name |
license | java.lang.String | cdk.support/lookup-entry | :license |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
The build-layer-version-builder function updates a LayerVersion$Builder instance using the provided configuration. The function takes the LayerVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `code` | software.amazon.awscdk.services.lambda.Code | [[cdk.support/lookup-entry]] | `:code` | | `compatibleArchitectures` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-architectures` | | `compatibleRuntimes` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-runtimes` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `layerVersionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-version-name` | | `license` | java.lang.String | [[cdk.support/lookup-entry]] | `:license` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` |
(build-layer-version-options-builder builder id config)
The build-layer-version-options-builder function updates a LayerVersionOptions$Builder instance using the provided configuration. The function takes the LayerVersionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
layerVersionName | java.lang.String | cdk.support/lookup-entry | :layer-version-name |
license | java.lang.String | cdk.support/lookup-entry | :license |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
The build-layer-version-options-builder function updates a LayerVersionOptions$Builder instance using the provided configuration. The function takes the LayerVersionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `layerVersionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-version-name` | | `license` | java.lang.String | [[cdk.support/lookup-entry]] | `:license` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` |
(build-layer-version-permission-builder builder id config)
The build-layer-version-permission-builder function updates a LayerVersionPermission$Builder instance using the provided configuration. The function takes the LayerVersionPermission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accountId | java.lang.String | cdk.support/lookup-entry | :account-id |
organizationId | java.lang.String | cdk.support/lookup-entry | :organization-id |
The build-layer-version-permission-builder function updates a LayerVersionPermission$Builder instance using the provided configuration. The function takes the LayerVersionPermission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accountId` | java.lang.String | [[cdk.support/lookup-entry]] | `:account-id` | | `organizationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:organization-id` |
(build-layer-version-props-builder builder id config)
The build-layer-version-props-builder function updates a LayerVersionProps$Builder instance using the provided configuration. The function takes the LayerVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
code | software.amazon.awscdk.services.lambda.Code | cdk.support/lookup-entry | :code |
compatibleArchitectures | java.util.List | cdk.support/lookup-entry | :compatible-architectures |
compatibleRuntimes | java.util.List | cdk.support/lookup-entry | :compatible-runtimes |
description | java.lang.String | cdk.support/lookup-entry | :description |
layerVersionName | java.lang.String | cdk.support/lookup-entry | :layer-version-name |
license | java.lang.String | cdk.support/lookup-entry | :license |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
The build-layer-version-props-builder function updates a LayerVersionProps$Builder instance using the provided configuration. The function takes the LayerVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `code` | software.amazon.awscdk.services.lambda.Code | [[cdk.support/lookup-entry]] | `:code` | | `compatibleArchitectures` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-architectures` | | `compatibleRuntimes` | java.util.List | [[cdk.support/lookup-entry]] | `:compatible-runtimes` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `layerVersionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:layer-version-name` | | `license` | java.lang.String | [[cdk.support/lookup-entry]] | `:license` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` |
(build-log-retention-retry-options-builder builder id config)
The build-log-retention-retry-options-builder function updates a LogRetentionRetryOptions$Builder instance using the provided configuration. The function takes the LogRetentionRetryOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
base | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :base |
maxRetries | java.lang.Number | cdk.support/lookup-entry | :max-retries |
The build-log-retention-retry-options-builder function updates a LogRetentionRetryOptions$Builder instance using the provided configuration. The function takes the LogRetentionRetryOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `base` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:base` | | `maxRetries` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-retries` |
(build-params-and-secrets-options-builder builder id config)
The build-params-and-secrets-options-builder function updates a ParamsAndSecretsOptions$Builder instance using the provided configuration. The function takes the ParamsAndSecretsOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
cacheEnabled | java.lang.Boolean | cdk.support/lookup-entry | :cache-enabled |
cacheSize | java.lang.Number | cdk.support/lookup-entry | :cache-size |
httpPort | java.lang.Number | cdk.support/lookup-entry | :http-port |
logLevel | software.amazon.awscdk.services.lambda.ParamsAndSecretsLogLevel | cdk.api.services.lambda/params-and-secrets-log-level | :log-level |
maxConnections | java.lang.Number | cdk.support/lookup-entry | :max-connections |
parameterStoreTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :parameter-store-timeout |
parameterStoreTtl | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :parameter-store-ttl |
secretsManagerTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :secrets-manager-timeout |
secretsManagerTtl | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :secrets-manager-ttl |
The build-params-and-secrets-options-builder function updates a ParamsAndSecretsOptions$Builder instance using the provided configuration. The function takes the ParamsAndSecretsOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `cacheEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cache-enabled` | | `cacheSize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cache-size` | | `httpPort` | java.lang.Number | [[cdk.support/lookup-entry]] | `:http-port` | | `logLevel` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLogLevel | [[cdk.api.services.lambda/params-and-secrets-log-level]] | `:log-level` | | `maxConnections` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-connections` | | `parameterStoreTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:parameter-store-timeout` | | `parameterStoreTtl` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:parameter-store-ttl` | | `secretsManagerTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:secrets-manager-timeout` | | `secretsManagerTtl` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:secrets-manager-ttl` |
(build-permission-builder builder id config)
The build-permission-builder function updates a Permission$Builder instance using the provided configuration. The function takes the Permission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
eventSourceToken | java.lang.String | cdk.support/lookup-entry | :event-source-token |
functionUrlAuthType | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | cdk.api.services.lambda/function-url-auth-type | :function-url-auth-type |
organizationId | java.lang.String | cdk.support/lookup-entry | :organization-id |
principal | software.amazon.awscdk.services.iam.IPrincipal | cdk.support/lookup-entry | :principal |
scope | software.constructs.Construct | cdk.support/lookup-entry | :scope |
sourceAccount | java.lang.String | cdk.support/lookup-entry | :source-account |
sourceArn | java.lang.String | cdk.support/lookup-entry | :source-arn |
The build-permission-builder function updates a Permission$Builder instance using the provided configuration. The function takes the Permission$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `eventSourceToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source-token` | | `functionUrlAuthType` | software.amazon.awscdk.services.lambda.FunctionUrlAuthType | [[cdk.api.services.lambda/function-url-auth-type]] | `:function-url-auth-type` | | `organizationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:organization-id` | | `principal` | software.amazon.awscdk.services.iam.IPrincipal | [[cdk.support/lookup-entry]] | `:principal` | | `scope` | software.constructs.Construct | [[cdk.support/lookup-entry]] | `:scope` | | `sourceAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-account` | | `sourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-arn` |
(build-resource-bind-options-builder builder id config)
The build-resource-bind-options-builder function updates a ResourceBindOptions$Builder instance using the provided configuration. The function takes the ResourceBindOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
resourceProperty | java.lang.String | cdk.support/lookup-entry | :resource-property |
The build-resource-bind-options-builder function updates a ResourceBindOptions$Builder instance using the provided configuration. The function takes the ResourceBindOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `resourceProperty` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-property` |
(build-runtime-builder builder id config)
The build-runtime-builder function updates a Runtime$Builder instance using the provided configuration. The function takes the Runtime$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
bundlingDockerImage | java.lang.String | cdk.support/lookup-entry | :bundling-docker-image |
isVariable | java.lang.Boolean | cdk.support/lookup-entry | :is-variable |
supportsCodeGuruProfiling | java.lang.Boolean | cdk.support/lookup-entry | :supports-code-guru-profiling |
supportsInlineCode | java.lang.Boolean | cdk.support/lookup-entry | :supports-inline-code |
supportsSnapStart | java.lang.Boolean | cdk.support/lookup-entry | :supports-snap-start |
The build-runtime-builder function updates a Runtime$Builder instance using the provided configuration. The function takes the Runtime$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `bundlingDockerImage` | java.lang.String | [[cdk.support/lookup-entry]] | `:bundling-docker-image` | | `isVariable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:is-variable` | | `supportsCodeGuruProfiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:supports-code-guru-profiling` | | `supportsInlineCode` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:supports-inline-code` | | `supportsSnapStart` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:supports-snap-start` |
(build-singleton-function-builder builder id config)
The build-singleton-function-builder function updates a SingletonFunction$Builder instance using the provided configuration. The function takes the SingletonFunction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
code | software.amazon.awscdk.services.lambda.Code | cdk.support/lookup-entry | :code |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
handler | java.lang.String | cdk.support/lookup-entry | :handler |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
lambdaPurpose | java.lang.String | cdk.support/lookup-entry | :lambda-purpose |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtime | software.amazon.awscdk.services.lambda.Runtime | cdk.support/lookup-entry | :runtime |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
uuid | java.lang.String | cdk.support/lookup-entry | :uuid |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-singleton-function-builder function updates a SingletonFunction$Builder instance using the provided configuration. The function takes the SingletonFunction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `code` | software.amazon.awscdk.services.lambda.Code | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `handler` | java.lang.String | [[cdk.support/lookup-entry]] | `:handler` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `lambdaPurpose` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-purpose` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtime` | software.amazon.awscdk.services.lambda.Runtime | [[cdk.support/lookup-entry]] | `:runtime` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `uuid` | java.lang.String | [[cdk.support/lookup-entry]] | `:uuid` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-singleton-function-props-builder builder id config)
The build-singleton-function-props-builder function updates a SingletonFunctionProps$Builder instance using the provided configuration. The function takes the SingletonFunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
adotInstrumentation | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | cdk.support/lookup-entry | :adot-instrumentation |
allowAllOutbound | java.lang.Boolean | cdk.support/lookup-entry | :allow-all-outbound |
allowPublicSubnet | java.lang.Boolean | cdk.support/lookup-entry | :allow-public-subnet |
applicationLogLevel | java.lang.String | cdk.support/lookup-entry | :application-log-level |
applicationLogLevelV2 | software.amazon.awscdk.services.lambda.ApplicationLogLevel | cdk.api.services.lambda/application-log-level | :application-log-level-v2 |
architecture | software.amazon.awscdk.services.lambda.Architecture | cdk.support/lookup-entry | :architecture |
code | software.amazon.awscdk.services.lambda.Code | cdk.support/lookup-entry | :code |
codeSigningConfig | software.amazon.awscdk.services.lambda.ICodeSigningConfig | cdk.support/lookup-entry | :code-signing-config |
currentVersionOptions | software.amazon.awscdk.services.lambda.VersionOptions | cdk.support/lookup-entry | :current-version-options |
deadLetterQueue | software.amazon.awscdk.services.sqs.IQueue | cdk.support/lookup-entry | :dead-letter-queue |
deadLetterQueueEnabled | java.lang.Boolean | cdk.support/lookup-entry | :dead-letter-queue-enabled |
deadLetterTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :dead-letter-topic |
description | java.lang.String | cdk.support/lookup-entry | :description |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
environmentEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :environment-encryption |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
events | java.util.List | cdk.support/lookup-entry | :events |
filesystem | software.amazon.awscdk.services.lambda.FileSystem | cdk.support/lookup-entry | :filesystem |
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
handler | java.lang.String | cdk.support/lookup-entry | :handler |
initialPolicy | java.util.List | cdk.support/lookup-entry | :initial-policy |
insightsVersion | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | cdk.support/lookup-entry | :insights-version |
ipv6AllowedForDualStack | java.lang.Boolean | cdk.support/lookup-entry | :ipv6-allowed-for-dual-stack |
lambdaPurpose | java.lang.String | cdk.support/lookup-entry | :lambda-purpose |
layers | java.util.List | cdk.support/lookup-entry | :layers |
logFormat | java.lang.String | cdk.support/lookup-entry | :log-format |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
logRetentionRetryOptions | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | cdk.support/lookup-entry | :log-retention-retry-options |
logRetentionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :log-retention-role |
loggingFormat | software.amazon.awscdk.services.lambda.LoggingFormat | cdk.api.services.lambda/logging-format | :logging-format |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
paramsAndSecrets | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | cdk.support/lookup-entry | :params-and-secrets |
profiling | java.lang.Boolean | cdk.support/lookup-entry | :profiling |
profilingGroup | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | cdk.support/lookup-entry | :profiling-group |
reservedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :reserved-concurrent-executions |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runtime | software.amazon.awscdk.services.lambda.Runtime | cdk.support/lookup-entry | :runtime |
runtimeManagementMode | software.amazon.awscdk.services.lambda.RuntimeManagementMode | cdk.support/lookup-entry | :runtime-management-mode |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
snapStart | software.amazon.awscdk.services.lambda.SnapStartConf | cdk.support/lookup-entry | :snap-start |
systemLogLevel | java.lang.String | cdk.support/lookup-entry | :system-log-level |
systemLogLevelV2 | software.amazon.awscdk.services.lambda.SystemLogLevel | cdk.api.services.lambda/system-log-level | :system-log-level-v2 |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
tracing | software.amazon.awscdk.services.lambda.Tracing | cdk.api.services.lambda/tracing | :tracing |
uuid | java.lang.String | cdk.support/lookup-entry | :uuid |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-singleton-function-props-builder function updates a SingletonFunctionProps$Builder instance using the provided configuration. The function takes the SingletonFunctionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `adotInstrumentation` | software.amazon.awscdk.services.lambda.AdotInstrumentationConfig | [[cdk.support/lookup-entry]] | `:adot-instrumentation` | | `allowAllOutbound` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-all-outbound` | | `allowPublicSubnet` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-public-subnet` | | `applicationLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-log-level` | | `applicationLogLevelV2` | software.amazon.awscdk.services.lambda.ApplicationLogLevel | [[cdk.api.services.lambda/application-log-level]] | `:application-log-level-v2` | | `architecture` | software.amazon.awscdk.services.lambda.Architecture | [[cdk.support/lookup-entry]] | `:architecture` | | `code` | software.amazon.awscdk.services.lambda.Code | [[cdk.support/lookup-entry]] | `:code` | | `codeSigningConfig` | software.amazon.awscdk.services.lambda.ICodeSigningConfig | [[cdk.support/lookup-entry]] | `:code-signing-config` | | `currentVersionOptions` | software.amazon.awscdk.services.lambda.VersionOptions | [[cdk.support/lookup-entry]] | `:current-version-options` | | `deadLetterQueue` | software.amazon.awscdk.services.sqs.IQueue | [[cdk.support/lookup-entry]] | `:dead-letter-queue` | | `deadLetterQueueEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:dead-letter-queue-enabled` | | `deadLetterTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:dead-letter-topic` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `environmentEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:environment-encryption` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filesystem` | software.amazon.awscdk.services.lambda.FileSystem | [[cdk.support/lookup-entry]] | `:filesystem` | | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `handler` | java.lang.String | [[cdk.support/lookup-entry]] | `:handler` | | `initialPolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:initial-policy` | | `insightsVersion` | software.amazon.awscdk.services.lambda.LambdaInsightsVersion | [[cdk.support/lookup-entry]] | `:insights-version` | | `ipv6AllowedForDualStack` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:ipv6-allowed-for-dual-stack` | | `lambdaPurpose` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-purpose` | | `layers` | java.util.List | [[cdk.support/lookup-entry]] | `:layers` | | `logFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-format` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `logRetentionRetryOptions` | software.amazon.awscdk.services.lambda.LogRetentionRetryOptions | [[cdk.support/lookup-entry]] | `:log-retention-retry-options` | | `logRetentionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:log-retention-role` | | `loggingFormat` | software.amazon.awscdk.services.lambda.LoggingFormat | [[cdk.api.services.lambda/logging-format]] | `:logging-format` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `paramsAndSecrets` | software.amazon.awscdk.services.lambda.ParamsAndSecretsLayerVersion | [[cdk.support/lookup-entry]] | `:params-and-secrets` | | `profiling` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profiling` | | `profilingGroup` | software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup | [[cdk.support/lookup-entry]] | `:profiling-group` | | `reservedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:reserved-concurrent-executions` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runtime` | software.amazon.awscdk.services.lambda.Runtime | [[cdk.support/lookup-entry]] | `:runtime` | | `runtimeManagementMode` | software.amazon.awscdk.services.lambda.RuntimeManagementMode | [[cdk.support/lookup-entry]] | `:runtime-management-mode` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `snapStart` | software.amazon.awscdk.services.lambda.SnapStartConf | [[cdk.support/lookup-entry]] | `:snap-start` | | `systemLogLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:system-log-level` | | `systemLogLevelV2` | software.amazon.awscdk.services.lambda.SystemLogLevel | [[cdk.api.services.lambda/system-log-level]] | `:system-log-level-v2` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `tracing` | software.amazon.awscdk.services.lambda.Tracing | [[cdk.api.services.lambda/tracing]] | `:tracing` | | `uuid` | java.lang.String | [[cdk.support/lookup-entry]] | `:uuid` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-source-access-configuration-builder builder id config)
The build-source-access-configuration-builder function updates a SourceAccessConfiguration$Builder instance using the provided configuration. The function takes the SourceAccessConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
type | software.amazon.awscdk.services.lambda.SourceAccessConfigurationType | cdk.support/lookup-entry | :type |
uri | java.lang.String | cdk.support/lookup-entry | :uri |
The build-source-access-configuration-builder function updates a SourceAccessConfiguration$Builder instance using the provided configuration. The function takes the SourceAccessConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `type` | software.amazon.awscdk.services.lambda.SourceAccessConfigurationType | [[cdk.support/lookup-entry]] | `:type` | | `uri` | java.lang.String | [[cdk.support/lookup-entry]] | `:uri` |
(build-utilization-scaling-options-builder builder id config)
The build-utilization-scaling-options-builder function updates a UtilizationScalingOptions$Builder instance using the provided configuration. The function takes the UtilizationScalingOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
disableScaleIn | java.lang.Boolean | cdk.support/lookup-entry | :disable-scale-in |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
scaleInCooldown | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :scale-in-cooldown |
scaleOutCooldown | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :scale-out-cooldown |
utilizationTarget | java.lang.Number | cdk.support/lookup-entry | :utilization-target |
The build-utilization-scaling-options-builder function updates a UtilizationScalingOptions$Builder instance using the provided configuration. The function takes the UtilizationScalingOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `disableScaleIn` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-scale-in` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `scaleInCooldown` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:scale-in-cooldown` | | `scaleOutCooldown` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:scale-out-cooldown` | | `utilizationTarget` | java.lang.Number | [[cdk.support/lookup-entry]] | `:utilization-target` |
(build-version-attributes-builder builder id config)
The build-version-attributes-builder function updates a VersionAttributes$Builder instance using the provided configuration. The function takes the VersionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
lambda | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :lambda |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-version-attributes-builder function updates a VersionAttributes$Builder instance using the provided configuration. The function takes the VersionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `lambda` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:lambda` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-version-builder builder id config)
The build-version-builder function updates a Version$Builder instance using the provided configuration. The function takes the Version$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
codeSha256 | java.lang.String | cdk.support/lookup-entry | :code-sha256 |
description | java.lang.String | cdk.support/lookup-entry | :description |
lambda | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :lambda |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-version-builder function updates a Version$Builder instance using the provided configuration. The function takes the Version$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `codeSha256` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-sha256` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `lambda` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:lambda` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-version-options-builder builder id config)
The build-version-options-builder function updates a VersionOptions$Builder instance using the provided configuration. The function takes the VersionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
codeSha256 | java.lang.String | cdk.support/lookup-entry | :code-sha256 |
description | java.lang.String | cdk.support/lookup-entry | :description |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-version-options-builder function updates a VersionOptions$Builder instance using the provided configuration. The function takes the VersionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `codeSha256` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-sha256` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-version-props-builder builder id config)
The build-version-props-builder function updates a VersionProps$Builder instance using the provided configuration. The function takes the VersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
codeSha256 | java.lang.String | cdk.support/lookup-entry | :code-sha256 |
description | java.lang.String | cdk.support/lookup-entry | :description |
lambda | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :lambda |
maxEventAge | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-event-age |
onFailure | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-failure |
onSuccess | software.amazon.awscdk.services.lambda.IDestination | cdk.support/lookup-entry | :on-success |
provisionedConcurrentExecutions | java.lang.Number | cdk.support/lookup-entry | :provisioned-concurrent-executions |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
The build-version-props-builder function updates a VersionProps$Builder instance using the provided configuration. The function takes the VersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `codeSha256` | java.lang.String | [[cdk.support/lookup-entry]] | `:code-sha256` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `lambda` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:lambda` | | `maxEventAge` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-event-age` | | `onFailure` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-failure` | | `onSuccess` | software.amazon.awscdk.services.lambda.IDestination | [[cdk.support/lookup-entry]] | `:on-success` | | `provisionedConcurrentExecutions` | java.lang.Number | [[cdk.support/lookup-entry]] | `:provisioned-concurrent-executions` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` |
(build-version-weight-builder builder id config)
The build-version-weight-builder function updates a VersionWeight$Builder instance using the provided configuration. The function takes the VersionWeight$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
version | software.amazon.awscdk.services.lambda.IVersion | cdk.support/lookup-entry | :version |
weight | java.lang.Number | cdk.support/lookup-entry | :weight |
The build-version-weight-builder function updates a VersionWeight$Builder instance using the provided configuration. The function takes the VersionWeight$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `version` | software.amazon.awscdk.services.lambda.IVersion | [[cdk.support/lookup-entry]] | `:version` | | `weight` | java.lang.Number | [[cdk.support/lookup-entry]] | `:weight` |
(cfn-alias-alias-routing-configuration-property-builder id config)
Creates a CfnAlias$AliasRoutingConfigurationProperty$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 `CfnAlias$AliasRoutingConfigurationProperty$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-alias-builder scope id config)
Creates a CfnAlias$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 `CfnAlias$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-alias-props-builder id config)
Creates a CfnAliasProps$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 `CfnAliasProps$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-alias-provisioned-concurrency-configuration-property-builder id config)
Creates a CfnAlias$ProvisionedConcurrencyConfigurationProperty$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 `CfnAlias$ProvisionedConcurrencyConfigurationProperty$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-alias-version-weight-property-builder id config)
Creates a CfnAlias$VersionWeightProperty$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 `CfnAlias$VersionWeightProperty$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-signing-config-allowed-publishers-property-builder id config)
Creates a CfnCodeSigningConfig$AllowedPublishersProperty$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 `CfnCodeSigningConfig$AllowedPublishersProperty$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-signing-config-builder scope id config)
Creates a CfnCodeSigningConfig$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 `CfnCodeSigningConfig$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-signing-config-code-signing-policies-property-builder id config)
Creates a CfnCodeSigningConfig$CodeSigningPoliciesProperty$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 `CfnCodeSigningConfig$CodeSigningPoliciesProperty$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-signing-config-props-builder id config)
Creates a CfnCodeSigningConfigProps$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 `CfnCodeSigningConfigProps$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-event-invoke-config-builder scope id config)
Creates a CfnEventInvokeConfig$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 `CfnEventInvokeConfig$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-event-invoke-config-destination-config-property-builder id config)
Creates a CfnEventInvokeConfig$DestinationConfigProperty$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 `CfnEventInvokeConfig$DestinationConfigProperty$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-event-invoke-config-on-failure-property-builder id config)
Creates a CfnEventInvokeConfig$OnFailureProperty$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 `CfnEventInvokeConfig$OnFailureProperty$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-event-invoke-config-on-success-property-builder id config)
Creates a CfnEventInvokeConfig$OnSuccessProperty$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 `CfnEventInvokeConfig$OnSuccessProperty$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-event-invoke-config-props-builder id config)
Creates a CfnEventInvokeConfigProps$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 `CfnEventInvokeConfigProps$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-event-source-mapping-amazon-managed-kafka-event-source-config-property-builder
id
config)
Creates a CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty$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 `CfnEventSourceMapping$AmazonManagedKafkaEventSourceConfigProperty$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-event-source-mapping-builder scope id config)
Creates a CfnEventSourceMapping$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 `CfnEventSourceMapping$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-event-source-mapping-destination-config-property-builder id config)
Creates a CfnEventSourceMapping$DestinationConfigProperty$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 `CfnEventSourceMapping$DestinationConfigProperty$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-event-source-mapping-document-db-event-source-config-property-builder
id
config)
Creates a CfnEventSourceMapping$DocumentDBEventSourceConfigProperty$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 `CfnEventSourceMapping$DocumentDBEventSourceConfigProperty$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-event-source-mapping-endpoints-property-builder id config)
Creates a CfnEventSourceMapping$EndpointsProperty$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 `CfnEventSourceMapping$EndpointsProperty$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-event-source-mapping-filter-criteria-property-builder id config)
Creates a CfnEventSourceMapping$FilterCriteriaProperty$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 `CfnEventSourceMapping$FilterCriteriaProperty$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-event-source-mapping-filter-property-builder id config)
Creates a CfnEventSourceMapping$FilterProperty$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 `CfnEventSourceMapping$FilterProperty$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-event-source-mapping-on-failure-property-builder id config)
Creates a CfnEventSourceMapping$OnFailureProperty$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 `CfnEventSourceMapping$OnFailureProperty$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-event-source-mapping-props-builder id config)
Creates a CfnEventSourceMappingProps$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 `CfnEventSourceMappingProps$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-event-source-mapping-scaling-config-property-builder id config)
Creates a CfnEventSourceMapping$ScalingConfigProperty$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 `CfnEventSourceMapping$ScalingConfigProperty$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-event-source-mapping-self-managed-event-source-property-builder id config)
Creates a CfnEventSourceMapping$SelfManagedEventSourceProperty$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 `CfnEventSourceMapping$SelfManagedEventSourceProperty$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-event-source-mapping-self-managed-kafka-event-source-config-property-builder
id
config)
Creates a CfnEventSourceMapping$SelfManagedKafkaEventSourceConfigProperty$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 `CfnEventSourceMapping$SelfManagedKafkaEventSourceConfigProperty$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-event-source-mapping-source-access-configuration-property-builder id
config)
Creates a CfnEventSourceMapping$SourceAccessConfigurationProperty$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 `CfnEventSourceMapping$SourceAccessConfigurationProperty$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-function-builder scope id config)
Creates a CfnFunction$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 `CfnFunction$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-function-code-property-builder id config)
Creates a CfnFunction$CodeProperty$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 `CfnFunction$CodeProperty$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-function-dead-letter-config-property-builder id config)
Creates a CfnFunction$DeadLetterConfigProperty$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 `CfnFunction$DeadLetterConfigProperty$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-function-environment-property-builder id config)
Creates a CfnFunction$EnvironmentProperty$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 `CfnFunction$EnvironmentProperty$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-function-ephemeral-storage-property-builder id config)
Creates a CfnFunction$EphemeralStorageProperty$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 `CfnFunction$EphemeralStorageProperty$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-function-file-system-config-property-builder id config)
Creates a CfnFunction$FileSystemConfigProperty$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 `CfnFunction$FileSystemConfigProperty$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-function-image-config-property-builder id config)
Creates a CfnFunction$ImageConfigProperty$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 `CfnFunction$ImageConfigProperty$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-function-logging-config-property-builder id config)
Creates a CfnFunction$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 `CfnFunction$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-function-props-builder id config)
Creates a CfnFunctionProps$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 `CfnFunctionProps$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-function-runtime-management-config-property-builder id config)
Creates a CfnFunction$RuntimeManagementConfigProperty$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 `CfnFunction$RuntimeManagementConfigProperty$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-function-snap-start-property-builder id config)
Creates a CfnFunction$SnapStartProperty$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 `CfnFunction$SnapStartProperty$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-function-snap-start-response-property-builder id config)
Creates a CfnFunction$SnapStartResponseProperty$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 `CfnFunction$SnapStartResponseProperty$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-function-tracing-config-property-builder id config)
Creates a CfnFunction$TracingConfigProperty$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 `CfnFunction$TracingConfigProperty$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-function-vpc-config-property-builder id config)
Creates a CfnFunction$VpcConfigProperty$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 `CfnFunction$VpcConfigProperty$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-layer-version-builder scope id config)
Creates a CfnLayerVersion$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 `CfnLayerVersion$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-layer-version-content-property-builder id config)
Creates a CfnLayerVersion$ContentProperty$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 `CfnLayerVersion$ContentProperty$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-layer-version-permission-builder scope id config)
Creates a CfnLayerVersionPermission$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 `CfnLayerVersionPermission$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-layer-version-permission-props-builder id config)
Creates a CfnLayerVersionPermissionProps$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 `CfnLayerVersionPermissionProps$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-layer-version-props-builder id config)
Creates a CfnLayerVersionProps$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 `CfnLayerVersionProps$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-parameters-code-builder id config)
Creates a CfnParametersCode$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 `CfnParametersCode$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 |
(cfn-parameters-code-props-builder id config)
Creates a CfnParametersCodeProps$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 `CfnParametersCodeProps$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-permission-builder scope id config)
Creates a CfnPermission$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 `CfnPermission$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-permission-props-builder id config)
Creates a CfnPermissionProps$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 `CfnPermissionProps$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-url-builder scope id config)
Creates a CfnUrl$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 `CfnUrl$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-url-cors-property-builder id config)
Creates a CfnUrl$CorsProperty$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 `CfnUrl$CorsProperty$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-url-props-builder id config)
Creates a CfnUrlProps$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 `CfnUrlProps$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-version-builder scope id config)
Creates a CfnVersion$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 `CfnVersion$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-version-props-builder id config)
Creates a CfnVersionProps$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 `CfnVersionProps$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-version-provisioned-concurrency-configuration-property-builder id config)
Creates a CfnVersion$ProvisionedConcurrencyConfigurationProperty$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 `CfnVersion$ProvisionedConcurrencyConfigurationProperty$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-version-runtime-policy-property-builder id config)
Creates a CfnVersion$RuntimePolicyProperty$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 `CfnVersion$RuntimePolicyProperty$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 |
(code-config-builder id config)
Creates a CodeConfig$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 `CodeConfig$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 |
(code-image-config-builder id config)
Creates a CodeImageConfig$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 `CodeImageConfig$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 |
(code-signing-config-builder scope id config)
Creates a CodeSigningConfig$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 `CodeSigningConfig$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 |
(code-signing-config-props-builder id config)
Creates a CodeSigningConfigProps$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 `CodeSigningConfigProps$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-command-options-builder id config)
Creates a CustomCommandOptions$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 `CustomCommandOptions$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 |
(destination-config-builder id config)
Creates a DestinationConfig$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 `DestinationConfig$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 |
(destination-options-builder id config)
Creates a DestinationOptions$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 `DestinationOptions$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 |
(destination-type config id item-key)
The destination-type
function data interprets values in the provided config data into a
DestinationType
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:
DestinationType
- the value is returned.:success
- DestinationType/SUCCESS
is returned:failure
- DestinationType/FAILURE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `destination-type` function data interprets values in the provided config data into a `DestinationType` 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 `DestinationType` - the value is returned. * is `:success` - `DestinationType/SUCCESS` is returned * is `:failure` - `DestinationType/FAILURE` is returned If a value is not found or matches the above criteria, nil is returned.
(dlq-destination-config-builder id config)
Creates a DlqDestinationConfig$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 `DlqDestinationConfig$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-asset-options-builder id config)
Creates a DockerBuildAssetOptions$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 `DockerBuildAssetOptions$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-function-builder scope id config)
Creates a DockerImageFunction$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 `DockerImageFunction$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 |
(docker-image-function-props-builder id config)
Creates a DockerImageFunctionProps$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 `DockerImageFunctionProps$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 |
(ecr-image-code-builder repository id config)
Creates a EcrImageCode$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[software.amazon.awscdk.services.ecr.IRepository] | Argument | DataType | Description | |---|---|---| | repository | software.amazon.awscdk.services.ecr.IRepository | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `EcrImageCode$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[software.amazon.awscdk.services.ecr.IRepository]___ | Argument | DataType | Description | |---|---|---| | repository | software.amazon.awscdk.services.ecr.IRepository | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecr-image-code-props-builder id config)
Creates a EcrImageCodeProps$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 `EcrImageCodeProps$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-options-builder id config)
Creates a EnvironmentOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `EnvironmentOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(event-invoke-config-builder scope id config)
Creates a EventInvokeConfig$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 `EventInvokeConfig$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 |
(event-invoke-config-options-builder id config)
Creates a EventInvokeConfigOptions$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 `EventInvokeConfigOptions$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 |
(event-invoke-config-props-builder id config)
Creates a EventInvokeConfigProps$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 `EventInvokeConfigProps$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 |
(event-source-mapping-builder scope id config)
Creates a EventSourceMapping$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 `EventSourceMapping$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 |
(event-source-mapping-options-builder id config)
Creates a EventSourceMappingOptions$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 `EventSourceMappingOptions$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 |
(event-source-mapping-props-builder id config)
Creates a EventSourceMappingProps$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 `EventSourceMappingProps$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-system-config-builder id config)
Creates a FileSystemConfig$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 `FileSystemConfig$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 |
(function-attributes-builder id config)
Creates a FunctionAttributes$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 `FunctionAttributes$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 |
(function-builder scope id config)
Creates a Function$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 `Function$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 |
(function-options-builder id config)
Creates a FunctionOptions$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 `FunctionOptions$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 |
(function-props-builder id config)
Creates a FunctionProps$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 `FunctionProps$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 |
(function-url-auth-type config id item-key)
The function-url-auth-type
function data interprets values in the provided config data into a
FunctionUrlAuthType
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:
FunctionUrlAuthType
- the value is returned.:aws-iam
- FunctionUrlAuthType/AWS_IAM
is returned:none
- FunctionUrlAuthType/NONE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `function-url-auth-type` function data interprets values in the provided config data into a `FunctionUrlAuthType` 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 `FunctionUrlAuthType` - the value is returned. * is `:aws-iam` - `FunctionUrlAuthType/AWS_IAM` is returned * is `:none` - `FunctionUrlAuthType/NONE` is returned If a value is not found or matches the above criteria, nil is returned.
(function-url-builder scope id config)
Creates a FunctionUrl$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 `FunctionUrl$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 |
(function-url-cors-options-builder id config)
Creates a FunctionUrlCorsOptions$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 `FunctionUrlCorsOptions$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 |
(function-url-options-builder id config)
Creates a FunctionUrlOptions$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 `FunctionUrlOptions$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 |
(function-url-props-builder id config)
Creates a FunctionUrlProps$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 `FunctionUrlProps$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 |
(http-method config id item-key)
The http-method
function data interprets values in the provided config data into a
HttpMethod
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:
HttpMethod
- the value is returned.:put
- HttpMethod/PUT
is returned:delete
- HttpMethod/DELETE
is returned:head
- HttpMethod/HEAD
is returned:options
- HttpMethod/OPTIONS
is returned:all
- HttpMethod/ALL
is returned:patch
- HttpMethod/PATCH
is returned:get
- HttpMethod/GET
is returned:post
- HttpMethod/POST
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `http-method` function data interprets values in the provided config data into a `HttpMethod` 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 `HttpMethod` - the value is returned. * is `:put` - `HttpMethod/PUT` is returned * is `:delete` - `HttpMethod/DELETE` is returned * is `:head` - `HttpMethod/HEAD` is returned * is `:options` - `HttpMethod/OPTIONS` is returned * is `:all` - `HttpMethod/ALL` is returned * is `:patch` - `HttpMethod/PATCH` is returned * is `:get` - `HttpMethod/GET` is returned * is `:post` - `HttpMethod/POST` is returned If a value is not found or matches the above criteria, nil is returned.
(invoke-mode config id item-key)
The invoke-mode
function data interprets values in the provided config data into a
InvokeMode
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:
InvokeMode
- the value is returned.:response-stream
- InvokeMode/RESPONSE_STREAM
is returned:buffered
- InvokeMode/BUFFERED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `invoke-mode` function data interprets values in the provided config data into a `InvokeMode` 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 `InvokeMode` - the value is returned. * is `:response-stream` - `InvokeMode/RESPONSE_STREAM` is returned * is `:buffered` - `InvokeMode/BUFFERED` is returned If a value is not found or matches the above criteria, nil is returned.
(lambda-runtime-props-builder id config)
Creates a LambdaRuntimeProps$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 `LambdaRuntimeProps$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 |
(layer-version-attributes-builder id config)
Creates a LayerVersionAttributes$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 `LayerVersionAttributes$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 |
(layer-version-builder scope id config)
Creates a LayerVersion$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 `LayerVersion$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 |
(layer-version-options-builder id config)
Creates a LayerVersionOptions$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 `LayerVersionOptions$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 |
(layer-version-permission-builder id config)
Creates a LayerVersionPermission$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 `LayerVersionPermission$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 |
(layer-version-props-builder id config)
Creates a LayerVersionProps$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 `LayerVersionProps$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 |
(log-format config id item-key)
The log-format
function data interprets values in the provided config data into a
LogFormat
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:
LogFormat
- the value is returned.:text
- LogFormat/TEXT
is returned:json
- LogFormat/JSON
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `log-format` function data interprets values in the provided config data into a `LogFormat` 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 `LogFormat` - the value is returned. * is `:text` - `LogFormat/TEXT` is returned * is `:json` - `LogFormat/JSON` is returned If a value is not found or matches the above criteria, nil is returned.
(log-retention-retry-options-builder id config)
Creates a LogRetentionRetryOptions$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 `LogRetentionRetryOptions$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 |
(logging-format config id item-key)
The logging-format
function data interprets values in the provided config data into a
LoggingFormat
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:
LoggingFormat
- the value is returned.:text
- LoggingFormat/TEXT
is returned:json
- LoggingFormat/JSON
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `logging-format` function data interprets values in the provided config data into a `LoggingFormat` 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 `LoggingFormat` - the value is returned. * is `:text` - `LoggingFormat/TEXT` is returned * is `:json` - `LoggingFormat/JSON` is returned If a value is not found or matches the above criteria, nil is returned.
(params-and-secrets-log-level config id item-key)
The params-and-secrets-log-level
function data interprets values in the provided config data into a
ParamsAndSecretsLogLevel
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:
ParamsAndSecretsLogLevel
- the value is returned.:warn
- ParamsAndSecretsLogLevel/WARN
is returned:info
- ParamsAndSecretsLogLevel/INFO
is returned:error
- ParamsAndSecretsLogLevel/ERROR
is returned:debug
- ParamsAndSecretsLogLevel/DEBUG
is returned:none
- ParamsAndSecretsLogLevel/NONE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `params-and-secrets-log-level` function data interprets values in the provided config data into a `ParamsAndSecretsLogLevel` 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 `ParamsAndSecretsLogLevel` - the value is returned. * is `:warn` - `ParamsAndSecretsLogLevel/WARN` is returned * is `:info` - `ParamsAndSecretsLogLevel/INFO` is returned * is `:error` - `ParamsAndSecretsLogLevel/ERROR` is returned * is `:debug` - `ParamsAndSecretsLogLevel/DEBUG` is returned * is `:none` - `ParamsAndSecretsLogLevel/NONE` is returned If a value is not found or matches the above criteria, nil is returned.
(params-and-secrets-options-builder id config)
Creates a ParamsAndSecretsOptions$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 `ParamsAndSecretsOptions$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 |
(params-and-secrets-versions config id item-key)
The params-and-secrets-versions
function data interprets values in the provided config data into a
ParamsAndSecretsVersions
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:
ParamsAndSecretsVersions
- the value is returned.:v1-0-103
- ParamsAndSecretsVersions/V1_0_103
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `params-and-secrets-versions` function data interprets values in the provided config data into a `ParamsAndSecretsVersions` 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 `ParamsAndSecretsVersions` - the value is returned. * is `:v1-0-103` - `ParamsAndSecretsVersions/V1_0_103` is returned If a value is not found or matches the above criteria, nil is returned.
(permission-builder id config)
Creates a Permission$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 `Permission$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-bind-options-builder id config)
Creates a ResourceBindOptions$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 `ResourceBindOptions$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 |
(runtime-builder runtime-name id config)
(runtime-builder runtime-name runtime-family id config)
Creates a Runtime$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---| | runtime-name | 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: _[java.lang.String software.amazon.awscdk.services.lambda.RuntimeFamily] | Argument | DataType | Description | |---|---|---| | runtime-name | java.lang.String | | | runtime-family | software.amazon.awscdk.services.lambda.RuntimeFamily | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `Runtime$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | runtime-name | 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:__ ____[java.lang.String software.amazon.awscdk.services.lambda.RuntimeFamily]___ | Argument | DataType | Description | |---|---|---| | runtime-name | java.lang.String | | | runtime-family | software.amazon.awscdk.services.lambda.RuntimeFamily | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(runtime-family config id item-key)
The runtime-family
function data interprets values in the provided config data into a
RuntimeFamily
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:
RuntimeFamily
- the value is returned.:ruby
- RuntimeFamily/RUBY
is returned:dotnet-core
- RuntimeFamily/DOTNET_CORE
is returned:python
- RuntimeFamily/PYTHON
is returned:java
- RuntimeFamily/JAVA
is returned:go
- RuntimeFamily/GO
is returned:nodejs
- RuntimeFamily/NODEJS
is returned:other
- RuntimeFamily/OTHER
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `runtime-family` function data interprets values in the provided config data into a `RuntimeFamily` 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 `RuntimeFamily` - the value is returned. * is `:ruby` - `RuntimeFamily/RUBY` is returned * is `:dotnet-core` - `RuntimeFamily/DOTNET_CORE` is returned * is `:python` - `RuntimeFamily/PYTHON` is returned * is `:java` - `RuntimeFamily/JAVA` is returned * is `:go` - `RuntimeFamily/GO` is returned * is `:nodejs` - `RuntimeFamily/NODEJS` is returned * is `:other` - `RuntimeFamily/OTHER` is returned If a value is not found or matches the above criteria, nil is returned.
(singleton-function-builder scope id config)
Creates a SingletonFunction$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 `SingletonFunction$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 |
(singleton-function-props-builder id config)
Creates a SingletonFunctionProps$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 `SingletonFunctionProps$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 |
(source-access-configuration-builder id config)
Creates a SourceAccessConfiguration$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 `SourceAccessConfiguration$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 |
(starting-position config id item-key)
The starting-position
function data interprets values in the provided config data into a
StartingPosition
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:
StartingPosition
- the value is returned.:latest
- StartingPosition/LATEST
is returned:trim-horizon
- StartingPosition/TRIM_HORIZON
is returned:at-timestamp
- StartingPosition/AT_TIMESTAMP
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `starting-position` function data interprets values in the provided config data into a `StartingPosition` 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 `StartingPosition` - the value is returned. * is `:latest` - `StartingPosition/LATEST` is returned * is `:trim-horizon` - `StartingPosition/TRIM_HORIZON` is returned * is `:at-timestamp` - `StartingPosition/AT_TIMESTAMP` is returned If a value is not found or matches the above criteria, nil is returned.
(system-log-level config id item-key)
The system-log-level
function data interprets values in the provided config data into a
SystemLogLevel
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:
SystemLogLevel
- the value is returned.:warn
- SystemLogLevel/WARN
is returned:info
- SystemLogLevel/INFO
is returned:debug
- SystemLogLevel/DEBUG
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `system-log-level` function data interprets values in the provided config data into a `SystemLogLevel` 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 `SystemLogLevel` - the value is returned. * is `:warn` - `SystemLogLevel/WARN` is returned * is `:info` - `SystemLogLevel/INFO` is returned * is `:debug` - `SystemLogLevel/DEBUG` is returned If a value is not found or matches the above criteria, nil is returned.
(tracing config id item-key)
The tracing
function data interprets values in the provided config data into a
Tracing
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:
Tracing
- the value is returned.:pass-through
- Tracing/PASS_THROUGH
is returned:disabled
- Tracing/DISABLED
is returned:active
- Tracing/ACTIVE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `tracing` function data interprets values in the provided config data into a `Tracing` 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 `Tracing` - the value is returned. * is `:pass-through` - `Tracing/PASS_THROUGH` is returned * is `:disabled` - `Tracing/DISABLED` is returned * is `:active` - `Tracing/ACTIVE` is returned If a value is not found or matches the above criteria, nil is returned.
(untrusted-artifact-on-deployment config id item-key)
The untrusted-artifact-on-deployment
function data interprets values in the provided config data into a
UntrustedArtifactOnDeployment
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:
UntrustedArtifactOnDeployment
- the value is returned.:enforce
- UntrustedArtifactOnDeployment/ENFORCE
is returned:warn
- UntrustedArtifactOnDeployment/WARN
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `untrusted-artifact-on-deployment` function data interprets values in the provided config data into a `UntrustedArtifactOnDeployment` 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 `UntrustedArtifactOnDeployment` - the value is returned. * is `:enforce` - `UntrustedArtifactOnDeployment/ENFORCE` is returned * is `:warn` - `UntrustedArtifactOnDeployment/WARN` is returned If a value is not found or matches the above criteria, nil is returned.
(utilization-scaling-options-builder id config)
Creates a UtilizationScalingOptions$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 `UtilizationScalingOptions$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 |
(version-attributes-builder id config)
Creates a VersionAttributes$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 `VersionAttributes$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 |
(version-builder scope id config)
Creates a Version$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 `Version$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 |
(version-options-builder id config)
Creates a VersionOptions$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 `VersionOptions$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 |
(version-props-builder id config)
Creates a VersionProps$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 `VersionProps$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 |
(version-weight-builder id config)
Creates a VersionWeight$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 `VersionWeight$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