Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.appconfig package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.appconfig package.
(action-builder id config)
Creates a Action$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
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 `Action$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(action-point config id item-key)
The action-point
function data interprets values in the provided config data into a
ActionPoint
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
ActionPoint
- the value is returned.:on-deployment-start
- ActionPoint/ON_DEPLOYMENT_START
is returned:on-deployment-step
- ActionPoint/ON_DEPLOYMENT_STEP
is returned:on-deployment-baking
- ActionPoint/ON_DEPLOYMENT_BAKING
is returned:on-deployment-complete
- ActionPoint/ON_DEPLOYMENT_COMPLETE
is returned:pre-start-deployment
- ActionPoint/PRE_START_DEPLOYMENT
is returned:pre-create-hosted-configuration-version
- ActionPoint/PRE_CREATE_HOSTED_CONFIGURATION_VERSION
is returned:on-deployment-rolled-back
- ActionPoint/ON_DEPLOYMENT_ROLLED_BACK
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `action-point` function data interprets values in the provided config data into a `ActionPoint` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `ActionPoint` - the value is returned. * is `:on-deployment-start` - `ActionPoint/ON_DEPLOYMENT_START` is returned * is `:on-deployment-step` - `ActionPoint/ON_DEPLOYMENT_STEP` is returned * is `:on-deployment-baking` - `ActionPoint/ON_DEPLOYMENT_BAKING` is returned * is `:on-deployment-complete` - `ActionPoint/ON_DEPLOYMENT_COMPLETE` is returned * is `:pre-start-deployment` - `ActionPoint/PRE_START_DEPLOYMENT` is returned * is `:pre-create-hosted-configuration-version` - `ActionPoint/PRE_CREATE_HOSTED_CONFIGURATION_VERSION` is returned * is `:on-deployment-rolled-back` - `ActionPoint/ON_DEPLOYMENT_ROLLED_BACK` is returned If a value is not found or matches the above criteria, nil is returned.
(action-props-builder id config)
Creates a ActionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ActionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(application-builder scope id config)
Creates a Application$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Application$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(application-props-builder id config)
Creates a ApplicationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ApplicationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(build-action-builder builder id config)
The build-action-builder function updates a Action$Builder instance using the provided configuration. The function takes the Action$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionPoints | java.util.List | cdk.support/lookup-entry | :action-points |
description | java.lang.String | cdk.support/lookup-entry | :description |
eventDestination | software.amazon.awscdk.services.appconfig.IEventDestination | cdk.support/lookup-entry | :event-destination |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
invokeWithoutExecutionRole | java.lang.Boolean | cdk.support/lookup-entry | :invoke-without-execution-role |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-action-builder function updates a Action$Builder instance using the provided configuration. The function takes the Action$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionPoints` | java.util.List | [[cdk.support/lookup-entry]] | `:action-points` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `eventDestination` | software.amazon.awscdk.services.appconfig.IEventDestination | [[cdk.support/lookup-entry]] | `:event-destination` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `invokeWithoutExecutionRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:invoke-without-execution-role` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-action-props-builder builder id config)
The build-action-props-builder function updates a ActionProps$Builder instance using the provided configuration. The function takes the ActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionPoints | java.util.List | cdk.support/lookup-entry | :action-points |
description | java.lang.String | cdk.support/lookup-entry | :description |
eventDestination | software.amazon.awscdk.services.appconfig.IEventDestination | cdk.support/lookup-entry | :event-destination |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
invokeWithoutExecutionRole | java.lang.Boolean | cdk.support/lookup-entry | :invoke-without-execution-role |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-action-props-builder function updates a ActionProps$Builder instance using the provided configuration. The function takes the ActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionPoints` | java.util.List | [[cdk.support/lookup-entry]] | `:action-points` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `eventDestination` | software.amazon.awscdk.services.appconfig.IEventDestination | [[cdk.support/lookup-entry]] | `:event-destination` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `invokeWithoutExecutionRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:invoke-without-execution-role` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-application-builder builder id config)
The build-application-builder function updates a Application$Builder instance using the provided configuration. The function takes the Application$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationName | java.lang.String | cdk.support/lookup-entry | :application-name |
description | java.lang.String | cdk.support/lookup-entry | :description |
The build-application-builder function updates a Application$Builder instance using the provided configuration. The function takes the Application$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationName` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-name` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
(build-application-props-builder builder id config)
The build-application-props-builder function updates a ApplicationProps$Builder instance using the provided configuration. The function takes the ApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationName | java.lang.String | cdk.support/lookup-entry | :application-name |
description | java.lang.String | cdk.support/lookup-entry | :description |
The build-application-props-builder function updates a ApplicationProps$Builder instance using the provided configuration. The function takes the ApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationName` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-name` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
(build-cfn-application-builder builder id config)
The build-cfn-application-builder function updates a CfnApplication$Builder instance using the provided configuration. The function takes the CfnApplication$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
name | java.lang.String | cdk.support/lookup-entry | :name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-application-builder function updates a CfnApplication$Builder instance using the provided configuration. The function takes the CfnApplication$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-application-props-builder builder id config)
The build-cfn-application-props-builder function updates a CfnApplicationProps$Builder instance using the provided configuration. The function takes the CfnApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
name | java.lang.String | cdk.support/lookup-entry | :name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-application-props-builder function updates a CfnApplicationProps$Builder instance using the provided configuration. The function takes the CfnApplicationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-configuration-profile-builder builder id config)
The build-cfn-configuration-profile-builder function updates a CfnConfigurationProfile$Builder instance using the provided configuration. The function takes the CfnConfigurationProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
description | java.lang.String | cdk.support/lookup-entry | :description |
kmsKeyIdentifier | java.lang.String | cdk.support/lookup-entry | :kms-key-identifier |
locationUri | java.lang.String | cdk.support/lookup-entry | :location-uri |
name | java.lang.String | cdk.support/lookup-entry | :name |
retrievalRoleArn | java.lang.String | cdk.support/lookup-entry | :retrieval-role-arn |
tags | java.util.List | cdk.support/lookup-entry | :tags |
type | java.lang.String | cdk.support/lookup-entry | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
The build-cfn-configuration-profile-builder function updates a CfnConfigurationProfile$Builder instance using the provided configuration. The function takes the CfnConfigurationProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` | | `locationUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:location-uri` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `retrievalRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:retrieval-role-arn` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
(build-cfn-configuration-profile-props-builder builder id config)
The build-cfn-configuration-profile-props-builder function updates a CfnConfigurationProfileProps$Builder instance using the provided configuration. The function takes the CfnConfigurationProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
description | java.lang.String | cdk.support/lookup-entry | :description |
kmsKeyIdentifier | java.lang.String | cdk.support/lookup-entry | :kms-key-identifier |
locationUri | java.lang.String | cdk.support/lookup-entry | :location-uri |
name | java.lang.String | cdk.support/lookup-entry | :name |
retrievalRoleArn | java.lang.String | cdk.support/lookup-entry | :retrieval-role-arn |
tags | java.util.List | cdk.support/lookup-entry | :tags |
type | java.lang.String | cdk.support/lookup-entry | :type |
validators | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :validators |
The build-cfn-configuration-profile-props-builder function updates a CfnConfigurationProfileProps$Builder instance using the provided configuration. The function takes the CfnConfigurationProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` | | `locationUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:location-uri` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `retrievalRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:retrieval-role-arn` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `validators` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:validators` |
(build-cfn-configuration-profile-validators-property-builder builder id config)
The build-cfn-configuration-profile-validators-property-builder function updates a CfnConfigurationProfile$ValidatorsProperty$Builder instance using the provided configuration. The function takes the CfnConfigurationProfile$ValidatorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
content | java.lang.String | cdk.support/lookup-entry | :content |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-configuration-profile-validators-property-builder function updates a CfnConfigurationProfile$ValidatorsProperty$Builder instance using the provided configuration. The function takes the CfnConfigurationProfile$ValidatorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `content` | java.lang.String | [[cdk.support/lookup-entry]] | `:content` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-deployment-builder builder id config)
The build-cfn-deployment-builder function updates a CfnDeployment$Builder instance using the provided configuration. The function takes the CfnDeployment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
configurationProfileId | java.lang.String | cdk.support/lookup-entry | :configuration-profile-id |
configurationVersion | java.lang.String | cdk.support/lookup-entry | :configuration-version |
deploymentStrategyId | java.lang.String | cdk.support/lookup-entry | :deployment-strategy-id |
description | java.lang.String | cdk.support/lookup-entry | :description |
dynamicExtensionParameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :dynamic-extension-parameters |
environmentId | java.lang.String | cdk.support/lookup-entry | :environment-id |
kmsKeyIdentifier | java.lang.String | cdk.support/lookup-entry | :kms-key-identifier |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-deployment-builder function updates a CfnDeployment$Builder instance using the provided configuration. The function takes the CfnDeployment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` | | `configurationVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-version` | | `deploymentStrategyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-id` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `dynamicExtensionParameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:dynamic-extension-parameters` | | `environmentId` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-id` | | `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-deployment-dynamic-extension-parameters-property-builder builder
id
config)
The build-cfn-deployment-dynamic-extension-parameters-property-builder function updates a CfnDeployment$DynamicExtensionParametersProperty$Builder instance using the provided configuration. The function takes the CfnDeployment$DynamicExtensionParametersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
extensionReference | java.lang.String | cdk.support/lookup-entry | :extension-reference |
parameterName | java.lang.String | cdk.support/lookup-entry | :parameter-name |
parameterValue | java.lang.String | cdk.support/lookup-entry | :parameter-value |
The build-cfn-deployment-dynamic-extension-parameters-property-builder function updates a CfnDeployment$DynamicExtensionParametersProperty$Builder instance using the provided configuration. The function takes the CfnDeployment$DynamicExtensionParametersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `extensionReference` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-reference` | | `parameterName` | java.lang.String | [[cdk.support/lookup-entry]] | `:parameter-name` | | `parameterValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:parameter-value` |
(build-cfn-deployment-props-builder builder id config)
The build-cfn-deployment-props-builder function updates a CfnDeploymentProps$Builder instance using the provided configuration. The function takes the CfnDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
configurationProfileId | java.lang.String | cdk.support/lookup-entry | :configuration-profile-id |
configurationVersion | java.lang.String | cdk.support/lookup-entry | :configuration-version |
deploymentStrategyId | java.lang.String | cdk.support/lookup-entry | :deployment-strategy-id |
description | java.lang.String | cdk.support/lookup-entry | :description |
dynamicExtensionParameters | java.util.List | cdk.support/lookup-entry | :dynamic-extension-parameters |
environmentId | java.lang.String | cdk.support/lookup-entry | :environment-id |
kmsKeyIdentifier | java.lang.String | cdk.support/lookup-entry | :kms-key-identifier |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-deployment-props-builder function updates a CfnDeploymentProps$Builder instance using the provided configuration. The function takes the CfnDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` | | `configurationVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-version` | | `deploymentStrategyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-id` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `dynamicExtensionParameters` | java.util.List | [[cdk.support/lookup-entry]] | `:dynamic-extension-parameters` | | `environmentId` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-id` | | `kmsKeyIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-identifier` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-deployment-strategy-builder builder id config)
The build-cfn-deployment-strategy-builder function updates a CfnDeploymentStrategy$Builder instance using the provided configuration. The function takes the CfnDeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deploymentDurationInMinutes | java.lang.Number | cdk.support/lookup-entry | :deployment-duration-in-minutes |
description | java.lang.String | cdk.support/lookup-entry | :description |
finalBakeTimeInMinutes | java.lang.Number | cdk.support/lookup-entry | :final-bake-time-in-minutes |
growthFactor | java.lang.Number | cdk.support/lookup-entry | :growth-factor |
growthType | java.lang.String | cdk.support/lookup-entry | :growth-type |
name | java.lang.String | cdk.support/lookup-entry | :name |
replicateTo | java.lang.String | cdk.support/lookup-entry | :replicate-to |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-deployment-strategy-builder function updates a CfnDeploymentStrategy$Builder instance using the provided configuration. The function takes the CfnDeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deploymentDurationInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:deployment-duration-in-minutes` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `finalBakeTimeInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:final-bake-time-in-minutes` | | `growthFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:growth-factor` | | `growthType` | java.lang.String | [[cdk.support/lookup-entry]] | `:growth-type` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `replicateTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:replicate-to` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-deployment-strategy-props-builder builder id config)
The build-cfn-deployment-strategy-props-builder function updates a CfnDeploymentStrategyProps$Builder instance using the provided configuration. The function takes the CfnDeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deploymentDurationInMinutes | java.lang.Number | cdk.support/lookup-entry | :deployment-duration-in-minutes |
description | java.lang.String | cdk.support/lookup-entry | :description |
finalBakeTimeInMinutes | java.lang.Number | cdk.support/lookup-entry | :final-bake-time-in-minutes |
growthFactor | java.lang.Number | cdk.support/lookup-entry | :growth-factor |
growthType | java.lang.String | cdk.support/lookup-entry | :growth-type |
name | java.lang.String | cdk.support/lookup-entry | :name |
replicateTo | java.lang.String | cdk.support/lookup-entry | :replicate-to |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-deployment-strategy-props-builder function updates a CfnDeploymentStrategyProps$Builder instance using the provided configuration. The function takes the CfnDeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deploymentDurationInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:deployment-duration-in-minutes` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `finalBakeTimeInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:final-bake-time-in-minutes` | | `growthFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:growth-factor` | | `growthType` | java.lang.String | [[cdk.support/lookup-entry]] | `:growth-type` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `replicateTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:replicate-to` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-environment-builder builder id config)
The build-cfn-environment-builder function updates a CfnEnvironment$Builder instance using the provided configuration. The function takes the CfnEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
description | java.lang.String | cdk.support/lookup-entry | :description |
monitors | java.util.List | cdk.support/lookup-entry | :monitors |
name | java.lang.String | cdk.support/lookup-entry | :name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-environment-builder function updates a CfnEnvironment$Builder instance using the provided configuration. The function takes the CfnEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-environment-monitor-property-builder builder id config)
The build-cfn-environment-monitor-property-builder function updates a CfnEnvironment$MonitorProperty$Builder instance using the provided configuration. The function takes the CfnEnvironment$MonitorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarmArn | java.lang.String | cdk.support/lookup-entry | :alarm-arn |
alarmRoleArn | java.lang.String | cdk.support/lookup-entry | :alarm-role-arn |
The build-cfn-environment-monitor-property-builder function updates a CfnEnvironment$MonitorProperty$Builder instance using the provided configuration. The function takes the CfnEnvironment$MonitorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarmArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-arn` | | `alarmRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-role-arn` |
(build-cfn-environment-monitors-property-builder builder id config)
The build-cfn-environment-monitors-property-builder function updates a CfnEnvironment$MonitorsProperty$Builder instance using the provided configuration. The function takes the CfnEnvironment$MonitorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarmArn | java.lang.String | cdk.support/lookup-entry | :alarm-arn |
alarmRoleArn | java.lang.String | cdk.support/lookup-entry | :alarm-role-arn |
The build-cfn-environment-monitors-property-builder function updates a CfnEnvironment$MonitorsProperty$Builder instance using the provided configuration. The function takes the CfnEnvironment$MonitorsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarmArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-arn` | | `alarmRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-role-arn` |
(build-cfn-environment-props-builder builder id config)
The build-cfn-environment-props-builder function updates a CfnEnvironmentProps$Builder instance using the provided configuration. The function takes the CfnEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
description | java.lang.String | cdk.support/lookup-entry | :description |
monitors | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :monitors |
name | java.lang.String | cdk.support/lookup-entry | :name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-environment-props-builder function updates a CfnEnvironmentProps$Builder instance using the provided configuration. The function takes the CfnEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `monitors` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:monitors` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-extension-action-property-builder builder id config)
The build-cfn-extension-action-property-builder function updates a CfnExtension$ActionProperty$Builder instance using the provided configuration. The function takes the CfnExtension$ActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
name | java.lang.String | cdk.support/lookup-entry | :name |
roleArn | java.lang.String | cdk.support/lookup-entry | :role-arn |
uri | java.lang.String | cdk.support/lookup-entry | :uri |
The build-cfn-extension-action-property-builder function updates a CfnExtension$ActionProperty$Builder instance using the provided configuration. The function takes the CfnExtension$ActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` | | `uri` | java.lang.String | [[cdk.support/lookup-entry]] | `:uri` |
(build-cfn-extension-association-builder builder id config)
The build-cfn-extension-association-builder function updates a CfnExtensionAssociation$Builder instance using the provided configuration. The function takes the CfnExtensionAssociation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
extensionIdentifier | java.lang.String | cdk.support/lookup-entry | :extension-identifier |
extensionVersionNumber | java.lang.Number | cdk.support/lookup-entry | :extension-version-number |
parameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :parameters |
resourceIdentifier | java.lang.String | cdk.support/lookup-entry | :resource-identifier |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-extension-association-builder function updates a CfnExtensionAssociation$Builder instance using the provided configuration. The function takes the CfnExtensionAssociation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `extensionIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-identifier` | | `extensionVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:extension-version-number` | | `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` | | `resourceIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-identifier` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-extension-association-props-builder builder id config)
The build-cfn-extension-association-props-builder function updates a CfnExtensionAssociationProps$Builder instance using the provided configuration. The function takes the CfnExtensionAssociationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
extensionIdentifier | java.lang.String | cdk.support/lookup-entry | :extension-identifier |
extensionVersionNumber | java.lang.Number | cdk.support/lookup-entry | :extension-version-number |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
resourceIdentifier | java.lang.String | cdk.support/lookup-entry | :resource-identifier |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-extension-association-props-builder function updates a CfnExtensionAssociationProps$Builder instance using the provided configuration. The function takes the CfnExtensionAssociationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `extensionIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-identifier` | | `extensionVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:extension-version-number` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `resourceIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-identifier` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-extension-builder builder id config)
The build-cfn-extension-builder function updates a CfnExtension$Builder instance using the provided configuration. The function takes the CfnExtension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.lang.Object | cdk.support/lookup-entry | :actions |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
name | java.lang.String | cdk.support/lookup-entry | :name |
parameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :parameters |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-extension-builder function updates a CfnExtension$Builder instance using the provided configuration. The function takes the CfnExtension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.lang.Object | [[cdk.support/lookup-entry]] | `:actions` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-extension-parameter-property-builder builder id config)
The build-cfn-extension-parameter-property-builder function updates a CfnExtension$ParameterProperty$Builder instance using the provided configuration. The function takes the CfnExtension$ParameterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
dynamic | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :dynamic |
required | java.lang.Boolean | cdk.support/lookup-entry | :required |
The build-cfn-extension-parameter-property-builder function updates a CfnExtension$ParameterProperty$Builder instance using the provided configuration. The function takes the CfnExtension$ParameterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `dynamic` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:dynamic` | | `required` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:required` |
(build-cfn-extension-props-builder builder id config)
The build-cfn-extension-props-builder function updates a CfnExtensionProps$Builder instance using the provided configuration. The function takes the CfnExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.lang.Object | cdk.support/lookup-entry | :actions |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
name | java.lang.String | cdk.support/lookup-entry | :name |
parameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :parameters |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-extension-props-builder function updates a CfnExtensionProps$Builder instance using the provided configuration. The function takes the CfnExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.lang.Object | [[cdk.support/lookup-entry]] | `:actions` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `parameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:parameters` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-hosted-configuration-version-builder builder id config)
The build-cfn-hosted-configuration-version-builder function updates a CfnHostedConfigurationVersion$Builder instance using the provided configuration. The function takes the CfnHostedConfigurationVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
configurationProfileId | java.lang.String | cdk.support/lookup-entry | :configuration-profile-id |
content | java.lang.String | cdk.support/lookup-entry | :content |
contentType | java.lang.String | cdk.support/lookup-entry | :content-type |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
versionLabel | java.lang.String | cdk.support/lookup-entry | :version-label |
The build-cfn-hosted-configuration-version-builder function updates a CfnHostedConfigurationVersion$Builder instance using the provided configuration. The function takes the CfnHostedConfigurationVersion$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` | | `content` | java.lang.String | [[cdk.support/lookup-entry]] | `:content` | | `contentType` | java.lang.String | [[cdk.support/lookup-entry]] | `:content-type` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
(build-cfn-hosted-configuration-version-props-builder builder id config)
The build-cfn-hosted-configuration-version-props-builder function updates a CfnHostedConfigurationVersionProps$Builder instance using the provided configuration. The function takes the CfnHostedConfigurationVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
applicationId | java.lang.String | cdk.support/lookup-entry | :application-id |
configurationProfileId | java.lang.String | cdk.support/lookup-entry | :configuration-profile-id |
content | java.lang.String | cdk.support/lookup-entry | :content |
contentType | java.lang.String | cdk.support/lookup-entry | :content-type |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
versionLabel | java.lang.String | cdk.support/lookup-entry | :version-label |
The build-cfn-hosted-configuration-version-props-builder function updates a CfnHostedConfigurationVersionProps$Builder instance using the provided configuration. The function takes the CfnHostedConfigurationVersionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` | | `configurationProfileId` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-profile-id` | | `content` | java.lang.String | [[cdk.support/lookup-entry]] | `:content` | | `contentType` | java.lang.String | [[cdk.support/lookup-entry]] | `:content-type` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
(build-configuration-options-builder builder id config)
The build-configuration-options-builder function updates a ConfigurationOptions$Builder instance using the provided configuration. The function takes the ConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
name | java.lang.String | cdk.support/lookup-entry | :name |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
The build-configuration-options-builder function updates a ConfigurationOptions$Builder instance using the provided configuration. The function takes the ConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
(build-configuration-props-builder builder id config)
The build-configuration-props-builder function updates a ConfigurationProps$Builder instance using the provided configuration. The function takes the ConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
name | java.lang.String | cdk.support/lookup-entry | :name |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
The build-configuration-props-builder function updates a ConfigurationProps$Builder instance using the provided configuration. The function takes the ConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` |
(build-deployment-strategy-builder builder id config)
The build-deployment-strategy-builder function updates a DeploymentStrategy$Builder instance using the provided configuration. The function takes the DeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deploymentStrategyName | java.lang.String | cdk.support/lookup-entry | :deployment-strategy-name |
description | java.lang.String | cdk.support/lookup-entry | :description |
rolloutStrategy | software.amazon.awscdk.services.appconfig.RolloutStrategy | cdk.support/lookup-entry | :rollout-strategy |
The build-deployment-strategy-builder function updates a DeploymentStrategy$Builder instance using the provided configuration. The function takes the DeploymentStrategy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deploymentStrategyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-name` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `rolloutStrategy` | software.amazon.awscdk.services.appconfig.RolloutStrategy | [[cdk.support/lookup-entry]] | `:rollout-strategy` |
(build-deployment-strategy-props-builder builder id config)
The build-deployment-strategy-props-builder function updates a DeploymentStrategyProps$Builder instance using the provided configuration. The function takes the DeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deploymentStrategyName | java.lang.String | cdk.support/lookup-entry | :deployment-strategy-name |
description | java.lang.String | cdk.support/lookup-entry | :description |
rolloutStrategy | software.amazon.awscdk.services.appconfig.RolloutStrategy | cdk.support/lookup-entry | :rollout-strategy |
The build-deployment-strategy-props-builder function updates a DeploymentStrategyProps$Builder instance using the provided configuration. The function takes the DeploymentStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deploymentStrategyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:deployment-strategy-name` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `rolloutStrategy` | software.amazon.awscdk.services.appconfig.RolloutStrategy | [[cdk.support/lookup-entry]] | `:rollout-strategy` |
(build-environment-attributes-builder builder id config)
The build-environment-attributes-builder function updates a EnvironmentAttributes$Builder instance using the provided configuration. The function takes the EnvironmentAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
description | java.lang.String | cdk.support/lookup-entry | :description |
environmentId | java.lang.String | cdk.support/lookup-entry | :environment-id |
monitors | java.util.List | cdk.support/lookup-entry | :monitors |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-environment-attributes-builder function updates a EnvironmentAttributes$Builder instance using the provided configuration. The function takes the EnvironmentAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environmentId` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-id` | | `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-environment-builder builder id config)
The build-environment-builder function updates a Environment$Builder instance using the provided configuration. The function takes the Environment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
description | java.lang.String | cdk.support/lookup-entry | :description |
environmentName | java.lang.String | cdk.support/lookup-entry | :environment-name |
monitors | java.util.List | cdk.support/lookup-entry | :monitors |
The build-environment-builder function updates a Environment$Builder instance using the provided configuration. The function takes the Environment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-name` | | `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
(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 |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
environmentName | java.lang.String | cdk.support/lookup-entry | :environment-name |
monitors | java.util.List | cdk.support/lookup-entry | :monitors |
The build-environment-options-builder function updates a EnvironmentOptions$Builder instance using the provided configuration. The function takes the EnvironmentOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-name` | | `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
(build-environment-props-builder builder id config)
The build-environment-props-builder function updates a EnvironmentProps$Builder instance using the provided configuration. The function takes the EnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
description | java.lang.String | cdk.support/lookup-entry | :description |
environmentName | java.lang.String | cdk.support/lookup-entry | :environment-name |
monitors | java.util.List | cdk.support/lookup-entry | :monitors |
The build-environment-props-builder function updates a EnvironmentProps$Builder instance using the provided configuration. The function takes the EnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `environmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:environment-name` | | `monitors` | java.util.List | [[cdk.support/lookup-entry]] | `:monitors` |
(build-extension-attributes-builder builder id config)
The build-extension-attributes-builder function updates a ExtensionAttributes$Builder instance using the provided configuration. The function takes the ExtensionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
description | java.lang.String | cdk.support/lookup-entry | :description |
extensionArn | java.lang.String | cdk.support/lookup-entry | :extension-arn |
extensionId | java.lang.String | cdk.support/lookup-entry | :extension-id |
extensionVersionNumber | java.lang.Number | cdk.support/lookup-entry | :extension-version-number |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-extension-attributes-builder function updates a ExtensionAttributes$Builder instance using the provided configuration. The function takes the ExtensionAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `extensionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-arn` | | `extensionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-id` | | `extensionVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:extension-version-number` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-extension-builder builder id config)
The build-extension-builder function updates a Extension$Builder instance using the provided configuration. The function takes the Extension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
description | java.lang.String | cdk.support/lookup-entry | :description |
extensionName | java.lang.String | cdk.support/lookup-entry | :extension-name |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
parameters | java.util.List | cdk.support/lookup-entry | :parameters |
The build-extension-builder function updates a Extension$Builder instance using the provided configuration. The function takes the Extension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `extensionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-name` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` |
(build-extension-options-builder builder id config)
The build-extension-options-builder function updates a ExtensionOptions$Builder instance using the provided configuration. The function takes the ExtensionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
extensionName | java.lang.String | cdk.support/lookup-entry | :extension-name |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
parameters | java.util.List | cdk.support/lookup-entry | :parameters |
The build-extension-options-builder function updates a ExtensionOptions$Builder instance using the provided configuration. The function takes the ExtensionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `extensionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-name` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` |
(build-extension-props-builder builder id config)
The build-extension-props-builder function updates a ExtensionProps$Builder instance using the provided configuration. The function takes the ExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
description | java.lang.String | cdk.support/lookup-entry | :description |
extensionName | java.lang.String | cdk.support/lookup-entry | :extension-name |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
parameters | java.util.List | cdk.support/lookup-entry | :parameters |
The build-extension-props-builder function updates a ExtensionProps$Builder instance using the provided configuration. The function takes the ExtensionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `extensionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:extension-name` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `parameters` | java.util.List | [[cdk.support/lookup-entry]] | `:parameters` |
(build-hosted-configuration-builder builder id config)
The build-hosted-configuration-builder function updates a HostedConfiguration$Builder instance using the provided configuration. The function takes the HostedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
content | software.amazon.awscdk.services.appconfig.ConfigurationContent | cdk.support/lookup-entry | :content |
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
name | java.lang.String | cdk.support/lookup-entry | :name |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
versionLabel | java.lang.String | cdk.support/lookup-entry | :version-label |
The build-hosted-configuration-builder function updates a HostedConfiguration$Builder instance using the provided configuration. The function takes the HostedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `content` | software.amazon.awscdk.services.appconfig.ConfigurationContent | [[cdk.support/lookup-entry]] | `:content` | | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` | | `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
(build-hosted-configuration-options-builder builder id config)
The build-hosted-configuration-options-builder function updates a HostedConfigurationOptions$Builder instance using the provided configuration. The function takes the HostedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
content | software.amazon.awscdk.services.appconfig.ConfigurationContent | cdk.support/lookup-entry | :content |
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
name | java.lang.String | cdk.support/lookup-entry | :name |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
versionLabel | java.lang.String | cdk.support/lookup-entry | :version-label |
The build-hosted-configuration-options-builder function updates a HostedConfigurationOptions$Builder instance using the provided configuration. The function takes the HostedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `content` | software.amazon.awscdk.services.appconfig.ConfigurationContent | [[cdk.support/lookup-entry]] | `:content` | | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` | | `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
(build-hosted-configuration-props-builder builder id config)
The build-hosted-configuration-props-builder function updates a HostedConfigurationProps$Builder instance using the provided configuration. The function takes the HostedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
content | software.amazon.awscdk.services.appconfig.ConfigurationContent | cdk.support/lookup-entry | :content |
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
latestVersionNumber | java.lang.Number | cdk.support/lookup-entry | :latest-version-number |
name | java.lang.String | cdk.support/lookup-entry | :name |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
versionLabel | java.lang.String | cdk.support/lookup-entry | :version-label |
The build-hosted-configuration-props-builder function updates a HostedConfigurationProps$Builder instance using the provided configuration. The function takes the HostedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `content` | software.amazon.awscdk.services.appconfig.ConfigurationContent | [[cdk.support/lookup-entry]] | `:content` | | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `latestVersionNumber` | java.lang.Number | [[cdk.support/lookup-entry]] | `:latest-version-number` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` | | `versionLabel` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-label` |
(build-rollout-strategy-props-builder builder id config)
The build-rollout-strategy-props-builder function updates a RolloutStrategyProps$Builder instance using the provided configuration. The function takes the RolloutStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deploymentDuration | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :deployment-duration |
finalBakeTime | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :final-bake-time |
growthFactor | java.lang.Number | cdk.support/lookup-entry | :growth-factor |
The build-rollout-strategy-props-builder function updates a RolloutStrategyProps$Builder instance using the provided configuration. The function takes the RolloutStrategyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deploymentDuration` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:deployment-duration` | | `finalBakeTime` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:final-bake-time` | | `growthFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:growth-factor` |
(build-sourced-configuration-builder builder id config)
The build-sourced-configuration-builder function updates a SourcedConfiguration$Builder instance using the provided configuration. The function takes the SourcedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
location | software.amazon.awscdk.services.appconfig.ConfigurationSource | cdk.support/lookup-entry | :location |
name | java.lang.String | cdk.support/lookup-entry | :name |
retrievalRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :retrieval-role |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
versionNumber | java.lang.String | cdk.support/lookup-entry | :version-number |
The build-sourced-configuration-builder function updates a SourcedConfiguration$Builder instance using the provided configuration. The function takes the SourcedConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `location` | software.amazon.awscdk.services.appconfig.ConfigurationSource | [[cdk.support/lookup-entry]] | `:location` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `retrievalRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:retrieval-role` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` | | `versionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-number` |
(build-sourced-configuration-options-builder builder id config)
The build-sourced-configuration-options-builder function updates a SourcedConfigurationOptions$Builder instance using the provided configuration. The function takes the SourcedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
location | software.amazon.awscdk.services.appconfig.ConfigurationSource | cdk.support/lookup-entry | :location |
name | java.lang.String | cdk.support/lookup-entry | :name |
retrievalRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :retrieval-role |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
versionNumber | java.lang.String | cdk.support/lookup-entry | :version-number |
The build-sourced-configuration-options-builder function updates a SourcedConfigurationOptions$Builder instance using the provided configuration. The function takes the SourcedConfigurationOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `location` | software.amazon.awscdk.services.appconfig.ConfigurationSource | [[cdk.support/lookup-entry]] | `:location` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `retrievalRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:retrieval-role` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` | | `versionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-number` |
(build-sourced-configuration-props-builder builder id config)
The build-sourced-configuration-props-builder function updates a SourcedConfigurationProps$Builder instance using the provided configuration. The function takes the SourcedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
application | software.amazon.awscdk.services.appconfig.IApplication | cdk.support/lookup-entry | :application |
deployTo | java.util.List | cdk.support/lookup-entry | :deploy-to |
deploymentKey | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :deployment-key |
deploymentStrategy | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | cdk.support/lookup-entry | :deployment-strategy |
description | java.lang.String | cdk.support/lookup-entry | :description |
location | software.amazon.awscdk.services.appconfig.ConfigurationSource | cdk.support/lookup-entry | :location |
name | java.lang.String | cdk.support/lookup-entry | :name |
retrievalRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :retrieval-role |
type | software.amazon.awscdk.services.appconfig.ConfigurationType | cdk.api.services.appconfig/configuration-type | :type |
validators | java.util.List | cdk.support/lookup-entry | :validators |
versionNumber | java.lang.String | cdk.support/lookup-entry | :version-number |
The build-sourced-configuration-props-builder function updates a SourcedConfigurationProps$Builder instance using the provided configuration. The function takes the SourcedConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `application` | software.amazon.awscdk.services.appconfig.IApplication | [[cdk.support/lookup-entry]] | `:application` | | `deployTo` | java.util.List | [[cdk.support/lookup-entry]] | `:deploy-to` | | `deploymentKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:deployment-key` | | `deploymentStrategy` | software.amazon.awscdk.services.appconfig.IDeploymentStrategy | [[cdk.support/lookup-entry]] | `:deployment-strategy` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `location` | software.amazon.awscdk.services.appconfig.ConfigurationSource | [[cdk.support/lookup-entry]] | `:location` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `retrievalRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:retrieval-role` | | `type` | software.amazon.awscdk.services.appconfig.ConfigurationType | [[cdk.api.services.appconfig/configuration-type]] | `:type` | | `validators` | java.util.List | [[cdk.support/lookup-entry]] | `:validators` | | `versionNumber` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-number` |
(cfn-application-builder scope id config)
Creates a CfnApplication$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnApplication$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-application-props-builder id config)
Creates a CfnApplicationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnApplicationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-configuration-profile-builder scope id config)
Creates a CfnConfigurationProfile$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnConfigurationProfile$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-configuration-profile-props-builder id config)
Creates a CfnConfigurationProfileProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnConfigurationProfileProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-configuration-profile-validators-property-builder id config)
Creates a CfnConfigurationProfile$ValidatorsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnConfigurationProfile$ValidatorsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-deployment-builder scope id config)
Creates a CfnDeployment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnDeployment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-deployment-dynamic-extension-parameters-property-builder id config)
Creates a CfnDeployment$DynamicExtensionParametersProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnDeployment$DynamicExtensionParametersProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-deployment-props-builder id config)
Creates a CfnDeploymentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnDeploymentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-deployment-strategy-builder scope id config)
Creates a CfnDeploymentStrategy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnDeploymentStrategy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-deployment-strategy-props-builder id config)
Creates a CfnDeploymentStrategyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnDeploymentStrategyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-environment-builder scope id config)
Creates a CfnEnvironment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-environment-monitor-property-builder id config)
Creates a CfnEnvironment$MonitorProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnEnvironment$MonitorProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-environment-monitors-property-builder id config)
Creates a CfnEnvironment$MonitorsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnEnvironment$MonitorsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-environment-props-builder id config)
Creates a CfnEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-extension-action-property-builder id config)
Creates a CfnExtension$ActionProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnExtension$ActionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-extension-association-builder scope id config)
Creates a CfnExtensionAssociation$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnExtensionAssociation$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-extension-association-props-builder id config)
Creates a CfnExtensionAssociationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnExtensionAssociationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-extension-builder scope id config)
Creates a CfnExtension$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnExtension$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-extension-parameter-property-builder id config)
Creates a CfnExtension$ParameterProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnExtension$ParameterProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-extension-props-builder id config)
Creates a CfnExtensionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnExtensionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-hosted-configuration-version-builder scope id config)
Creates a CfnHostedConfigurationVersion$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnHostedConfigurationVersion$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-hosted-configuration-version-props-builder id config)
Creates a CfnHostedConfigurationVersionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `CfnHostedConfigurationVersionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(configuration-options-builder id config)
Creates a ConfigurationOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ConfigurationOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(configuration-props-builder id config)
Creates a ConfigurationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(configuration-source-type config id item-key)
The configuration-source-type
function data interprets values in the provided config data into a
ConfigurationSourceType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
ConfigurationSourceType
- the value is returned.:secrets-manager
- ConfigurationSourceType/SECRETS_MANAGER
is returned:ssm-parameter
- ConfigurationSourceType/SSM_PARAMETER
is returned:s3
- ConfigurationSourceType/S3
is returned:code-pipeline
- ConfigurationSourceType/CODE_PIPELINE
is returned:ssm-document
- ConfigurationSourceType/SSM_DOCUMENT
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `configuration-source-type` function data interprets values in the provided config data into a `ConfigurationSourceType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `ConfigurationSourceType` - the value is returned. * is `:secrets-manager` - `ConfigurationSourceType/SECRETS_MANAGER` is returned * is `:ssm-parameter` - `ConfigurationSourceType/SSM_PARAMETER` is returned * is `:s3` - `ConfigurationSourceType/S3` is returned * is `:code-pipeline` - `ConfigurationSourceType/CODE_PIPELINE` is returned * is `:ssm-document` - `ConfigurationSourceType/SSM_DOCUMENT` is returned If a value is not found or matches the above criteria, nil is returned.
(configuration-type config id item-key)
The configuration-type
function data interprets values in the provided config data into a
ConfigurationType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
ConfigurationType
- the value is returned.:freeform
- ConfigurationType/FREEFORM
is returned:feature-flags
- ConfigurationType/FEATURE_FLAGS
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `configuration-type` function data interprets values in the provided config data into a `ConfigurationType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `ConfigurationType` - the value is returned. * is `:freeform` - `ConfigurationType/FREEFORM` is returned * is `:feature-flags` - `ConfigurationType/FEATURE_FLAGS` is returned If a value is not found or matches the above criteria, nil is returned.
(deployment-strategy-builder scope id config)
Creates a DeploymentStrategy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `DeploymentStrategy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(deployment-strategy-props-builder id config)
Creates a DeploymentStrategyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `DeploymentStrategyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(environment-attributes-builder id config)
Creates a EnvironmentAttributes$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `EnvironmentAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(environment-builder scope id config)
Creates a Environment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Environment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(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 |
(environment-props-builder id config)
Creates a EnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `EnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(extension-attributes-builder id config)
Creates a ExtensionAttributes$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ExtensionAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(extension-builder scope id config)
Creates a Extension$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Extension$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(extension-options-builder id config)
Creates a ExtensionOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ExtensionOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(extension-props-builder id config)
Creates a ExtensionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `ExtensionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(growth-type config id item-key)
The growth-type
function data interprets values in the provided config data into a
GrowthType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
GrowthType
- the value is returned.:linear
- GrowthType/LINEAR
is returned:exponential
- GrowthType/EXPONENTIAL
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `growth-type` function data interprets values in the provided config data into a `GrowthType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `GrowthType` - the value is returned. * is `:linear` - `GrowthType/LINEAR` is returned * is `:exponential` - `GrowthType/EXPONENTIAL` is returned If a value is not found or matches the above criteria, nil is returned.
(hosted-configuration-builder scope id config)
Creates a HostedConfiguration$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `HostedConfiguration$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(hosted-configuration-options-builder id config)
Creates a HostedConfigurationOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `HostedConfigurationOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(hosted-configuration-props-builder id config)
Creates a HostedConfigurationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `HostedConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(monitor-type config id item-key)
The monitor-type
function data interprets values in the provided config data into a
MonitorType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
MonitorType
- the value is returned.:cloudwatch
- MonitorType/CLOUDWATCH
is returned:cfn-monitors-property
- MonitorType/CFN_MONITORS_PROPERTY
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `monitor-type` function data interprets values in the provided config data into a `MonitorType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `MonitorType` - the value is returned. * is `:cloudwatch` - `MonitorType/CLOUDWATCH` is returned * is `:cfn-monitors-property` - `MonitorType/CFN_MONITORS_PROPERTY` is returned If a value is not found or matches the above criteria, nil is returned.
(platform config id item-key)
The platform
function data interprets values in the provided config data into a
Platform
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
Platform
- the value is returned.:x86-64
- Platform/X86_64
is returned:arm-64
- Platform/ARM_64
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `platform` function data interprets values in the provided config data into a `Platform` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `Platform` - the value is returned. * is `:x86-64` - `Platform/X86_64` is returned * is `:arm-64` - `Platform/ARM_64` is returned If a value is not found or matches the above criteria, nil is returned.
(rollout-strategy-props-builder id config)
Creates a RolloutStrategyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `RolloutStrategyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(source-type config id item-key)
The source-type
function data interprets values in the provided config data into a
SourceType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
SourceType
- the value is returned.:events
- SourceType/EVENTS
is returned:lambda
- SourceType/LAMBDA
is returned:sqs
- SourceType/SQS
is returned:sns
- SourceType/SNS
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `source-type` function data interprets values in the provided config data into a `SourceType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `SourceType` - the value is returned. * is `:events` - `SourceType/EVENTS` is returned * is `:lambda` - `SourceType/LAMBDA` is returned * is `:sqs` - `SourceType/SQS` is returned * is `:sns` - `SourceType/SNS` is returned If a value is not found or matches the above criteria, nil is returned.
(sourced-configuration-builder scope id config)
Creates a SourcedConfiguration$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `SourcedConfiguration$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(sourced-configuration-options-builder id config)
Creates a SourcedConfigurationOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `SourcedConfigurationOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(sourced-configuration-props-builder id config)
Creates a SourcedConfigurationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
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 `SourcedConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(validator-type config id item-key)
The validator-type
function data interprets values in the provided config data into a
ValidatorType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
ValidatorType
- the value is returned.:json-schema
- ValidatorType/JSON_SCHEMA
is returned:lambda
- ValidatorType/LAMBDA
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `validator-type` function data interprets values in the provided config data into a `ValidatorType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `ValidatorType` - the value is returned. * is `:json-schema` - `ValidatorType/JSON_SCHEMA` is returned * is `:lambda` - `ValidatorType/LAMBDA` is returned If a value is not found or matches the above criteria, nil is returned.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close