Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.codepipeline package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.codepipeline package.
(action-artifact-bounds-builder id config)
Creates a ActionArtifactBounds$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `ActionArtifactBounds$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-bind-options-builder id config)
Creates a ActionBindOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `ActionBindOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-category config id item-key)
The action-category
function data interprets values in the provided config data into a
ActionCategory
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:
ActionCategory
- the value is returned.:deploy
- ActionCategory/DEPLOY
is returned:approval
- ActionCategory/APPROVAL
is returned:test
- ActionCategory/TEST
is returned:invoke
- ActionCategory/INVOKE
is returned:build
- ActionCategory/BUILD
is returned:source
- ActionCategory/SOURCE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `action-category` function data interprets values in the provided config data into a `ActionCategory` 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 `ActionCategory` - the value is returned. * is `:deploy` - `ActionCategory/DEPLOY` is returned * is `:approval` - `ActionCategory/APPROVAL` is returned * is `:test` - `ActionCategory/TEST` is returned * is `:invoke` - `ActionCategory/INVOKE` is returned * is `:build` - `ActionCategory/BUILD` is returned * is `:source` - `ActionCategory/SOURCE` is returned If a value is not found or matches the above criteria, nil is returned.
(action-config-builder id config)
Creates a ActionConfig$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `ActionConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-properties-builder id config)
Creates a ActionProperties$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `ActionProperties$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-artifact-bounds-builder builder id config)
The build-action-artifact-bounds-builder function updates a ActionArtifactBounds$Builder instance using the provided configuration. The function takes the ActionArtifactBounds$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
maxInputs | java.lang.Number | cdk.support/lookup-entry | :max-inputs |
maxOutputs | java.lang.Number | cdk.support/lookup-entry | :max-outputs |
minInputs | java.lang.Number | cdk.support/lookup-entry | :min-inputs |
minOutputs | java.lang.Number | cdk.support/lookup-entry | :min-outputs |
The build-action-artifact-bounds-builder function updates a ActionArtifactBounds$Builder instance using the provided configuration. The function takes the ActionArtifactBounds$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `maxInputs` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-inputs` | | `maxOutputs` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-outputs` | | `minInputs` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-inputs` | | `minOutputs` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-outputs` |
(build-action-bind-options-builder builder id config)
The build-action-bind-options-builder function updates a ActionBindOptions$Builder instance using the provided configuration. The function takes the ActionBindOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
bucket | software.amazon.awscdk.services.s3.IBucket | cdk.support/lookup-entry | :bucket |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
The build-action-bind-options-builder function updates a ActionBindOptions$Builder instance using the provided configuration. The function takes the ActionBindOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `bucket` | software.amazon.awscdk.services.s3.IBucket | [[cdk.support/lookup-entry]] | `:bucket` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` |
(build-action-config-builder builder id config)
The build-action-config-builder function updates a ActionConfig$Builder instance using the provided configuration. The function takes the ActionConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
configuration | java.lang.Object | cdk.support/lookup-entry | :configuration |
The build-action-config-builder function updates a ActionConfig$Builder instance using the provided configuration. The function takes the ActionConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `configuration` | java.lang.Object | [[cdk.support/lookup-entry]] | `:configuration` |
(build-action-properties-builder builder id config)
The build-action-properties-builder function updates a ActionProperties$Builder instance using the provided configuration. The function takes the ActionProperties$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
actionName | java.lang.String | cdk.support/lookup-entry | :action-name |
artifactBounds | software.amazon.awscdk.services.codepipeline.ActionArtifactBounds | cdk.support/lookup-entry | :artifact-bounds |
category | software.amazon.awscdk.services.codepipeline.ActionCategory | cdk.api.services.codepipeline/action-category | :category |
inputs | java.util.List | cdk.support/lookup-entry | :inputs |
outputs | java.util.List | cdk.support/lookup-entry | :outputs |
owner | java.lang.String | cdk.support/lookup-entry | :owner |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
region | java.lang.String | cdk.support/lookup-entry | :region |
resource | software.amazon.awscdk.IResource | cdk.support/lookup-entry | :resource |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runOrder | java.lang.Number | cdk.support/lookup-entry | :run-order |
variablesNamespace | java.lang.String | cdk.support/lookup-entry | :variables-namespace |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-action-properties-builder function updates a ActionProperties$Builder instance using the provided configuration. The function takes the ActionProperties$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `actionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:action-name` | | `artifactBounds` | software.amazon.awscdk.services.codepipeline.ActionArtifactBounds | [[cdk.support/lookup-entry]] | `:artifact-bounds` | | `category` | software.amazon.awscdk.services.codepipeline.ActionCategory | [[cdk.api.services.codepipeline/action-category]] | `:category` | | `inputs` | java.util.List | [[cdk.support/lookup-entry]] | `:inputs` | | `outputs` | java.util.List | [[cdk.support/lookup-entry]] | `:outputs` | | `owner` | java.lang.String | [[cdk.support/lookup-entry]] | `:owner` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `resource` | software.amazon.awscdk.IResource | [[cdk.support/lookup-entry]] | `:resource` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runOrder` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-order` | | `variablesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:variables-namespace` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-cfn-custom-action-type-artifact-details-property-builder builder
id
config)
The build-cfn-custom-action-type-artifact-details-property-builder function updates a CfnCustomActionType$ArtifactDetailsProperty$Builder instance using the provided configuration. The function takes the CfnCustomActionType$ArtifactDetailsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
maximumCount | java.lang.Number | cdk.support/lookup-entry | :maximum-count |
minimumCount | java.lang.Number | cdk.support/lookup-entry | :minimum-count |
The build-cfn-custom-action-type-artifact-details-property-builder function updates a CfnCustomActionType$ArtifactDetailsProperty$Builder instance using the provided configuration. The function takes the CfnCustomActionType$ArtifactDetailsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `maximumCount` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maximum-count` | | `minimumCount` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minimum-count` |
(build-cfn-custom-action-type-builder builder id config)
The build-cfn-custom-action-type-builder function updates a CfnCustomActionType$Builder instance using the provided configuration. The function takes the CfnCustomActionType$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
category | java.lang.String | cdk.support/lookup-entry | :category |
configurationProperties | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :configuration-properties |
inputArtifactDetails | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$ArtifactDetailsProperty | cdk.support/lookup-entry | :input-artifact-details |
outputArtifactDetails | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :output-artifact-details |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
settings | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$SettingsProperty | cdk.support/lookup-entry | :settings |
tags | java.util.List | cdk.support/lookup-entry | :tags |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-cfn-custom-action-type-builder function updates a CfnCustomActionType$Builder instance using the provided configuration. The function takes the CfnCustomActionType$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `category` | java.lang.String | [[cdk.support/lookup-entry]] | `:category` | | `configurationProperties` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:configuration-properties` | | `inputArtifactDetails` | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$ArtifactDetailsProperty | [[cdk.support/lookup-entry]] | `:input-artifact-details` | | `outputArtifactDetails` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:output-artifact-details` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` | | `settings` | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$SettingsProperty | [[cdk.support/lookup-entry]] | `:settings` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-cfn-custom-action-type-configuration-properties-property-builder builder
id
config)
The build-cfn-custom-action-type-configuration-properties-property-builder function updates a CfnCustomActionType$ConfigurationPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnCustomActionType$ConfigurationPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
key | java.lang.Boolean | cdk.support/lookup-entry | :key |
name | java.lang.String | cdk.support/lookup-entry | :name |
queryable | java.lang.Boolean | cdk.support/lookup-entry | :queryable |
required | java.lang.Boolean | cdk.support/lookup-entry | :required |
secret | java.lang.Boolean | cdk.support/lookup-entry | :secret |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-custom-action-type-configuration-properties-property-builder function updates a CfnCustomActionType$ConfigurationPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnCustomActionType$ConfigurationPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `key` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:key` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `queryable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:queryable` | | `required` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:required` | | `secret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:secret` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-custom-action-type-props-builder builder id config)
The build-cfn-custom-action-type-props-builder function updates a CfnCustomActionTypeProps$Builder instance using the provided configuration. The function takes the CfnCustomActionTypeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
category | java.lang.String | cdk.support/lookup-entry | :category |
configurationProperties | java.util.List | cdk.support/lookup-entry | :configuration-properties |
inputArtifactDetails | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$ArtifactDetailsProperty | cdk.support/lookup-entry | :input-artifact-details |
outputArtifactDetails | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$ArtifactDetailsProperty | cdk.support/lookup-entry | :output-artifact-details |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
settings | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :settings |
tags | java.util.List | cdk.support/lookup-entry | :tags |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-cfn-custom-action-type-props-builder function updates a CfnCustomActionTypeProps$Builder instance using the provided configuration. The function takes the CfnCustomActionTypeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `category` | java.lang.String | [[cdk.support/lookup-entry]] | `:category` | | `configurationProperties` | java.util.List | [[cdk.support/lookup-entry]] | `:configuration-properties` | | `inputArtifactDetails` | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$ArtifactDetailsProperty | [[cdk.support/lookup-entry]] | `:input-artifact-details` | | `outputArtifactDetails` | software.amazon.awscdk.services.codepipeline.CfnCustomActionType$ArtifactDetailsProperty | [[cdk.support/lookup-entry]] | `:output-artifact-details` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` | | `settings` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:settings` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-cfn-custom-action-type-settings-property-builder builder id config)
The build-cfn-custom-action-type-settings-property-builder function updates a CfnCustomActionType$SettingsProperty$Builder instance using the provided configuration. The function takes the CfnCustomActionType$SettingsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
entityUrlTemplate | java.lang.String | cdk.support/lookup-entry | :entity-url-template |
executionUrlTemplate | java.lang.String | cdk.support/lookup-entry | :execution-url-template |
revisionUrlTemplate | java.lang.String | cdk.support/lookup-entry | :revision-url-template |
thirdPartyConfigurationUrl | java.lang.String | cdk.support/lookup-entry | :third-party-configuration-url |
The build-cfn-custom-action-type-settings-property-builder function updates a CfnCustomActionType$SettingsProperty$Builder instance using the provided configuration. The function takes the CfnCustomActionType$SettingsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `entityUrlTemplate` | java.lang.String | [[cdk.support/lookup-entry]] | `:entity-url-template` | | `executionUrlTemplate` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-url-template` | | `revisionUrlTemplate` | java.lang.String | [[cdk.support/lookup-entry]] | `:revision-url-template` | | `thirdPartyConfigurationUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:third-party-configuration-url` |
(build-cfn-pipeline-action-declaration-property-builder builder id config)
The build-cfn-pipeline-action-declaration-property-builder function updates a CfnPipeline$ActionDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ActionDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionTypeId | software.amazon.awscdk.services.codepipeline.CfnPipeline$ActionTypeIdProperty | cdk.support/lookup-entry | :action-type-id |
configuration | java.lang.Object | cdk.support/lookup-entry | :configuration |
inputArtifacts | java.util.List | cdk.support/lookup-entry | :input-artifacts |
name | java.lang.String | cdk.support/lookup-entry | :name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
outputArtifacts | java.util.List | cdk.support/lookup-entry | :output-artifacts |
region | java.lang.String | cdk.support/lookup-entry | :region |
roleArn | java.lang.String | cdk.support/lookup-entry | :role-arn |
runOrder | java.lang.Number | cdk.support/lookup-entry | :run-order |
timeoutInMinutes | java.lang.Number | cdk.support/lookup-entry | :timeout-in-minutes |
The build-cfn-pipeline-action-declaration-property-builder function updates a CfnPipeline$ActionDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ActionDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionTypeId` | software.amazon.awscdk.services.codepipeline.CfnPipeline$ActionTypeIdProperty | [[cdk.support/lookup-entry]] | `:action-type-id` | | `configuration` | java.lang.Object | [[cdk.support/lookup-entry]] | `:configuration` | | `inputArtifacts` | java.util.List | [[cdk.support/lookup-entry]] | `:input-artifacts` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `outputArtifacts` | java.util.List | [[cdk.support/lookup-entry]] | `:output-artifacts` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` | | `runOrder` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-order` | | `timeoutInMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:timeout-in-minutes` |
(build-cfn-pipeline-action-type-id-property-builder builder id config)
The build-cfn-pipeline-action-type-id-property-builder function updates a CfnPipeline$ActionTypeIdProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ActionTypeIdProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
category | java.lang.String | cdk.support/lookup-entry | :category |
owner | java.lang.String | cdk.support/lookup-entry | :owner |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-cfn-pipeline-action-type-id-property-builder function updates a CfnPipeline$ActionTypeIdProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ActionTypeIdProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `category` | java.lang.String | [[cdk.support/lookup-entry]] | `:category` | | `owner` | java.lang.String | [[cdk.support/lookup-entry]] | `:owner` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-cfn-pipeline-artifact-store-map-property-builder builder id config)
The build-cfn-pipeline-artifact-store-map-property-builder function updates a CfnPipeline$ArtifactStoreMapProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ArtifactStoreMapProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
artifactStore | software.amazon.awscdk.services.codepipeline.CfnPipeline$ArtifactStoreProperty | cdk.support/lookup-entry | :artifact-store |
region | java.lang.String | cdk.support/lookup-entry | :region |
The build-cfn-pipeline-artifact-store-map-property-builder function updates a CfnPipeline$ArtifactStoreMapProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ArtifactStoreMapProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `artifactStore` | software.amazon.awscdk.services.codepipeline.CfnPipeline$ArtifactStoreProperty | [[cdk.support/lookup-entry]] | `:artifact-store` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` |
(build-cfn-pipeline-artifact-store-property-builder builder id config)
The build-cfn-pipeline-artifact-store-property-builder function updates a CfnPipeline$ArtifactStoreProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ArtifactStoreProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
encryptionKey | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :encryption-key |
location | java.lang.String | cdk.support/lookup-entry | :location |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-pipeline-artifact-store-property-builder function updates a CfnPipeline$ArtifactStoreProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$ArtifactStoreProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `encryptionKey` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:encryption-key` | | `location` | java.lang.String | [[cdk.support/lookup-entry]] | `:location` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-pipeline-blocker-declaration-property-builder builder id config)
The build-cfn-pipeline-blocker-declaration-property-builder function updates a CfnPipeline$BlockerDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$BlockerDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-pipeline-blocker-declaration-property-builder function updates a CfnPipeline$BlockerDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$BlockerDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-pipeline-builder builder id config)
The build-cfn-pipeline-builder function updates a CfnPipeline$Builder instance using the provided configuration. The function takes the CfnPipeline$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
artifactStore | software.amazon.awscdk.services.codepipeline.CfnPipeline$ArtifactStoreProperty | cdk.support/lookup-entry | :artifact-store |
artifactStores | java.util.List | cdk.support/lookup-entry | :artifact-stores |
disableInboundStageTransitions | java.util.List | cdk.support/lookup-entry | :disable-inbound-stage-transitions |
executionMode | java.lang.String | cdk.support/lookup-entry | :execution-mode |
name | java.lang.String | cdk.support/lookup-entry | :name |
pipelineType | java.lang.String | cdk.support/lookup-entry | :pipeline-type |
restartExecutionOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :restart-execution-on-update |
roleArn | java.lang.String | cdk.support/lookup-entry | :role-arn |
stages | java.util.List | cdk.support/lookup-entry | :stages |
tags | java.util.List | cdk.support/lookup-entry | :tags |
triggers | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :triggers |
variables | java.util.List | cdk.support/lookup-entry | :variables |
The build-cfn-pipeline-builder function updates a CfnPipeline$Builder instance using the provided configuration. The function takes the CfnPipeline$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `artifactStore` | software.amazon.awscdk.services.codepipeline.CfnPipeline$ArtifactStoreProperty | [[cdk.support/lookup-entry]] | `:artifact-store` | | `artifactStores` | java.util.List | [[cdk.support/lookup-entry]] | `:artifact-stores` | | `disableInboundStageTransitions` | java.util.List | [[cdk.support/lookup-entry]] | `:disable-inbound-stage-transitions` | | `executionMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-mode` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `pipelineType` | java.lang.String | [[cdk.support/lookup-entry]] | `:pipeline-type` | | `restartExecutionOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:restart-execution-on-update` | | `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` | | `stages` | java.util.List | [[cdk.support/lookup-entry]] | `:stages` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `triggers` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:triggers` | | `variables` | java.util.List | [[cdk.support/lookup-entry]] | `:variables` |
(build-cfn-pipeline-encryption-key-property-builder builder id config)
The build-cfn-pipeline-encryption-key-property-builder function updates a CfnPipeline$EncryptionKeyProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$EncryptionKeyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
id | java.lang.String | cdk.support/lookup-entry | :id |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-pipeline-encryption-key-property-builder function updates a CfnPipeline$EncryptionKeyProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$EncryptionKeyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `id` | java.lang.String | [[cdk.support/lookup-entry]] | `:id` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-pipeline-failure-conditions-property-builder builder id config)
The build-cfn-pipeline-failure-conditions-property-builder function updates a CfnPipeline$FailureConditionsProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$FailureConditionsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
result | java.lang.String | cdk.support/lookup-entry | :result |
The build-cfn-pipeline-failure-conditions-property-builder function updates a CfnPipeline$FailureConditionsProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$FailureConditionsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `result` | java.lang.String | [[cdk.support/lookup-entry]] | `:result` |
(build-cfn-pipeline-git-branch-filter-criteria-property-builder builder
id
config)
The build-cfn-pipeline-git-branch-filter-criteria-property-builder function updates a CfnPipeline$GitBranchFilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitBranchFilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
excludes | java.util.List | cdk.support/lookup-entry | :excludes |
includes | java.util.List | cdk.support/lookup-entry | :includes |
The build-cfn-pipeline-git-branch-filter-criteria-property-builder function updates a CfnPipeline$GitBranchFilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitBranchFilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `excludes` | java.util.List | [[cdk.support/lookup-entry]] | `:excludes` | | `includes` | java.util.List | [[cdk.support/lookup-entry]] | `:includes` |
(build-cfn-pipeline-git-configuration-property-builder builder id config)
The build-cfn-pipeline-git-configuration-property-builder function updates a CfnPipeline$GitConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
pullRequest | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :pull-request |
push | java.util.List | cdk.support/lookup-entry | :push |
sourceActionName | java.lang.String | cdk.support/lookup-entry | :source-action-name |
The build-cfn-pipeline-git-configuration-property-builder function updates a CfnPipeline$GitConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `pullRequest` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:pull-request` | | `push` | java.util.List | [[cdk.support/lookup-entry]] | `:push` | | `sourceActionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-action-name` |
(build-cfn-pipeline-git-file-path-filter-criteria-property-builder builder
id
config)
The build-cfn-pipeline-git-file-path-filter-criteria-property-builder function updates a CfnPipeline$GitFilePathFilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitFilePathFilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
excludes | java.util.List | cdk.support/lookup-entry | :excludes |
includes | java.util.List | cdk.support/lookup-entry | :includes |
The build-cfn-pipeline-git-file-path-filter-criteria-property-builder function updates a CfnPipeline$GitFilePathFilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitFilePathFilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `excludes` | java.util.List | [[cdk.support/lookup-entry]] | `:excludes` | | `includes` | java.util.List | [[cdk.support/lookup-entry]] | `:includes` |
(build-cfn-pipeline-git-pull-request-filter-property-builder builder id config)
The build-cfn-pipeline-git-pull-request-filter-property-builder function updates a CfnPipeline$GitPullRequestFilterProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitPullRequestFilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
branches | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :branches |
events | java.util.List | cdk.support/lookup-entry | :events |
filePaths | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitFilePathFilterCriteriaProperty | cdk.support/lookup-entry | :file-paths |
The build-cfn-pipeline-git-pull-request-filter-property-builder function updates a CfnPipeline$GitPullRequestFilterProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitPullRequestFilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `branches` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:branches` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filePaths` | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitFilePathFilterCriteriaProperty | [[cdk.support/lookup-entry]] | `:file-paths` |
(build-cfn-pipeline-git-push-filter-property-builder builder id config)
The build-cfn-pipeline-git-push-filter-property-builder function updates a CfnPipeline$GitPushFilterProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitPushFilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
branches | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :branches |
filePaths | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitFilePathFilterCriteriaProperty | cdk.support/lookup-entry | :file-paths |
tags | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitTagFilterCriteriaProperty | cdk.support/lookup-entry | :tags |
The build-cfn-pipeline-git-push-filter-property-builder function updates a CfnPipeline$GitPushFilterProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitPushFilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `branches` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:branches` | | `filePaths` | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitFilePathFilterCriteriaProperty | [[cdk.support/lookup-entry]] | `:file-paths` | | `tags` | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitTagFilterCriteriaProperty | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-pipeline-git-tag-filter-criteria-property-builder builder id config)
The build-cfn-pipeline-git-tag-filter-criteria-property-builder function updates a CfnPipeline$GitTagFilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitTagFilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
excludes | java.util.List | cdk.support/lookup-entry | :excludes |
includes | java.util.List | cdk.support/lookup-entry | :includes |
The build-cfn-pipeline-git-tag-filter-criteria-property-builder function updates a CfnPipeline$GitTagFilterCriteriaProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$GitTagFilterCriteriaProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `excludes` | java.util.List | [[cdk.support/lookup-entry]] | `:excludes` | | `includes` | java.util.List | [[cdk.support/lookup-entry]] | `:includes` |
(build-cfn-pipeline-input-artifact-property-builder builder id config)
The build-cfn-pipeline-input-artifact-property-builder function updates a CfnPipeline$InputArtifactProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$InputArtifactProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-pipeline-input-artifact-property-builder function updates a CfnPipeline$InputArtifactProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$InputArtifactProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-pipeline-output-artifact-property-builder builder id config)
The build-cfn-pipeline-output-artifact-property-builder function updates a CfnPipeline$OutputArtifactProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$OutputArtifactProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-pipeline-output-artifact-property-builder function updates a CfnPipeline$OutputArtifactProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$OutputArtifactProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-pipeline-pipeline-trigger-declaration-property-builder builder
id
config)
The build-cfn-pipeline-pipeline-trigger-declaration-property-builder function updates a CfnPipeline$PipelineTriggerDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$PipelineTriggerDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
gitConfiguration | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitConfigurationProperty | cdk.support/lookup-entry | :git-configuration |
providerType | java.lang.String | cdk.support/lookup-entry | :provider-type |
The build-cfn-pipeline-pipeline-trigger-declaration-property-builder function updates a CfnPipeline$PipelineTriggerDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$PipelineTriggerDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `gitConfiguration` | software.amazon.awscdk.services.codepipeline.CfnPipeline$GitConfigurationProperty | [[cdk.support/lookup-entry]] | `:git-configuration` | | `providerType` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-type` |
(build-cfn-pipeline-props-builder builder id config)
The build-cfn-pipeline-props-builder function updates a CfnPipelineProps$Builder instance using the provided configuration. The function takes the CfnPipelineProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
artifactStore | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :artifact-store |
artifactStores | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :artifact-stores |
disableInboundStageTransitions | java.util.List | cdk.support/lookup-entry | :disable-inbound-stage-transitions |
executionMode | java.lang.String | cdk.support/lookup-entry | :execution-mode |
name | java.lang.String | cdk.support/lookup-entry | :name |
pipelineType | java.lang.String | cdk.support/lookup-entry | :pipeline-type |
restartExecutionOnUpdate | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :restart-execution-on-update |
roleArn | java.lang.String | cdk.support/lookup-entry | :role-arn |
stages | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :stages |
tags | java.util.List | cdk.support/lookup-entry | :tags |
triggers | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :triggers |
variables | java.util.List | cdk.support/lookup-entry | :variables |
The build-cfn-pipeline-props-builder function updates a CfnPipelineProps$Builder instance using the provided configuration. The function takes the CfnPipelineProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `artifactStore` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:artifact-store` | | `artifactStores` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:artifact-stores` | | `disableInboundStageTransitions` | java.util.List | [[cdk.support/lookup-entry]] | `:disable-inbound-stage-transitions` | | `executionMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-mode` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `pipelineType` | java.lang.String | [[cdk.support/lookup-entry]] | `:pipeline-type` | | `restartExecutionOnUpdate` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:restart-execution-on-update` | | `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` | | `stages` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:stages` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `triggers` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:triggers` | | `variables` | java.util.List | [[cdk.support/lookup-entry]] | `:variables` |
(build-cfn-pipeline-stage-declaration-property-builder builder id config)
The build-cfn-pipeline-stage-declaration-property-builder function updates a CfnPipeline$StageDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$StageDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
blockers | java.util.List | cdk.support/lookup-entry | :blockers |
name | java.lang.String | cdk.support/lookup-entry | :name |
onFailure | software.amazon.awscdk.services.codepipeline.CfnPipeline$FailureConditionsProperty | cdk.support/lookup-entry | :on-failure |
The build-cfn-pipeline-stage-declaration-property-builder function updates a CfnPipeline$StageDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$StageDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `blockers` | java.util.List | [[cdk.support/lookup-entry]] | `:blockers` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `onFailure` | software.amazon.awscdk.services.codepipeline.CfnPipeline$FailureConditionsProperty | [[cdk.support/lookup-entry]] | `:on-failure` |
(build-cfn-pipeline-stage-transition-property-builder builder id config)
The build-cfn-pipeline-stage-transition-property-builder function updates a CfnPipeline$StageTransitionProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$StageTransitionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
reason | java.lang.String | cdk.support/lookup-entry | :reason |
stageName | java.lang.String | cdk.support/lookup-entry | :stage-name |
The build-cfn-pipeline-stage-transition-property-builder function updates a CfnPipeline$StageTransitionProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$StageTransitionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `reason` | java.lang.String | [[cdk.support/lookup-entry]] | `:reason` | | `stageName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stage-name` |
(build-cfn-pipeline-variable-declaration-property-builder builder id config)
The build-cfn-pipeline-variable-declaration-property-builder function updates a CfnPipeline$VariableDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$VariableDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
defaultValue | java.lang.String | cdk.support/lookup-entry | :default-value |
description | java.lang.String | cdk.support/lookup-entry | :description |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-pipeline-variable-declaration-property-builder function updates a CfnPipeline$VariableDeclarationProperty$Builder instance using the provided configuration. The function takes the CfnPipeline$VariableDeclarationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `defaultValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-value` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-webhook-builder builder id config)
The build-cfn-webhook-builder function updates a CfnWebhook$Builder instance using the provided configuration. The function takes the CfnWebhook$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authentication | java.lang.String | cdk.support/lookup-entry | :authentication |
authenticationConfiguration | software.amazon.awscdk.services.codepipeline.CfnWebhook$WebhookAuthConfigurationProperty | cdk.support/lookup-entry | :authentication-configuration |
filters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :filters |
name | java.lang.String | cdk.support/lookup-entry | :name |
registerWithThirdParty | java.lang.Boolean | cdk.support/lookup-entry | :register-with-third-party |
targetAction | java.lang.String | cdk.support/lookup-entry | :target-action |
targetPipeline | java.lang.String | cdk.support/lookup-entry | :target-pipeline |
targetPipelineVersion | java.lang.Number | cdk.support/lookup-entry | :target-pipeline-version |
The build-cfn-webhook-builder function updates a CfnWebhook$Builder instance using the provided configuration. The function takes the CfnWebhook$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authentication` | java.lang.String | [[cdk.support/lookup-entry]] | `:authentication` | | `authenticationConfiguration` | software.amazon.awscdk.services.codepipeline.CfnWebhook$WebhookAuthConfigurationProperty | [[cdk.support/lookup-entry]] | `:authentication-configuration` | | `filters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:filters` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `registerWithThirdParty` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:register-with-third-party` | | `targetAction` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-action` | | `targetPipeline` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-pipeline` | | `targetPipelineVersion` | java.lang.Number | [[cdk.support/lookup-entry]] | `:target-pipeline-version` |
(build-cfn-webhook-props-builder builder id config)
The build-cfn-webhook-props-builder function updates a CfnWebhookProps$Builder instance using the provided configuration. The function takes the CfnWebhookProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authentication | java.lang.String | cdk.support/lookup-entry | :authentication |
authenticationConfiguration | software.amazon.awscdk.services.codepipeline.CfnWebhook$WebhookAuthConfigurationProperty | cdk.support/lookup-entry | :authentication-configuration |
filters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :filters |
name | java.lang.String | cdk.support/lookup-entry | :name |
registerWithThirdParty | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :register-with-third-party |
targetAction | java.lang.String | cdk.support/lookup-entry | :target-action |
targetPipeline | java.lang.String | cdk.support/lookup-entry | :target-pipeline |
targetPipelineVersion | java.lang.Number | cdk.support/lookup-entry | :target-pipeline-version |
The build-cfn-webhook-props-builder function updates a CfnWebhookProps$Builder instance using the provided configuration. The function takes the CfnWebhookProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authentication` | java.lang.String | [[cdk.support/lookup-entry]] | `:authentication` | | `authenticationConfiguration` | software.amazon.awscdk.services.codepipeline.CfnWebhook$WebhookAuthConfigurationProperty | [[cdk.support/lookup-entry]] | `:authentication-configuration` | | `filters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:filters` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `registerWithThirdParty` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:register-with-third-party` | | `targetAction` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-action` | | `targetPipeline` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-pipeline` | | `targetPipelineVersion` | java.lang.Number | [[cdk.support/lookup-entry]] | `:target-pipeline-version` |
(build-cfn-webhook-webhook-auth-configuration-property-builder builder
id
config)
The build-cfn-webhook-webhook-auth-configuration-property-builder function updates a CfnWebhook$WebhookAuthConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnWebhook$WebhookAuthConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allowedIpRange | java.lang.String | cdk.support/lookup-entry | :allowed-ip-range |
secretToken | java.lang.String | cdk.support/lookup-entry | :secret-token |
The build-cfn-webhook-webhook-auth-configuration-property-builder function updates a CfnWebhook$WebhookAuthConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnWebhook$WebhookAuthConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allowedIpRange` | java.lang.String | [[cdk.support/lookup-entry]] | `:allowed-ip-range` | | `secretToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:secret-token` |
(build-cfn-webhook-webhook-filter-rule-property-builder builder id config)
The build-cfn-webhook-webhook-filter-rule-property-builder function updates a CfnWebhook$WebhookFilterRuleProperty$Builder instance using the provided configuration. The function takes the CfnWebhook$WebhookFilterRuleProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
jsonPath | java.lang.String | cdk.support/lookup-entry | :json-path |
matchEquals | java.lang.String | cdk.support/lookup-entry | :match-equals |
The build-cfn-webhook-webhook-filter-rule-property-builder function updates a CfnWebhook$WebhookFilterRuleProperty$Builder instance using the provided configuration. The function takes the CfnWebhook$WebhookFilterRuleProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `jsonPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:json-path` | | `matchEquals` | java.lang.String | [[cdk.support/lookup-entry]] | `:match-equals` |
(build-common-action-props-builder builder id config)
The build-common-action-props-builder function updates a CommonActionProps$Builder instance using the provided configuration. The function takes the CommonActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionName | java.lang.String | cdk.support/lookup-entry | :action-name |
runOrder | java.lang.Number | cdk.support/lookup-entry | :run-order |
variablesNamespace | java.lang.String | cdk.support/lookup-entry | :variables-namespace |
The build-common-action-props-builder function updates a CommonActionProps$Builder instance using the provided configuration. The function takes the CommonActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:action-name` | | `runOrder` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-order` | | `variablesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:variables-namespace` |
(build-common-aws-action-props-builder builder id config)
The build-common-aws-action-props-builder function updates a CommonAwsActionProps$Builder instance using the provided configuration. The function takes the CommonAwsActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionName | java.lang.String | cdk.support/lookup-entry | :action-name |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
runOrder | java.lang.Number | cdk.support/lookup-entry | :run-order |
variablesNamespace | java.lang.String | cdk.support/lookup-entry | :variables-namespace |
The build-common-aws-action-props-builder function updates a CommonAwsActionProps$Builder instance using the provided configuration. The function takes the CommonAwsActionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:action-name` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `runOrder` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-order` | | `variablesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:variables-namespace` |
(build-cross-region-support-builder builder id config)
The build-cross-region-support-builder function updates a CrossRegionSupport$Builder instance using the provided configuration. The function takes the CrossRegionSupport$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
replicationBucket | software.amazon.awscdk.services.s3.IBucket | cdk.support/lookup-entry | :replication-bucket |
stack | software.amazon.awscdk.Stack | cdk.support/lookup-entry | :stack |
The build-cross-region-support-builder function updates a CrossRegionSupport$Builder instance using the provided configuration. The function takes the CrossRegionSupport$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `replicationBucket` | software.amazon.awscdk.services.s3.IBucket | [[cdk.support/lookup-entry]] | `:replication-bucket` | | `stack` | software.amazon.awscdk.Stack | [[cdk.support/lookup-entry]] | `:stack` |
(build-custom-action-property-builder builder id config)
The build-custom-action-property-builder function updates a CustomActionProperty$Builder instance using the provided configuration. The function takes the CustomActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
key | java.lang.Boolean | cdk.support/lookup-entry | :key |
name | java.lang.String | cdk.support/lookup-entry | :name |
queryable | java.lang.Boolean | cdk.support/lookup-entry | :queryable |
required | java.lang.Boolean | cdk.support/lookup-entry | :required |
secret | java.lang.Boolean | cdk.support/lookup-entry | :secret |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-custom-action-property-builder function updates a CustomActionProperty$Builder instance using the provided configuration. The function takes the CustomActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `key` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:key` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `queryable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:queryable` | | `required` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:required` | | `secret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:secret` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-custom-action-registration-builder builder id config)
The build-custom-action-registration-builder function updates a CustomActionRegistration$Builder instance using the provided configuration. The function takes the CustomActionRegistration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionProperties | java.util.List | cdk.support/lookup-entry | :action-properties |
artifactBounds | software.amazon.awscdk.services.codepipeline.ActionArtifactBounds | cdk.support/lookup-entry | :artifact-bounds |
category | software.amazon.awscdk.services.codepipeline.ActionCategory | cdk.api.services.codepipeline/action-category | :category |
entityUrl | java.lang.String | cdk.support/lookup-entry | :entity-url |
executionUrl | java.lang.String | cdk.support/lookup-entry | :execution-url |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-custom-action-registration-builder function updates a CustomActionRegistration$Builder instance using the provided configuration. The function takes the CustomActionRegistration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionProperties` | java.util.List | [[cdk.support/lookup-entry]] | `:action-properties` | | `artifactBounds` | software.amazon.awscdk.services.codepipeline.ActionArtifactBounds | [[cdk.support/lookup-entry]] | `:artifact-bounds` | | `category` | software.amazon.awscdk.services.codepipeline.ActionCategory | [[cdk.api.services.codepipeline/action-category]] | `:category` | | `entityUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:entity-url` | | `executionUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-url` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-custom-action-registration-props-builder builder id config)
The build-custom-action-registration-props-builder function updates a CustomActionRegistrationProps$Builder instance using the provided configuration. The function takes the CustomActionRegistrationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionProperties | java.util.List | cdk.support/lookup-entry | :action-properties |
artifactBounds | software.amazon.awscdk.services.codepipeline.ActionArtifactBounds | cdk.support/lookup-entry | :artifact-bounds |
category | software.amazon.awscdk.services.codepipeline.ActionCategory | cdk.api.services.codepipeline/action-category | :category |
entityUrl | java.lang.String | cdk.support/lookup-entry | :entity-url |
executionUrl | java.lang.String | cdk.support/lookup-entry | :execution-url |
provider | java.lang.String | cdk.support/lookup-entry | :provider |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-custom-action-registration-props-builder function updates a CustomActionRegistrationProps$Builder instance using the provided configuration. The function takes the CustomActionRegistrationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionProperties` | java.util.List | [[cdk.support/lookup-entry]] | `:action-properties` | | `artifactBounds` | software.amazon.awscdk.services.codepipeline.ActionArtifactBounds | [[cdk.support/lookup-entry]] | `:artifact-bounds` | | `category` | software.amazon.awscdk.services.codepipeline.ActionCategory | [[cdk.api.services.codepipeline/action-category]] | `:category` | | `entityUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:entity-url` | | `executionUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-url` | | `provider` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-git-configuration-builder builder id config)
The build-git-configuration-builder function updates a GitConfiguration$Builder instance using the provided configuration. The function takes the GitConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
pullRequestFilter | java.util.List | cdk.support/lookup-entry | :pull-request-filter |
pushFilter | java.util.List | cdk.support/lookup-entry | :push-filter |
sourceAction | software.amazon.awscdk.services.codepipeline.IAction | cdk.support/lookup-entry | :source-action |
The build-git-configuration-builder function updates a GitConfiguration$Builder instance using the provided configuration. The function takes the GitConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `pullRequestFilter` | java.util.List | [[cdk.support/lookup-entry]] | `:pull-request-filter` | | `pushFilter` | java.util.List | [[cdk.support/lookup-entry]] | `:push-filter` | | `sourceAction` | software.amazon.awscdk.services.codepipeline.IAction | [[cdk.support/lookup-entry]] | `:source-action` |
(build-git-pull-request-filter-builder builder id config)
The build-git-pull-request-filter-builder function updates a GitPullRequestFilter$Builder instance using the provided configuration. The function takes the GitPullRequestFilter$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
branchesExcludes | java.util.List | cdk.support/lookup-entry | :branches-excludes |
branchesIncludes | java.util.List | cdk.support/lookup-entry | :branches-includes |
events | java.util.List | cdk.support/lookup-entry | :events |
filePathsExcludes | java.util.List | cdk.support/lookup-entry | :file-paths-excludes |
filePathsIncludes | java.util.List | cdk.support/lookup-entry | :file-paths-includes |
The build-git-pull-request-filter-builder function updates a GitPullRequestFilter$Builder instance using the provided configuration. The function takes the GitPullRequestFilter$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `branchesExcludes` | java.util.List | [[cdk.support/lookup-entry]] | `:branches-excludes` | | `branchesIncludes` | java.util.List | [[cdk.support/lookup-entry]] | `:branches-includes` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `filePathsExcludes` | java.util.List | [[cdk.support/lookup-entry]] | `:file-paths-excludes` | | `filePathsIncludes` | java.util.List | [[cdk.support/lookup-entry]] | `:file-paths-includes` |
(build-git-push-filter-builder builder id config)
The build-git-push-filter-builder function updates a GitPushFilter$Builder instance using the provided configuration. The function takes the GitPushFilter$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
tagsExcludes | java.util.List | cdk.support/lookup-entry | :tags-excludes |
tagsIncludes | java.util.List | cdk.support/lookup-entry | :tags-includes |
The build-git-push-filter-builder function updates a GitPushFilter$Builder instance using the provided configuration. The function takes the GitPushFilter$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `tagsExcludes` | java.util.List | [[cdk.support/lookup-entry]] | `:tags-excludes` | | `tagsIncludes` | java.util.List | [[cdk.support/lookup-entry]] | `:tags-includes` |
(build-pipeline-builder builder id config)
The build-pipeline-builder function updates a Pipeline$Builder instance using the provided configuration. The function takes the Pipeline$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
artifactBucket | software.amazon.awscdk.services.s3.IBucket | cdk.support/lookup-entry | :artifact-bucket |
crossAccountKeys | java.lang.Boolean | cdk.support/lookup-entry | :cross-account-keys |
crossRegionReplicationBuckets | java.util.Map | cdk.support/lookup-entry | :cross-region-replication-buckets |
enableKeyRotation | java.lang.Boolean | cdk.support/lookup-entry | :enable-key-rotation |
executionMode | software.amazon.awscdk.services.codepipeline.ExecutionMode | cdk.api.services.codepipeline/execution-mode | :execution-mode |
pipelineName | java.lang.String | cdk.support/lookup-entry | :pipeline-name |
pipelineType | software.amazon.awscdk.services.codepipeline.PipelineType | cdk.api.services.codepipeline/pipeline-type | :pipeline-type |
restartExecutionOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :restart-execution-on-update |
reuseCrossRegionSupportStacks | java.lang.Boolean | cdk.support/lookup-entry | :reuse-cross-region-support-stacks |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
stages | java.util.List | cdk.support/lookup-entry | :stages |
triggers | java.util.List | cdk.support/lookup-entry | :triggers |
variables | java.util.List | cdk.support/lookup-entry | :variables |
The build-pipeline-builder function updates a Pipeline$Builder instance using the provided configuration. The function takes the Pipeline$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `artifactBucket` | software.amazon.awscdk.services.s3.IBucket | [[cdk.support/lookup-entry]] | `:artifact-bucket` | | `crossAccountKeys` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cross-account-keys` | | `crossRegionReplicationBuckets` | java.util.Map | [[cdk.support/lookup-entry]] | `:cross-region-replication-buckets` | | `enableKeyRotation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-key-rotation` | | `executionMode` | software.amazon.awscdk.services.codepipeline.ExecutionMode | [[cdk.api.services.codepipeline/execution-mode]] | `:execution-mode` | | `pipelineName` | java.lang.String | [[cdk.support/lookup-entry]] | `:pipeline-name` | | `pipelineType` | software.amazon.awscdk.services.codepipeline.PipelineType | [[cdk.api.services.codepipeline/pipeline-type]] | `:pipeline-type` | | `restartExecutionOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:restart-execution-on-update` | | `reuseCrossRegionSupportStacks` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:reuse-cross-region-support-stacks` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `stages` | java.util.List | [[cdk.support/lookup-entry]] | `:stages` | | `triggers` | java.util.List | [[cdk.support/lookup-entry]] | `:triggers` | | `variables` | java.util.List | [[cdk.support/lookup-entry]] | `:variables` |
(build-pipeline-notify-on-options-builder builder id config)
The build-pipeline-notify-on-options-builder function updates a PipelineNotifyOnOptions$Builder instance using the provided configuration. The function takes the PipelineNotifyOnOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
detailType | software.amazon.awscdk.services.codestarnotifications.DetailType | cdk.api.services.codestarnotifications/detail-type | :detail-type |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
events | java.util.List | cdk.support/lookup-entry | :events |
notificationRuleName | java.lang.String | cdk.support/lookup-entry | :notification-rule-name |
The build-pipeline-notify-on-options-builder function updates a PipelineNotifyOnOptions$Builder instance using the provided configuration. The function takes the PipelineNotifyOnOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `detailType` | software.amazon.awscdk.services.codestarnotifications.DetailType | [[cdk.api.services.codestarnotifications/detail-type]] | `:detail-type` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `events` | java.util.List | [[cdk.support/lookup-entry]] | `:events` | | `notificationRuleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:notification-rule-name` |
(build-pipeline-props-builder builder id config)
The build-pipeline-props-builder function updates a PipelineProps$Builder instance using the provided configuration. The function takes the PipelineProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
artifactBucket | software.amazon.awscdk.services.s3.IBucket | cdk.support/lookup-entry | :artifact-bucket |
crossAccountKeys | java.lang.Boolean | cdk.support/lookup-entry | :cross-account-keys |
crossRegionReplicationBuckets | java.util.Map | cdk.support/lookup-entry | :cross-region-replication-buckets |
enableKeyRotation | java.lang.Boolean | cdk.support/lookup-entry | :enable-key-rotation |
executionMode | software.amazon.awscdk.services.codepipeline.ExecutionMode | cdk.api.services.codepipeline/execution-mode | :execution-mode |
pipelineName | java.lang.String | cdk.support/lookup-entry | :pipeline-name |
pipelineType | software.amazon.awscdk.services.codepipeline.PipelineType | cdk.api.services.codepipeline/pipeline-type | :pipeline-type |
restartExecutionOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :restart-execution-on-update |
reuseCrossRegionSupportStacks | java.lang.Boolean | cdk.support/lookup-entry | :reuse-cross-region-support-stacks |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
stages | java.util.List | cdk.support/lookup-entry | :stages |
triggers | java.util.List | cdk.support/lookup-entry | :triggers |
variables | java.util.List | cdk.support/lookup-entry | :variables |
The build-pipeline-props-builder function updates a PipelineProps$Builder instance using the provided configuration. The function takes the PipelineProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `artifactBucket` | software.amazon.awscdk.services.s3.IBucket | [[cdk.support/lookup-entry]] | `:artifact-bucket` | | `crossAccountKeys` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cross-account-keys` | | `crossRegionReplicationBuckets` | java.util.Map | [[cdk.support/lookup-entry]] | `:cross-region-replication-buckets` | | `enableKeyRotation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-key-rotation` | | `executionMode` | software.amazon.awscdk.services.codepipeline.ExecutionMode | [[cdk.api.services.codepipeline/execution-mode]] | `:execution-mode` | | `pipelineName` | java.lang.String | [[cdk.support/lookup-entry]] | `:pipeline-name` | | `pipelineType` | software.amazon.awscdk.services.codepipeline.PipelineType | [[cdk.api.services.codepipeline/pipeline-type]] | `:pipeline-type` | | `restartExecutionOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:restart-execution-on-update` | | `reuseCrossRegionSupportStacks` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:reuse-cross-region-support-stacks` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `stages` | java.util.List | [[cdk.support/lookup-entry]] | `:stages` | | `triggers` | java.util.List | [[cdk.support/lookup-entry]] | `:triggers` | | `variables` | java.util.List | [[cdk.support/lookup-entry]] | `:variables` |
(build-stage-options-builder builder id config)
The build-stage-options-builder function updates a StageOptions$Builder instance using the provided configuration. The function takes the StageOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
placement | software.amazon.awscdk.services.codepipeline.StagePlacement | cdk.support/lookup-entry | :placement |
stageName | java.lang.String | cdk.support/lookup-entry | :stage-name |
transitionDisabledReason | java.lang.String | cdk.support/lookup-entry | :transition-disabled-reason |
transitionToEnabled | java.lang.Boolean | cdk.support/lookup-entry | :transition-to-enabled |
The build-stage-options-builder function updates a StageOptions$Builder instance using the provided configuration. The function takes the StageOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `placement` | software.amazon.awscdk.services.codepipeline.StagePlacement | [[cdk.support/lookup-entry]] | `:placement` | | `stageName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stage-name` | | `transitionDisabledReason` | java.lang.String | [[cdk.support/lookup-entry]] | `:transition-disabled-reason` | | `transitionToEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:transition-to-enabled` |
(build-stage-placement-builder builder id config)
The build-stage-placement-builder function updates a StagePlacement$Builder instance using the provided configuration. The function takes the StagePlacement$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
justAfter | software.amazon.awscdk.services.codepipeline.IStage | cdk.support/lookup-entry | :just-after |
rightBefore | software.amazon.awscdk.services.codepipeline.IStage | cdk.support/lookup-entry | :right-before |
The build-stage-placement-builder function updates a StagePlacement$Builder instance using the provided configuration. The function takes the StagePlacement$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `justAfter` | software.amazon.awscdk.services.codepipeline.IStage | [[cdk.support/lookup-entry]] | `:just-after` | | `rightBefore` | software.amazon.awscdk.services.codepipeline.IStage | [[cdk.support/lookup-entry]] | `:right-before` |
(build-stage-props-builder builder id config)
The build-stage-props-builder function updates a StageProps$Builder instance using the provided configuration. The function takes the StageProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
stageName | java.lang.String | cdk.support/lookup-entry | :stage-name |
transitionDisabledReason | java.lang.String | cdk.support/lookup-entry | :transition-disabled-reason |
transitionToEnabled | java.lang.Boolean | cdk.support/lookup-entry | :transition-to-enabled |
The build-stage-props-builder function updates a StageProps$Builder instance using the provided configuration. The function takes the StageProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `stageName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stage-name` | | `transitionDisabledReason` | java.lang.String | [[cdk.support/lookup-entry]] | `:transition-disabled-reason` | | `transitionToEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:transition-to-enabled` |
(build-trigger-builder builder id config)
The build-trigger-builder function updates a Trigger$Builder instance using the provided configuration. The function takes the Trigger$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
gitConfiguration | software.amazon.awscdk.services.codepipeline.GitConfiguration | cdk.support/lookup-entry | :git-configuration |
providerType | software.amazon.awscdk.services.codepipeline.ProviderType | cdk.api.services.codepipeline/provider-type | :provider-type |
The build-trigger-builder function updates a Trigger$Builder instance using the provided configuration. The function takes the Trigger$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `gitConfiguration` | software.amazon.awscdk.services.codepipeline.GitConfiguration | [[cdk.support/lookup-entry]] | `:git-configuration` | | `providerType` | software.amazon.awscdk.services.codepipeline.ProviderType | [[cdk.api.services.codepipeline/provider-type]] | `:provider-type` |
(build-trigger-props-builder builder id config)
The build-trigger-props-builder function updates a TriggerProps$Builder instance using the provided configuration. The function takes the TriggerProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
gitConfiguration | software.amazon.awscdk.services.codepipeline.GitConfiguration | cdk.support/lookup-entry | :git-configuration |
providerType | software.amazon.awscdk.services.codepipeline.ProviderType | cdk.api.services.codepipeline/provider-type | :provider-type |
The build-trigger-props-builder function updates a TriggerProps$Builder instance using the provided configuration. The function takes the TriggerProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `gitConfiguration` | software.amazon.awscdk.services.codepipeline.GitConfiguration | [[cdk.support/lookup-entry]] | `:git-configuration` | | `providerType` | software.amazon.awscdk.services.codepipeline.ProviderType | [[cdk.api.services.codepipeline/provider-type]] | `:provider-type` |
(build-variable-builder builder id config)
The build-variable-builder function updates a Variable$Builder instance using the provided configuration. The function takes the Variable$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
defaultValue | java.lang.String | cdk.support/lookup-entry | :default-value |
description | java.lang.String | cdk.support/lookup-entry | :description |
variableName | java.lang.String | cdk.support/lookup-entry | :variable-name |
The build-variable-builder function updates a Variable$Builder instance using the provided configuration. The function takes the Variable$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `defaultValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-value` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `variableName` | java.lang.String | [[cdk.support/lookup-entry]] | `:variable-name` |
(build-variable-props-builder builder id config)
The build-variable-props-builder function updates a VariableProps$Builder instance using the provided configuration. The function takes the VariableProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
defaultValue | java.lang.String | cdk.support/lookup-entry | :default-value |
description | java.lang.String | cdk.support/lookup-entry | :description |
variableName | java.lang.String | cdk.support/lookup-entry | :variable-name |
The build-variable-props-builder function updates a VariableProps$Builder instance using the provided configuration. The function takes the VariableProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `defaultValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-value` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `variableName` | java.lang.String | [[cdk.support/lookup-entry]] | `:variable-name` |
(cfn-custom-action-type-artifact-details-property-builder id config)
Creates a CfnCustomActionType$ArtifactDetailsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnCustomActionType$ArtifactDetailsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-custom-action-type-builder scope id config)
Creates a CfnCustomActionType$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 `CfnCustomActionType$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-custom-action-type-configuration-properties-property-builder id config)
Creates a CfnCustomActionType$ConfigurationPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnCustomActionType$ConfigurationPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-custom-action-type-props-builder id config)
Creates a CfnCustomActionTypeProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnCustomActionTypeProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-custom-action-type-settings-property-builder id config)
Creates a CfnCustomActionType$SettingsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnCustomActionType$SettingsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-action-declaration-property-builder id config)
Creates a CfnPipeline$ActionDeclarationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$ActionDeclarationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-action-type-id-property-builder id config)
Creates a CfnPipeline$ActionTypeIdProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$ActionTypeIdProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-artifact-store-map-property-builder id config)
Creates a CfnPipeline$ArtifactStoreMapProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$ArtifactStoreMapProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-artifact-store-property-builder id config)
Creates a CfnPipeline$ArtifactStoreProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$ArtifactStoreProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-blocker-declaration-property-builder id config)
Creates a CfnPipeline$BlockerDeclarationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$BlockerDeclarationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-builder scope id config)
Creates a CfnPipeline$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 `CfnPipeline$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-pipeline-encryption-key-property-builder id config)
Creates a CfnPipeline$EncryptionKeyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$EncryptionKeyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-failure-conditions-property-builder id config)
Creates a CfnPipeline$FailureConditionsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$FailureConditionsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-git-branch-filter-criteria-property-builder id config)
Creates a CfnPipeline$GitBranchFilterCriteriaProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$GitBranchFilterCriteriaProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-git-configuration-property-builder id config)
Creates a CfnPipeline$GitConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$GitConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-git-file-path-filter-criteria-property-builder id config)
Creates a CfnPipeline$GitFilePathFilterCriteriaProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$GitFilePathFilterCriteriaProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-git-pull-request-filter-property-builder id config)
Creates a CfnPipeline$GitPullRequestFilterProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$GitPullRequestFilterProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-git-push-filter-property-builder id config)
Creates a CfnPipeline$GitPushFilterProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$GitPushFilterProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-git-tag-filter-criteria-property-builder id config)
Creates a CfnPipeline$GitTagFilterCriteriaProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$GitTagFilterCriteriaProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-input-artifact-property-builder id config)
Creates a CfnPipeline$InputArtifactProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$InputArtifactProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-output-artifact-property-builder id config)
Creates a CfnPipeline$OutputArtifactProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$OutputArtifactProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-pipeline-trigger-declaration-property-builder id config)
Creates a CfnPipeline$PipelineTriggerDeclarationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$PipelineTriggerDeclarationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-props-builder id config)
Creates a CfnPipelineProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipelineProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-stage-declaration-property-builder id config)
Creates a CfnPipeline$StageDeclarationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$StageDeclarationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-stage-transition-property-builder id config)
Creates a CfnPipeline$StageTransitionProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$StageTransitionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-pipeline-variable-declaration-property-builder id config)
Creates a CfnPipeline$VariableDeclarationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnPipeline$VariableDeclarationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-webhook-builder scope id config)
Creates a CfnWebhook$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 `CfnWebhook$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-webhook-props-builder id config)
Creates a CfnWebhookProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnWebhookProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-webhook-webhook-auth-configuration-property-builder id config)
Creates a CfnWebhook$WebhookAuthConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnWebhook$WebhookAuthConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-webhook-webhook-filter-rule-property-builder id config)
Creates a CfnWebhook$WebhookFilterRuleProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CfnWebhook$WebhookFilterRuleProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(common-action-props-builder id config)
Creates a CommonActionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CommonActionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(common-aws-action-props-builder id config)
Creates a CommonAwsActionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CommonAwsActionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cross-region-support-builder id config)
Creates a CrossRegionSupport$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CrossRegionSupport$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(custom-action-property-builder id config)
Creates a CustomActionProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CustomActionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(custom-action-registration-builder scope id config)
Creates a CustomActionRegistration$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 `CustomActionRegistration$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(custom-action-registration-props-builder id config)
Creates a CustomActionRegistrationProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `CustomActionRegistrationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(execution-mode config id item-key)
The execution-mode
function data interprets values in the provided config data into a
ExecutionMode
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:
ExecutionMode
- the value is returned.:superseded
- ExecutionMode/SUPERSEDED
is returned:parallel
- ExecutionMode/PARALLEL
is returned:queued
- ExecutionMode/QUEUED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `execution-mode` function data interprets values in the provided config data into a `ExecutionMode` 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 `ExecutionMode` - the value is returned. * is `:superseded` - `ExecutionMode/SUPERSEDED` is returned * is `:parallel` - `ExecutionMode/PARALLEL` is returned * is `:queued` - `ExecutionMode/QUEUED` is returned If a value is not found or matches the above criteria, nil is returned.
(git-configuration-builder id config)
Creates a GitConfiguration$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `GitConfiguration$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(git-pull-request-event config id item-key)
The git-pull-request-event
function data interprets values in the provided config data into a
GitPullRequestEvent
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:
GitPullRequestEvent
- the value is returned.:updated
- GitPullRequestEvent/UPDATED
is returned:open
- GitPullRequestEvent/OPEN
is returned:closed
- GitPullRequestEvent/CLOSED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `git-pull-request-event` function data interprets values in the provided config data into a `GitPullRequestEvent` 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 `GitPullRequestEvent` - the value is returned. * is `:updated` - `GitPullRequestEvent/UPDATED` is returned * is `:open` - `GitPullRequestEvent/OPEN` is returned * is `:closed` - `GitPullRequestEvent/CLOSED` is returned If a value is not found or matches the above criteria, nil is returned.
(git-pull-request-filter-builder id config)
Creates a GitPullRequestFilter$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `GitPullRequestFilter$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(git-push-filter-builder id config)
Creates a GitPushFilter$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `GitPushFilter$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(pipeline-builder scope id config)
Creates a Pipeline$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 `Pipeline$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 |
(pipeline-notification-events config id item-key)
The pipeline-notification-events
function data interprets values in the provided config data into a
PipelineNotificationEvents
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:
PipelineNotificationEvents
- the value is returned.:pipeline-execution-started
- PipelineNotificationEvents/PIPELINE_EXECUTION_STARTED
is returned:stage-execution-started
- PipelineNotificationEvents/STAGE_EXECUTION_STARTED
is returned:pipeline-execution-superseded
- PipelineNotificationEvents/PIPELINE_EXECUTION_SUPERSEDED
is returned:manual-approval-failed
- PipelineNotificationEvents/MANUAL_APPROVAL_FAILED
is returned:action-execution-started
- PipelineNotificationEvents/ACTION_EXECUTION_STARTED
is returned:pipeline-execution-canceled
- PipelineNotificationEvents/PIPELINE_EXECUTION_CANCELED
is returned:stage-execution-succeeded
- PipelineNotificationEvents/STAGE_EXECUTION_SUCCEEDED
is returned:stage-execution-failed
- PipelineNotificationEvents/STAGE_EXECUTION_FAILED
is returned:stage-execution-canceled
- PipelineNotificationEvents/STAGE_EXECUTION_CANCELED
is returned:pipeline-execution-succeeded
- PipelineNotificationEvents/PIPELINE_EXECUTION_SUCCEEDED
is returned:manual-approval-needed
- PipelineNotificationEvents/MANUAL_APPROVAL_NEEDED
is returned:pipeline-execution-failed
- PipelineNotificationEvents/PIPELINE_EXECUTION_FAILED
is returned:action-execution-failed
- PipelineNotificationEvents/ACTION_EXECUTION_FAILED
is returned:stage-execution-resumed
- PipelineNotificationEvents/STAGE_EXECUTION_RESUMED
is returned:manual-approval-succeeded
- PipelineNotificationEvents/MANUAL_APPROVAL_SUCCEEDED
is returned:action-execution-succeeded
- PipelineNotificationEvents/ACTION_EXECUTION_SUCCEEDED
is returned:action-execution-canceled
- PipelineNotificationEvents/ACTION_EXECUTION_CANCELED
is returned:pipeline-execution-resumed
- PipelineNotificationEvents/PIPELINE_EXECUTION_RESUMED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `pipeline-notification-events` function data interprets values in the provided config data into a `PipelineNotificationEvents` 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 `PipelineNotificationEvents` - the value is returned. * is `:pipeline-execution-started` - `PipelineNotificationEvents/PIPELINE_EXECUTION_STARTED` is returned * is `:stage-execution-started` - `PipelineNotificationEvents/STAGE_EXECUTION_STARTED` is returned * is `:pipeline-execution-superseded` - `PipelineNotificationEvents/PIPELINE_EXECUTION_SUPERSEDED` is returned * is `:manual-approval-failed` - `PipelineNotificationEvents/MANUAL_APPROVAL_FAILED` is returned * is `:action-execution-started` - `PipelineNotificationEvents/ACTION_EXECUTION_STARTED` is returned * is `:pipeline-execution-canceled` - `PipelineNotificationEvents/PIPELINE_EXECUTION_CANCELED` is returned * is `:stage-execution-succeeded` - `PipelineNotificationEvents/STAGE_EXECUTION_SUCCEEDED` is returned * is `:stage-execution-failed` - `PipelineNotificationEvents/STAGE_EXECUTION_FAILED` is returned * is `:stage-execution-canceled` - `PipelineNotificationEvents/STAGE_EXECUTION_CANCELED` is returned * is `:pipeline-execution-succeeded` - `PipelineNotificationEvents/PIPELINE_EXECUTION_SUCCEEDED` is returned * is `:manual-approval-needed` - `PipelineNotificationEvents/MANUAL_APPROVAL_NEEDED` is returned * is `:pipeline-execution-failed` - `PipelineNotificationEvents/PIPELINE_EXECUTION_FAILED` is returned * is `:action-execution-failed` - `PipelineNotificationEvents/ACTION_EXECUTION_FAILED` is returned * is `:stage-execution-resumed` - `PipelineNotificationEvents/STAGE_EXECUTION_RESUMED` is returned * is `:manual-approval-succeeded` - `PipelineNotificationEvents/MANUAL_APPROVAL_SUCCEEDED` is returned * is `:action-execution-succeeded` - `PipelineNotificationEvents/ACTION_EXECUTION_SUCCEEDED` is returned * is `:action-execution-canceled` - `PipelineNotificationEvents/ACTION_EXECUTION_CANCELED` is returned * is `:pipeline-execution-resumed` - `PipelineNotificationEvents/PIPELINE_EXECUTION_RESUMED` is returned If a value is not found or matches the above criteria, nil is returned.
(pipeline-notify-on-options-builder id config)
Creates a PipelineNotifyOnOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `PipelineNotifyOnOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(pipeline-props-builder id config)
Creates a PipelineProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `PipelineProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(pipeline-type config id item-key)
The pipeline-type
function data interprets values in the provided config data into a
PipelineType
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:
PipelineType
- the value is returned.:v2
- PipelineType/V2
is returned:v1
- PipelineType/V1
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `pipeline-type` function data interprets values in the provided config data into a `PipelineType` 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 `PipelineType` - the value is returned. * is `:v2` - `PipelineType/V2` is returned * is `:v1` - `PipelineType/V1` is returned If a value is not found or matches the above criteria, nil is returned.
(provider-type config id item-key)
The provider-type
function data interprets values in the provided config data into a
ProviderType
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:
ProviderType
- the value is returned.:code-star-source-connection
- ProviderType/CODE_STAR_SOURCE_CONNECTION
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `provider-type` function data interprets values in the provided config data into a `ProviderType` 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 `ProviderType` - the value is returned. * is `:code-star-source-connection` - `ProviderType/CODE_STAR_SOURCE_CONNECTION` is returned If a value is not found or matches the above criteria, nil is returned.
(stage-options-builder id config)
Creates a StageOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `StageOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(stage-placement-builder id config)
Creates a StagePlacement$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `StagePlacement$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(stage-props-builder id config)
Creates a StageProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `StageProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(trigger-builder id config)
Creates a Trigger$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 `Trigger$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 |
(trigger-props-builder id config)
Creates a TriggerProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `TriggerProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(variable-builder id config)
Creates a Variable$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 `Variable$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 |
(variable-props-builder id config)
Creates a VariableProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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 `VariableProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close