Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.pipelines package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.pipelines package.
(add-stage-opts-builder id config)
Creates a AddStageOpts$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AddStageOpts$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(asset-type config id item-key)
The asset-type
function data interprets values in the provided config data into a
AssetType
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:
AssetType
- the value is returned.:docker-image
- AssetType/DOCKER_IMAGE
is returned:file
- AssetType/FILE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `asset-type` function data interprets values in the provided config data into a `AssetType` 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 `AssetType` - the value is returned. * is `:docker-image` - `AssetType/DOCKER_IMAGE` is returned * is `:file` - `AssetType/FILE` is returned If a value is not found or matches the above criteria, nil is returned.
(build-add-stage-opts-builder builder id config)
The build-add-stage-opts-builder function updates a AddStageOpts$Builder instance using the provided configuration. The function takes the AddStageOpts$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
post | java.util.List | cdk.support/lookup-entry | :post |
pre | java.util.List | cdk.support/lookup-entry | :pre |
stackSteps | java.util.List | cdk.support/lookup-entry | :stack-steps |
The build-add-stage-opts-builder function updates a AddStageOpts$Builder instance using the provided configuration. The function takes the AddStageOpts$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `post` | java.util.List | [[cdk.support/lookup-entry]] | `:post` | | `pre` | java.util.List | [[cdk.support/lookup-entry]] | `:pre` | | `stackSteps` | java.util.List | [[cdk.support/lookup-entry]] | `:stack-steps` |
(build-code-build-options-builder builder id config)
The build-code-build-options-builder function updates a CodeBuildOptions$Builder instance using the provided configuration. The function takes the CodeBuildOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
buildEnvironment | software.amazon.awscdk.services.codebuild.BuildEnvironment | cdk.support/lookup-entry | :build-environment |
cache | software.amazon.awscdk.services.codebuild.Cache | cdk.support/lookup-entry | :cache |
fileSystemLocations | java.util.List | cdk.support/lookup-entry | :file-system-locations |
logging | software.amazon.awscdk.services.codebuild.LoggingOptions | cdk.support/lookup-entry | :logging |
partialBuildSpec | software.amazon.awscdk.services.codebuild.BuildSpec | cdk.support/lookup-entry | :partial-build-spec |
rolePolicy | java.util.List | cdk.support/lookup-entry | :role-policy |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
subnetSelection | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :subnet-selection |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
The build-code-build-options-builder function updates a CodeBuildOptions$Builder instance using the provided configuration. The function takes the CodeBuildOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `buildEnvironment` | software.amazon.awscdk.services.codebuild.BuildEnvironment | [[cdk.support/lookup-entry]] | `:build-environment` | | `cache` | software.amazon.awscdk.services.codebuild.Cache | [[cdk.support/lookup-entry]] | `:cache` | | `fileSystemLocations` | java.util.List | [[cdk.support/lookup-entry]] | `:file-system-locations` | | `logging` | software.amazon.awscdk.services.codebuild.LoggingOptions | [[cdk.support/lookup-entry]] | `:logging` | | `partialBuildSpec` | software.amazon.awscdk.services.codebuild.BuildSpec | [[cdk.support/lookup-entry]] | `:partial-build-spec` | | `rolePolicy` | java.util.List | [[cdk.support/lookup-entry]] | `:role-policy` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `subnetSelection` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:subnet-selection` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` |
(build-code-build-step-builder builder id config)
The build-code-build-step-builder function updates a CodeBuildStep$Builder instance using the provided configuration. The function takes the CodeBuildStep$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :action-role |
additionalInputs | java.util.Map | cdk.support/lookup-entry | :additional-inputs |
buildEnvironment | software.amazon.awscdk.services.codebuild.BuildEnvironment | cdk.support/lookup-entry | :build-environment |
cache | software.amazon.awscdk.services.codebuild.Cache | cdk.support/lookup-entry | :cache |
commands | java.util.List | cdk.support/lookup-entry | :commands |
env | java.util.Map | cdk.support/lookup-entry | :env |
envFromCfnOutputs | java.util.Map | cdk.support/lookup-entry | :env-from-cfn-outputs |
fileSystemLocations | java.util.List | cdk.support/lookup-entry | :file-system-locations |
input | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :input |
installCommands | java.util.List | cdk.support/lookup-entry | :install-commands |
logging | software.amazon.awscdk.services.codebuild.LoggingOptions | cdk.support/lookup-entry | :logging |
partialBuildSpec | software.amazon.awscdk.services.codebuild.BuildSpec | cdk.support/lookup-entry | :partial-build-spec |
primaryOutputDirectory | java.lang.String | cdk.support/lookup-entry | :primary-output-directory |
projectName | java.lang.String | cdk.support/lookup-entry | :project-name |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
rolePolicyStatements | java.util.List | cdk.support/lookup-entry | :role-policy-statements |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
subnetSelection | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :subnet-selection |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
The build-code-build-step-builder function updates a CodeBuildStep$Builder instance using the provided configuration. The function takes the CodeBuildStep$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:action-role` | | `additionalInputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:additional-inputs` | | `buildEnvironment` | software.amazon.awscdk.services.codebuild.BuildEnvironment | [[cdk.support/lookup-entry]] | `:build-environment` | | `cache` | software.amazon.awscdk.services.codebuild.Cache | [[cdk.support/lookup-entry]] | `:cache` | | `commands` | java.util.List | [[cdk.support/lookup-entry]] | `:commands` | | `env` | java.util.Map | [[cdk.support/lookup-entry]] | `:env` | | `envFromCfnOutputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:env-from-cfn-outputs` | | `fileSystemLocations` | java.util.List | [[cdk.support/lookup-entry]] | `:file-system-locations` | | `input` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:input` | | `installCommands` | java.util.List | [[cdk.support/lookup-entry]] | `:install-commands` | | `logging` | software.amazon.awscdk.services.codebuild.LoggingOptions | [[cdk.support/lookup-entry]] | `:logging` | | `partialBuildSpec` | software.amazon.awscdk.services.codebuild.BuildSpec | [[cdk.support/lookup-entry]] | `:partial-build-spec` | | `primaryOutputDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:primary-output-directory` | | `projectName` | java.lang.String | [[cdk.support/lookup-entry]] | `:project-name` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `rolePolicyStatements` | java.util.List | [[cdk.support/lookup-entry]] | `:role-policy-statements` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `subnetSelection` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:subnet-selection` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` |
(build-code-build-step-props-builder builder id config)
The build-code-build-step-props-builder function updates a CodeBuildStepProps$Builder instance using the provided configuration. The function takes the CodeBuildStepProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :action-role |
additionalInputs | java.util.Map | cdk.support/lookup-entry | :additional-inputs |
buildEnvironment | software.amazon.awscdk.services.codebuild.BuildEnvironment | cdk.support/lookup-entry | :build-environment |
cache | software.amazon.awscdk.services.codebuild.Cache | cdk.support/lookup-entry | :cache |
commands | java.util.List | cdk.support/lookup-entry | :commands |
env | java.util.Map | cdk.support/lookup-entry | :env |
envFromCfnOutputs | java.util.Map | cdk.support/lookup-entry | :env-from-cfn-outputs |
fileSystemLocations | java.util.List | cdk.support/lookup-entry | :file-system-locations |
input | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :input |
installCommands | java.util.List | cdk.support/lookup-entry | :install-commands |
logging | software.amazon.awscdk.services.codebuild.LoggingOptions | cdk.support/lookup-entry | :logging |
partialBuildSpec | software.amazon.awscdk.services.codebuild.BuildSpec | cdk.support/lookup-entry | :partial-build-spec |
primaryOutputDirectory | java.lang.String | cdk.support/lookup-entry | :primary-output-directory |
projectName | java.lang.String | cdk.support/lookup-entry | :project-name |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
rolePolicyStatements | java.util.List | cdk.support/lookup-entry | :role-policy-statements |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
subnetSelection | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :subnet-selection |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
The build-code-build-step-props-builder function updates a CodeBuildStepProps$Builder instance using the provided configuration. The function takes the CodeBuildStepProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:action-role` | | `additionalInputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:additional-inputs` | | `buildEnvironment` | software.amazon.awscdk.services.codebuild.BuildEnvironment | [[cdk.support/lookup-entry]] | `:build-environment` | | `cache` | software.amazon.awscdk.services.codebuild.Cache | [[cdk.support/lookup-entry]] | `:cache` | | `commands` | java.util.List | [[cdk.support/lookup-entry]] | `:commands` | | `env` | java.util.Map | [[cdk.support/lookup-entry]] | `:env` | | `envFromCfnOutputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:env-from-cfn-outputs` | | `fileSystemLocations` | java.util.List | [[cdk.support/lookup-entry]] | `:file-system-locations` | | `input` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:input` | | `installCommands` | java.util.List | [[cdk.support/lookup-entry]] | `:install-commands` | | `logging` | software.amazon.awscdk.services.codebuild.LoggingOptions | [[cdk.support/lookup-entry]] | `:logging` | | `partialBuildSpec` | software.amazon.awscdk.services.codebuild.BuildSpec | [[cdk.support/lookup-entry]] | `:partial-build-spec` | | `primaryOutputDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:primary-output-directory` | | `projectName` | java.lang.String | [[cdk.support/lookup-entry]] | `:project-name` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `rolePolicyStatements` | java.util.List | [[cdk.support/lookup-entry]] | `:role-policy-statements` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `subnetSelection` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:subnet-selection` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` |
(build-code-commit-source-options-builder builder id config)
The build-code-commit-source-options-builder function updates a CodeCommitSourceOptions$Builder instance using the provided configuration. The function takes the CodeCommitSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
codeBuildCloneOutput | java.lang.Boolean | cdk.support/lookup-entry | :code-build-clone-output |
eventRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :event-role |
trigger | software.amazon.awscdk.services.codepipeline.actions.CodeCommitTrigger | cdk.api.services.codepipeline.actions/code-commit-trigger | :trigger |
The build-code-commit-source-options-builder function updates a CodeCommitSourceOptions$Builder instance using the provided configuration. The function takes the CodeCommitSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `codeBuildCloneOutput` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:code-build-clone-output` | | `eventRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:event-role` | | `trigger` | software.amazon.awscdk.services.codepipeline.actions.CodeCommitTrigger | [[cdk.api.services.codepipeline.actions/code-commit-trigger]] | `:trigger` |
(build-code-pipeline-action-factory-result-builder builder id config)
The build-code-pipeline-action-factory-result-builder function updates a CodePipelineActionFactoryResult$Builder instance using the provided configuration. The function takes the CodePipelineActionFactoryResult$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
project | software.amazon.awscdk.services.codebuild.IProject | cdk.support/lookup-entry | :project |
runOrdersConsumed | java.lang.Number | cdk.support/lookup-entry | :run-orders-consumed |
The build-code-pipeline-action-factory-result-builder function updates a CodePipelineActionFactoryResult$Builder instance using the provided configuration. The function takes the CodePipelineActionFactoryResult$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `project` | software.amazon.awscdk.services.codebuild.IProject | [[cdk.support/lookup-entry]] | `:project` | | `runOrdersConsumed` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-orders-consumed` |
(build-code-pipeline-builder builder id config)
The build-code-pipeline-builder function updates a CodePipeline$Builder instance using the provided configuration. The function takes the CodePipeline$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
assetPublishingCodeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :asset-publishing-code-build-defaults |
cliVersion | java.lang.String | cdk.support/lookup-entry | :cli-version |
codeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :code-build-defaults |
codePipeline | software.amazon.awscdk.services.codepipeline.Pipeline | cdk.support/lookup-entry | :code-pipeline |
crossAccountKeys | java.lang.Boolean | cdk.support/lookup-entry | :cross-account-keys |
crossRegionReplicationBuckets | java.util.Map | cdk.support/lookup-entry | :cross-region-replication-buckets |
dockerCredentials | java.util.List | cdk.support/lookup-entry | :docker-credentials |
dockerEnabledForSelfMutation | java.lang.Boolean | cdk.support/lookup-entry | :docker-enabled-for-self-mutation |
dockerEnabledForSynth | java.lang.Boolean | cdk.support/lookup-entry | :docker-enabled-for-synth |
enableKeyRotation | java.lang.Boolean | cdk.support/lookup-entry | :enable-key-rotation |
pipelineName | java.lang.String | cdk.support/lookup-entry | :pipeline-name |
publishAssetsInParallel | java.lang.Boolean | cdk.support/lookup-entry | :publish-assets-in-parallel |
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 |
selfMutation | java.lang.Boolean | cdk.support/lookup-entry | :self-mutation |
selfMutationCodeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :self-mutation-code-build-defaults |
synth | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :synth |
synthCodeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :synth-code-build-defaults |
useChangeSets | java.lang.Boolean | cdk.support/lookup-entry | :use-change-sets |
The build-code-pipeline-builder function updates a CodePipeline$Builder instance using the provided configuration. The function takes the CodePipeline$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `assetPublishingCodeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:asset-publishing-code-build-defaults` | | `cliVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:cli-version` | | `codeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:code-build-defaults` | | `codePipeline` | software.amazon.awscdk.services.codepipeline.Pipeline | [[cdk.support/lookup-entry]] | `:code-pipeline` | | `crossAccountKeys` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cross-account-keys` | | `crossRegionReplicationBuckets` | java.util.Map | [[cdk.support/lookup-entry]] | `:cross-region-replication-buckets` | | `dockerCredentials` | java.util.List | [[cdk.support/lookup-entry]] | `:docker-credentials` | | `dockerEnabledForSelfMutation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:docker-enabled-for-self-mutation` | | `dockerEnabledForSynth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:docker-enabled-for-synth` | | `enableKeyRotation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-key-rotation` | | `pipelineName` | java.lang.String | [[cdk.support/lookup-entry]] | `:pipeline-name` | | `publishAssetsInParallel` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:publish-assets-in-parallel` | | `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` | | `selfMutation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:self-mutation` | | `selfMutationCodeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:self-mutation-code-build-defaults` | | `synth` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:synth` | | `synthCodeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:synth-code-build-defaults` | | `useChangeSets` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-change-sets` |
(build-code-pipeline-props-builder builder id config)
The build-code-pipeline-props-builder function updates a CodePipelineProps$Builder instance using the provided configuration. The function takes the CodePipelineProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
assetPublishingCodeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :asset-publishing-code-build-defaults |
cliVersion | java.lang.String | cdk.support/lookup-entry | :cli-version |
codeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :code-build-defaults |
codePipeline | software.amazon.awscdk.services.codepipeline.Pipeline | cdk.support/lookup-entry | :code-pipeline |
crossAccountKeys | java.lang.Boolean | cdk.support/lookup-entry | :cross-account-keys |
crossRegionReplicationBuckets | java.util.Map | cdk.support/lookup-entry | :cross-region-replication-buckets |
dockerCredentials | java.util.List | cdk.support/lookup-entry | :docker-credentials |
dockerEnabledForSelfMutation | java.lang.Boolean | cdk.support/lookup-entry | :docker-enabled-for-self-mutation |
dockerEnabledForSynth | java.lang.Boolean | cdk.support/lookup-entry | :docker-enabled-for-synth |
enableKeyRotation | java.lang.Boolean | cdk.support/lookup-entry | :enable-key-rotation |
pipelineName | java.lang.String | cdk.support/lookup-entry | :pipeline-name |
publishAssetsInParallel | java.lang.Boolean | cdk.support/lookup-entry | :publish-assets-in-parallel |
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 |
selfMutation | java.lang.Boolean | cdk.support/lookup-entry | :self-mutation |
selfMutationCodeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :self-mutation-code-build-defaults |
synth | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :synth |
synthCodeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :synth-code-build-defaults |
useChangeSets | java.lang.Boolean | cdk.support/lookup-entry | :use-change-sets |
The build-code-pipeline-props-builder function updates a CodePipelineProps$Builder instance using the provided configuration. The function takes the CodePipelineProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `assetPublishingCodeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:asset-publishing-code-build-defaults` | | `cliVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:cli-version` | | `codeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:code-build-defaults` | | `codePipeline` | software.amazon.awscdk.services.codepipeline.Pipeline | [[cdk.support/lookup-entry]] | `:code-pipeline` | | `crossAccountKeys` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:cross-account-keys` | | `crossRegionReplicationBuckets` | java.util.Map | [[cdk.support/lookup-entry]] | `:cross-region-replication-buckets` | | `dockerCredentials` | java.util.List | [[cdk.support/lookup-entry]] | `:docker-credentials` | | `dockerEnabledForSelfMutation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:docker-enabled-for-self-mutation` | | `dockerEnabledForSynth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:docker-enabled-for-synth` | | `enableKeyRotation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-key-rotation` | | `pipelineName` | java.lang.String | [[cdk.support/lookup-entry]] | `:pipeline-name` | | `publishAssetsInParallel` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:publish-assets-in-parallel` | | `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` | | `selfMutation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:self-mutation` | | `selfMutationCodeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:self-mutation-code-build-defaults` | | `synth` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:synth` | | `synthCodeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:synth-code-build-defaults` | | `useChangeSets` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-change-sets` |
(build-confirm-permissions-broadening-builder builder id config)
The build-confirm-permissions-broadening-builder function updates a ConfirmPermissionsBroadening$Builder instance using the provided configuration. The function takes the ConfirmPermissionsBroadening$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
notificationTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :notification-topic |
stage | software.amazon.awscdk.Stage | cdk.support/lookup-entry | :stage |
The build-confirm-permissions-broadening-builder function updates a ConfirmPermissionsBroadening$Builder instance using the provided configuration. The function takes the ConfirmPermissionsBroadening$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `notificationTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:notification-topic` | | `stage` | software.amazon.awscdk.Stage | [[cdk.support/lookup-entry]] | `:stage` |
(build-connection-source-options-builder builder id config)
The build-connection-source-options-builder function updates a ConnectionSourceOptions$Builder instance using the provided configuration. The function takes the ConnectionSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
codeBuildCloneOutput | java.lang.Boolean | cdk.support/lookup-entry | :code-build-clone-output |
connectionArn | java.lang.String | cdk.support/lookup-entry | :connection-arn |
triggerOnPush | java.lang.Boolean | cdk.support/lookup-entry | :trigger-on-push |
The build-connection-source-options-builder function updates a ConnectionSourceOptions$Builder instance using the provided configuration. The function takes the ConnectionSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `codeBuildCloneOutput` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:code-build-clone-output` | | `connectionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:connection-arn` | | `triggerOnPush` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:trigger-on-push` |
(build-ecr-docker-credential-options-builder builder id config)
The build-ecr-docker-credential-options-builder function updates a EcrDockerCredentialOptions$Builder instance using the provided configuration. The function takes the EcrDockerCredentialOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumeRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :assume-role |
usages | java.util.List | cdk.support/lookup-entry | :usages |
The build-ecr-docker-credential-options-builder function updates a EcrDockerCredentialOptions$Builder instance using the provided configuration. The function takes the EcrDockerCredentialOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumeRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:assume-role` | | `usages` | java.util.List | [[cdk.support/lookup-entry]] | `:usages` |
(build-ecr-source-options-builder builder id config)
The build-ecr-source-options-builder function updates a ECRSourceOptions$Builder instance using the provided configuration. The function takes the ECRSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
imageTag | java.lang.String | cdk.support/lookup-entry | :image-tag |
The build-ecr-source-options-builder function updates a ECRSourceOptions$Builder instance using the provided configuration. The function takes the ECRSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `imageTag` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-tag` |
(build-external-docker-credential-options-builder builder id config)
The build-external-docker-credential-options-builder function updates a ExternalDockerCredentialOptions$Builder instance using the provided configuration. The function takes the ExternalDockerCredentialOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumeRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :assume-role |
secretPasswordField | java.lang.String | cdk.support/lookup-entry | :secret-password-field |
secretUsernameField | java.lang.String | cdk.support/lookup-entry | :secret-username-field |
usages | java.util.List | cdk.support/lookup-entry | :usages |
The build-external-docker-credential-options-builder function updates a ExternalDockerCredentialOptions$Builder instance using the provided configuration. The function takes the ExternalDockerCredentialOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumeRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:assume-role` | | `secretPasswordField` | java.lang.String | [[cdk.support/lookup-entry]] | `:secret-password-field` | | `secretUsernameField` | java.lang.String | [[cdk.support/lookup-entry]] | `:secret-username-field` | | `usages` | java.util.List | [[cdk.support/lookup-entry]] | `:usages` |
(build-file-set-location-builder builder id config)
The build-file-set-location-builder function updates a FileSetLocation$Builder instance using the provided configuration. The function takes the FileSetLocation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
directory | java.lang.String | cdk.support/lookup-entry | :directory |
fileSet | software.amazon.awscdk.pipelines.FileSet | cdk.support/lookup-entry | :file-set |
The build-file-set-location-builder function updates a FileSetLocation$Builder instance using the provided configuration. The function takes the FileSetLocation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `directory` | java.lang.String | [[cdk.support/lookup-entry]] | `:directory` | | `fileSet` | software.amazon.awscdk.pipelines.FileSet | [[cdk.support/lookup-entry]] | `:file-set` |
(build-git-hub-source-options-builder builder id config)
The build-git-hub-source-options-builder function updates a GitHubSourceOptions$Builder instance using the provided configuration. The function takes the GitHubSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
authentication | software.amazon.awscdk.SecretValue | cdk.support/lookup-entry | :authentication |
trigger | software.amazon.awscdk.services.codepipeline.actions.GitHubTrigger | cdk.api.services.codepipeline.actions/git-hub-trigger | :trigger |
The build-git-hub-source-options-builder function updates a GitHubSourceOptions$Builder instance using the provided configuration. The function takes the GitHubSourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `authentication` | software.amazon.awscdk.SecretValue | [[cdk.support/lookup-entry]] | `:authentication` | | `trigger` | software.amazon.awscdk.services.codepipeline.actions.GitHubTrigger | [[cdk.api.services.codepipeline.actions/git-hub-trigger]] | `:trigger` |
(build-manual-approval-step-builder builder id config)
The build-manual-approval-step-builder function updates a ManualApprovalStep$Builder instance using the provided configuration. The function takes the ManualApprovalStep$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
comment | java.lang.String | cdk.support/lookup-entry | :comment |
The build-manual-approval-step-builder function updates a ManualApprovalStep$Builder instance using the provided configuration. The function takes the ManualApprovalStep$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `comment` | java.lang.String | [[cdk.support/lookup-entry]] | `:comment` |
(build-manual-approval-step-props-builder builder id config)
The build-manual-approval-step-props-builder function updates a ManualApprovalStepProps$Builder instance using the provided configuration. The function takes the ManualApprovalStepProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
comment | java.lang.String | cdk.support/lookup-entry | :comment |
The build-manual-approval-step-props-builder function updates a ManualApprovalStepProps$Builder instance using the provided configuration. The function takes the ManualApprovalStepProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `comment` | java.lang.String | [[cdk.support/lookup-entry]] | `:comment` |
(build-permissions-broadening-check-props-builder builder id config)
The build-permissions-broadening-check-props-builder function updates a PermissionsBroadeningCheckProps$Builder instance using the provided configuration. The function takes the PermissionsBroadeningCheckProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
notificationTopic | software.amazon.awscdk.services.sns.ITopic | cdk.support/lookup-entry | :notification-topic |
stage | software.amazon.awscdk.Stage | cdk.support/lookup-entry | :stage |
The build-permissions-broadening-check-props-builder function updates a PermissionsBroadeningCheckProps$Builder instance using the provided configuration. The function takes the PermissionsBroadeningCheckProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `notificationTopic` | software.amazon.awscdk.services.sns.ITopic | [[cdk.support/lookup-entry]] | `:notification-topic` | | `stage` | software.amazon.awscdk.Stage | [[cdk.support/lookup-entry]] | `:stage` |
(build-pipeline-base-props-builder builder id config)
The build-pipeline-base-props-builder function updates a PipelineBaseProps$Builder instance using the provided configuration. The function takes the PipelineBaseProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
synth | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :synth |
The build-pipeline-base-props-builder function updates a PipelineBaseProps$Builder instance using the provided configuration. The function takes the PipelineBaseProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `synth` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:synth` |
(build-produce-action-options-builder builder id config)
The build-produce-action-options-builder function updates a ProduceActionOptions$Builder instance using the provided configuration. The function takes the ProduceActionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
artifacts | software.amazon.awscdk.pipelines.ArtifactMap | cdk.support/lookup-entry | :artifacts |
beforeSelfMutation | java.lang.Boolean | cdk.support/lookup-entry | :before-self-mutation |
codeBuildDefaults | software.amazon.awscdk.pipelines.CodeBuildOptions | cdk.support/lookup-entry | :code-build-defaults |
fallbackArtifact | software.amazon.awscdk.services.codepipeline.Artifact | cdk.support/lookup-entry | :fallback-artifact |
pipeline | software.amazon.awscdk.pipelines.CodePipeline | cdk.support/lookup-entry | :pipeline |
runOrder | java.lang.Number | cdk.support/lookup-entry | :run-order |
scope | software.constructs.Construct | cdk.support/lookup-entry | :scope |
stackOutputsMap | software.amazon.awscdk.pipelines.StackOutputsMap | cdk.support/lookup-entry | :stack-outputs-map |
variablesNamespace | java.lang.String | cdk.support/lookup-entry | :variables-namespace |
The build-produce-action-options-builder function updates a ProduceActionOptions$Builder instance using the provided configuration. The function takes the ProduceActionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `artifacts` | software.amazon.awscdk.pipelines.ArtifactMap | [[cdk.support/lookup-entry]] | `:artifacts` | | `beforeSelfMutation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:before-self-mutation` | | `codeBuildDefaults` | software.amazon.awscdk.pipelines.CodeBuildOptions | [[cdk.support/lookup-entry]] | `:code-build-defaults` | | `fallbackArtifact` | software.amazon.awscdk.services.codepipeline.Artifact | [[cdk.support/lookup-entry]] | `:fallback-artifact` | | `pipeline` | software.amazon.awscdk.pipelines.CodePipeline | [[cdk.support/lookup-entry]] | `:pipeline` | | `runOrder` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-order` | | `scope` | software.constructs.Construct | [[cdk.support/lookup-entry]] | `:scope` | | `stackOutputsMap` | software.amazon.awscdk.pipelines.StackOutputsMap | [[cdk.support/lookup-entry]] | `:stack-outputs-map` | | `variablesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:variables-namespace` |
(build-s3-source-options-builder builder id config)
The build-s3-source-options-builder function updates a S3SourceOptions$Builder instance using the provided configuration. The function takes the S3SourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated 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 |
trigger | software.amazon.awscdk.services.codepipeline.actions.S3Trigger | cdk.api.services.codepipeline.actions/s3-trigger | :trigger |
The build-s3-source-options-builder function updates a S3SourceOptions$Builder instance using the provided configuration. The function takes the S3SourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated 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` | | `trigger` | software.amazon.awscdk.services.codepipeline.actions.S3Trigger | [[cdk.api.services.codepipeline.actions/s3-trigger]] | `:trigger` |
(build-shell-step-builder builder id config)
The build-shell-step-builder function updates a ShellStep$Builder instance using the provided configuration. The function takes the ShellStep$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalInputs | java.util.Map | cdk.support/lookup-entry | :additional-inputs |
commands | java.util.List | cdk.support/lookup-entry | :commands |
env | java.util.Map | cdk.support/lookup-entry | :env |
envFromCfnOutputs | java.util.Map | cdk.support/lookup-entry | :env-from-cfn-outputs |
input | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :input |
installCommands | java.util.List | cdk.support/lookup-entry | :install-commands |
primaryOutputDirectory | java.lang.String | cdk.support/lookup-entry | :primary-output-directory |
The build-shell-step-builder function updates a ShellStep$Builder instance using the provided configuration. The function takes the ShellStep$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalInputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:additional-inputs` | | `commands` | java.util.List | [[cdk.support/lookup-entry]] | `:commands` | | `env` | java.util.Map | [[cdk.support/lookup-entry]] | `:env` | | `envFromCfnOutputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:env-from-cfn-outputs` | | `input` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:input` | | `installCommands` | java.util.List | [[cdk.support/lookup-entry]] | `:install-commands` | | `primaryOutputDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:primary-output-directory` |
(build-shell-step-props-builder builder id config)
The build-shell-step-props-builder function updates a ShellStepProps$Builder instance using the provided configuration. The function takes the ShellStepProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalInputs | java.util.Map | cdk.support/lookup-entry | :additional-inputs |
commands | java.util.List | cdk.support/lookup-entry | :commands |
env | java.util.Map | cdk.support/lookup-entry | :env |
envFromCfnOutputs | java.util.Map | cdk.support/lookup-entry | :env-from-cfn-outputs |
input | software.amazon.awscdk.pipelines.IFileSetProducer | cdk.support/lookup-entry | :input |
installCommands | java.util.List | cdk.support/lookup-entry | :install-commands |
primaryOutputDirectory | java.lang.String | cdk.support/lookup-entry | :primary-output-directory |
The build-shell-step-props-builder function updates a ShellStepProps$Builder instance using the provided configuration. The function takes the ShellStepProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalInputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:additional-inputs` | | `commands` | java.util.List | [[cdk.support/lookup-entry]] | `:commands` | | `env` | java.util.Map | [[cdk.support/lookup-entry]] | `:env` | | `envFromCfnOutputs` | java.util.Map | [[cdk.support/lookup-entry]] | `:env-from-cfn-outputs` | | `input` | software.amazon.awscdk.pipelines.IFileSetProducer | [[cdk.support/lookup-entry]] | `:input` | | `installCommands` | java.util.List | [[cdk.support/lookup-entry]] | `:install-commands` | | `primaryOutputDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:primary-output-directory` |
(build-stack-asset-builder builder id config)
The build-stack-asset-builder function updates a StackAsset$Builder instance using the provided configuration. The function takes the StackAsset$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assetId | java.lang.String | cdk.support/lookup-entry | :asset-id |
assetManifestPath | java.lang.String | cdk.support/lookup-entry | :asset-manifest-path |
assetPublishingRoleArn | java.lang.String | cdk.support/lookup-entry | :asset-publishing-role-arn |
assetSelector | java.lang.String | cdk.support/lookup-entry | :asset-selector |
assetType | software.amazon.awscdk.pipelines.AssetType | cdk.api.pipelines/asset-type | :asset-type |
isTemplate | java.lang.Boolean | cdk.support/lookup-entry | :is-template |
The build-stack-asset-builder function updates a StackAsset$Builder instance using the provided configuration. The function takes the StackAsset$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assetId` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-id` | | `assetManifestPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-manifest-path` | | `assetPublishingRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-publishing-role-arn` | | `assetSelector` | java.lang.String | [[cdk.support/lookup-entry]] | `:asset-selector` | | `assetType` | software.amazon.awscdk.pipelines.AssetType | [[cdk.api.pipelines/asset-type]] | `:asset-type` | | `isTemplate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:is-template` |
(build-stack-deployment-props-builder builder id config)
The build-stack-deployment-props-builder function updates a StackDeploymentProps$Builder instance using the provided configuration. The function takes the StackDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
absoluteTemplatePath | java.lang.String | cdk.support/lookup-entry | :absolute-template-path |
account | java.lang.String | cdk.support/lookup-entry | :account |
assets | java.util.List | cdk.support/lookup-entry | :assets |
assumeRoleArn | java.lang.String | cdk.support/lookup-entry | :assume-role-arn |
constructPath | java.lang.String | cdk.support/lookup-entry | :construct-path |
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
region | java.lang.String | cdk.support/lookup-entry | :region |
stackArtifactId | java.lang.String | cdk.support/lookup-entry | :stack-artifact-id |
stackName | java.lang.String | cdk.support/lookup-entry | :stack-name |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
templateS3Uri | java.lang.String | cdk.support/lookup-entry | :template-s3-uri |
The build-stack-deployment-props-builder function updates a StackDeploymentProps$Builder instance using the provided configuration. The function takes the StackDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `absoluteTemplatePath` | java.lang.String | [[cdk.support/lookup-entry]] | `:absolute-template-path` | | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `assets` | java.util.List | [[cdk.support/lookup-entry]] | `:assets` | | `assumeRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:assume-role-arn` | | `constructPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:construct-path` | | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `stackArtifactId` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-artifact-id` | | `stackName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stack-name` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` | | `templateS3Uri` | java.lang.String | [[cdk.support/lookup-entry]] | `:template-s3-uri` |
(build-stack-steps-builder builder id config)
The build-stack-steps-builder function updates a StackSteps$Builder instance using the provided configuration. The function takes the StackSteps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
changeSet | java.util.List | cdk.support/lookup-entry | :change-set |
post | java.util.List | cdk.support/lookup-entry | :post |
pre | java.util.List | cdk.support/lookup-entry | :pre |
stack | software.amazon.awscdk.Stack | cdk.support/lookup-entry | :stack |
The build-stack-steps-builder function updates a StackSteps$Builder instance using the provided configuration. The function takes the StackSteps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `changeSet` | java.util.List | [[cdk.support/lookup-entry]] | `:change-set` | | `post` | java.util.List | [[cdk.support/lookup-entry]] | `:post` | | `pre` | java.util.List | [[cdk.support/lookup-entry]] | `:pre` | | `stack` | software.amazon.awscdk.Stack | [[cdk.support/lookup-entry]] | `:stack` |
(build-stage-deployment-props-builder builder id config)
The build-stage-deployment-props-builder function updates a StageDeploymentProps$Builder instance using the provided configuration. The function takes the StageDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
post | java.util.List | cdk.support/lookup-entry | :post |
pre | java.util.List | cdk.support/lookup-entry | :pre |
stackSteps | java.util.List | cdk.support/lookup-entry | :stack-steps |
stageName | java.lang.String | cdk.support/lookup-entry | :stage-name |
The build-stage-deployment-props-builder function updates a StageDeploymentProps$Builder instance using the provided configuration. The function takes the StageDeploymentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `post` | java.util.List | [[cdk.support/lookup-entry]] | `:post` | | `pre` | java.util.List | [[cdk.support/lookup-entry]] | `:pre` | | `stackSteps` | java.util.List | [[cdk.support/lookup-entry]] | `:stack-steps` | | `stageName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stage-name` |
(build-wave-builder builder id config)
The build-wave-builder function updates a Wave$Builder instance using the provided configuration. The function takes the Wave$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
post | java.util.List | cdk.support/lookup-entry | :post |
pre | java.util.List | cdk.support/lookup-entry | :pre |
The build-wave-builder function updates a Wave$Builder instance using the provided configuration. The function takes the Wave$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `post` | java.util.List | [[cdk.support/lookup-entry]] | `:post` | | `pre` | java.util.List | [[cdk.support/lookup-entry]] | `:pre` |
(build-wave-options-builder builder id config)
The build-wave-options-builder function updates a WaveOptions$Builder instance using the provided configuration. The function takes the WaveOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
post | java.util.List | cdk.support/lookup-entry | :post |
pre | java.util.List | cdk.support/lookup-entry | :pre |
The build-wave-options-builder function updates a WaveOptions$Builder instance using the provided configuration. The function takes the WaveOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `post` | java.util.List | [[cdk.support/lookup-entry]] | `:post` | | `pre` | java.util.List | [[cdk.support/lookup-entry]] | `:pre` |
(build-wave-props-builder builder id config)
The build-wave-props-builder function updates a WaveProps$Builder instance using the provided configuration. The function takes the WaveProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
post | java.util.List | cdk.support/lookup-entry | :post |
pre | java.util.List | cdk.support/lookup-entry | :pre |
The build-wave-props-builder function updates a WaveProps$Builder instance using the provided configuration. The function takes the WaveProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `post` | java.util.List | [[cdk.support/lookup-entry]] | `:post` | | `pre` | java.util.List | [[cdk.support/lookup-entry]] | `:pre` |
(code-build-options-builder id config)
Creates a CodeBuildOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CodeBuildOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(code-build-step-builder id config)
Creates a CodeBuildStep$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `CodeBuildStep$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(code-build-step-props-builder id config)
Creates a CodeBuildStepProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CodeBuildStepProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(code-commit-source-options-builder id config)
Creates a CodeCommitSourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CodeCommitSourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(code-pipeline-action-factory-result-builder id config)
Creates a CodePipelineActionFactoryResult$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CodePipelineActionFactoryResult$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(code-pipeline-builder scope id config)
Creates a CodePipeline$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 `CodePipeline$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(code-pipeline-props-builder id config)
Creates a CodePipelineProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CodePipelineProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(confirm-permissions-broadening-builder id config)
Creates a ConfirmPermissionsBroadening$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `ConfirmPermissionsBroadening$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(connection-source-options-builder id config)
Creates a ConnectionSourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ConnectionSourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(docker-credential-usage config id item-key)
The docker-credential-usage
function data interprets values in the provided config data into a
DockerCredentialUsage
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:
DockerCredentialUsage
- the value is returned.:self-update
- DockerCredentialUsage/SELF_UPDATE
is returned:synth
- DockerCredentialUsage/SYNTH
is returned:asset-publishing
- DockerCredentialUsage/ASSET_PUBLISHING
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `docker-credential-usage` function data interprets values in the provided config data into a `DockerCredentialUsage` 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 `DockerCredentialUsage` - the value is returned. * is `:self-update` - `DockerCredentialUsage/SELF_UPDATE` is returned * is `:synth` - `DockerCredentialUsage/SYNTH` is returned * is `:asset-publishing` - `DockerCredentialUsage/ASSET_PUBLISHING` is returned If a value is not found or matches the above criteria, nil is returned.
(ecr-docker-credential-options-builder id config)
Creates a EcrDockerCredentialOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcrDockerCredentialOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecr-source-options-builder id config)
Creates a ECRSourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ECRSourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(external-docker-credential-options-builder id config)
Creates a ExternalDockerCredentialOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ExternalDockerCredentialOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(file-set-location-builder id config)
Creates a FileSetLocation$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `FileSetLocation$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-hub-source-options-builder id config)
Creates a GitHubSourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GitHubSourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(manual-approval-step-builder id config)
Creates a ManualApprovalStep$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `ManualApprovalStep$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(manual-approval-step-props-builder id config)
Creates a ManualApprovalStepProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ManualApprovalStepProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(permissions-broadening-check-props-builder id config)
Creates a PermissionsBroadeningCheckProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PermissionsBroadeningCheckProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-base-props-builder id config)
Creates a PipelineBaseProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PipelineBaseProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(produce-action-options-builder id config)
Creates a ProduceActionOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ProduceActionOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(s3-source-options-builder id config)
Creates a S3SourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `S3SourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(shell-step-builder id config)
Creates a ShellStep$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `ShellStep$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(shell-step-props-builder id config)
Creates a ShellStepProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ShellStepProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(stack-asset-builder id config)
Creates a StackAsset$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `StackAsset$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(stack-deployment-props-builder id config)
Creates a StackDeploymentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `StackDeploymentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(stack-steps-builder id config)
Creates a StackSteps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `StackSteps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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-deployment-props-builder id config)
Creates a StageDeploymentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `StageDeploymentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(wave-builder id config)
Creates a Wave$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `Wave$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(wave-options-builder id config)
Creates a WaveOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `WaveOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(wave-props-builder id config)
Creates a WaveProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `WaveProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following 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