Liking cljdoc? Tell your friends :D
Clojure only.

cdk.api.pipelines

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. 
raw docstring

add-stage-opts-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

asset-typeclj

(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:

  • 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.

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.
sourceraw docstring

build-add-stage-opts-builderclj

(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:

FieldDataTypeLookup FunctionData Key
postjava.util.Listcdk.support/lookup-entry:post
prejava.util.Listcdk.support/lookup-entry:pre
stackStepsjava.util.Listcdk.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` |
sourceraw docstring

build-code-build-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
buildEnvironmentsoftware.amazon.awscdk.services.codebuild.BuildEnvironmentcdk.support/lookup-entry:build-environment
cachesoftware.amazon.awscdk.services.codebuild.Cachecdk.support/lookup-entry:cache
fileSystemLocationsjava.util.Listcdk.support/lookup-entry:file-system-locations
loggingsoftware.amazon.awscdk.services.codebuild.LoggingOptionscdk.support/lookup-entry:logging
partialBuildSpecsoftware.amazon.awscdk.services.codebuild.BuildSpeccdk.support/lookup-entry:partial-build-spec
rolePolicyjava.util.Listcdk.support/lookup-entry:role-policy
securityGroupsjava.util.Listcdk.support/lookup-entry:security-groups
subnetSelectionsoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.support/lookup-entry:subnet-selection
timeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.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` |
sourceraw docstring

build-code-build-step-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:action-role
additionalInputsjava.util.Mapcdk.support/lookup-entry:additional-inputs
buildEnvironmentsoftware.amazon.awscdk.services.codebuild.BuildEnvironmentcdk.support/lookup-entry:build-environment
cachesoftware.amazon.awscdk.services.codebuild.Cachecdk.support/lookup-entry:cache
commandsjava.util.Listcdk.support/lookup-entry:commands
envjava.util.Mapcdk.support/lookup-entry:env
envFromCfnOutputsjava.util.Mapcdk.support/lookup-entry:env-from-cfn-outputs
fileSystemLocationsjava.util.Listcdk.support/lookup-entry:file-system-locations
inputsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.support/lookup-entry:input
installCommandsjava.util.Listcdk.support/lookup-entry:install-commands
loggingsoftware.amazon.awscdk.services.codebuild.LoggingOptionscdk.support/lookup-entry:logging
partialBuildSpecsoftware.amazon.awscdk.services.codebuild.BuildSpeccdk.support/lookup-entry:partial-build-spec
primaryOutputDirectoryjava.lang.Stringcdk.support/lookup-entry:primary-output-directory
projectNamejava.lang.Stringcdk.support/lookup-entry:project-name
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
rolePolicyStatementsjava.util.Listcdk.support/lookup-entry:role-policy-statements
securityGroupsjava.util.Listcdk.support/lookup-entry:security-groups
subnetSelectionsoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.support/lookup-entry:subnet-selection
timeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.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` |
sourceraw docstring

build-code-build-step-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:action-role
additionalInputsjava.util.Mapcdk.support/lookup-entry:additional-inputs
buildEnvironmentsoftware.amazon.awscdk.services.codebuild.BuildEnvironmentcdk.support/lookup-entry:build-environment
cachesoftware.amazon.awscdk.services.codebuild.Cachecdk.support/lookup-entry:cache
commandsjava.util.Listcdk.support/lookup-entry:commands
envjava.util.Mapcdk.support/lookup-entry:env
envFromCfnOutputsjava.util.Mapcdk.support/lookup-entry:env-from-cfn-outputs
fileSystemLocationsjava.util.Listcdk.support/lookup-entry:file-system-locations
inputsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.support/lookup-entry:input
installCommandsjava.util.Listcdk.support/lookup-entry:install-commands
loggingsoftware.amazon.awscdk.services.codebuild.LoggingOptionscdk.support/lookup-entry:logging
partialBuildSpecsoftware.amazon.awscdk.services.codebuild.BuildSpeccdk.support/lookup-entry:partial-build-spec
primaryOutputDirectoryjava.lang.Stringcdk.support/lookup-entry:primary-output-directory
projectNamejava.lang.Stringcdk.support/lookup-entry:project-name
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
rolePolicyStatementsjava.util.Listcdk.support/lookup-entry:role-policy-statements
securityGroupsjava.util.Listcdk.support/lookup-entry:security-groups
subnetSelectionsoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.support/lookup-entry:subnet-selection
timeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.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` |
sourceraw docstring

build-code-commit-source-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionNamejava.lang.Stringcdk.support/lookup-entry:action-name
codeBuildCloneOutputjava.lang.Booleancdk.support/lookup-entry:code-build-clone-output
eventRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:event-role
triggersoftware.amazon.awscdk.services.codepipeline.actions.CodeCommitTriggercdk.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` |
sourceraw docstring

build-code-pipeline-action-factory-result-builderclj

(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:

FieldDataTypeLookup FunctionData Key
projectsoftware.amazon.awscdk.services.codebuild.IProjectcdk.support/lookup-entry:project
runOrdersConsumedjava.lang.Numbercdk.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` |
sourceraw docstring

build-code-pipeline-builderclj

(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:

FieldDataTypeLookup FunctionData Key
artifactBucketsoftware.amazon.awscdk.services.s3.IBucketcdk.support/lookup-entry:artifact-bucket
assetPublishingCodeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:asset-publishing-code-build-defaults
cliVersionjava.lang.Stringcdk.support/lookup-entry:cli-version
codeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:code-build-defaults
codePipelinesoftware.amazon.awscdk.services.codepipeline.Pipelinecdk.support/lookup-entry:code-pipeline
crossAccountKeysjava.lang.Booleancdk.support/lookup-entry:cross-account-keys
crossRegionReplicationBucketsjava.util.Mapcdk.support/lookup-entry:cross-region-replication-buckets
dockerCredentialsjava.util.Listcdk.support/lookup-entry:docker-credentials
dockerEnabledForSelfMutationjava.lang.Booleancdk.support/lookup-entry:docker-enabled-for-self-mutation
dockerEnabledForSynthjava.lang.Booleancdk.support/lookup-entry:docker-enabled-for-synth
enableKeyRotationjava.lang.Booleancdk.support/lookup-entry:enable-key-rotation
pipelineNamejava.lang.Stringcdk.support/lookup-entry:pipeline-name
publishAssetsInParalleljava.lang.Booleancdk.support/lookup-entry:publish-assets-in-parallel
reuseCrossRegionSupportStacksjava.lang.Booleancdk.support/lookup-entry:reuse-cross-region-support-stacks
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
selfMutationjava.lang.Booleancdk.support/lookup-entry:self-mutation
selfMutationCodeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:self-mutation-code-build-defaults
synthsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.support/lookup-entry:synth
synthCodeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:synth-code-build-defaults
useChangeSetsjava.lang.Booleancdk.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` |
sourceraw docstring

build-code-pipeline-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
artifactBucketsoftware.amazon.awscdk.services.s3.IBucketcdk.support/lookup-entry:artifact-bucket
assetPublishingCodeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:asset-publishing-code-build-defaults
cliVersionjava.lang.Stringcdk.support/lookup-entry:cli-version
codeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:code-build-defaults
codePipelinesoftware.amazon.awscdk.services.codepipeline.Pipelinecdk.support/lookup-entry:code-pipeline
crossAccountKeysjava.lang.Booleancdk.support/lookup-entry:cross-account-keys
crossRegionReplicationBucketsjava.util.Mapcdk.support/lookup-entry:cross-region-replication-buckets
dockerCredentialsjava.util.Listcdk.support/lookup-entry:docker-credentials
dockerEnabledForSelfMutationjava.lang.Booleancdk.support/lookup-entry:docker-enabled-for-self-mutation
dockerEnabledForSynthjava.lang.Booleancdk.support/lookup-entry:docker-enabled-for-synth
enableKeyRotationjava.lang.Booleancdk.support/lookup-entry:enable-key-rotation
pipelineNamejava.lang.Stringcdk.support/lookup-entry:pipeline-name
publishAssetsInParalleljava.lang.Booleancdk.support/lookup-entry:publish-assets-in-parallel
reuseCrossRegionSupportStacksjava.lang.Booleancdk.support/lookup-entry:reuse-cross-region-support-stacks
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
selfMutationjava.lang.Booleancdk.support/lookup-entry:self-mutation
selfMutationCodeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:self-mutation-code-build-defaults
synthsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.support/lookup-entry:synth
synthCodeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:synth-code-build-defaults
useChangeSetsjava.lang.Booleancdk.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` |
sourceraw docstring

build-confirm-permissions-broadening-builderclj

(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:

FieldDataTypeLookup FunctionData Key
notificationTopicsoftware.amazon.awscdk.services.sns.ITopiccdk.support/lookup-entry:notification-topic
stagesoftware.amazon.awscdk.Stagecdk.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` |
sourceraw docstring

build-connection-source-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionNamejava.lang.Stringcdk.support/lookup-entry:action-name
codeBuildCloneOutputjava.lang.Booleancdk.support/lookup-entry:code-build-clone-output
connectionArnjava.lang.Stringcdk.support/lookup-entry:connection-arn
triggerOnPushjava.lang.Booleancdk.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` |
sourceraw docstring

build-ecr-docker-credential-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
assumeRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:assume-role
usagesjava.util.Listcdk.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` |
sourceraw docstring

build-ecr-source-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionNamejava.lang.Stringcdk.support/lookup-entry:action-name
imageTagjava.lang.Stringcdk.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` |
sourceraw docstring

build-external-docker-credential-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
assumeRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:assume-role
secretPasswordFieldjava.lang.Stringcdk.support/lookup-entry:secret-password-field
secretUsernameFieldjava.lang.Stringcdk.support/lookup-entry:secret-username-field
usagesjava.util.Listcdk.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` |
sourceraw docstring

build-file-set-location-builderclj

(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:

FieldDataTypeLookup FunctionData Key
directoryjava.lang.Stringcdk.support/lookup-entry:directory
fileSetsoftware.amazon.awscdk.pipelines.FileSetcdk.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` |
sourceraw docstring

build-git-hub-source-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionNamejava.lang.Stringcdk.support/lookup-entry:action-name
authenticationsoftware.amazon.awscdk.SecretValuecdk.support/lookup-entry:authentication
triggersoftware.amazon.awscdk.services.codepipeline.actions.GitHubTriggercdk.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` |
sourceraw docstring

build-manual-approval-step-builderclj

(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:

FieldDataTypeLookup FunctionData Key
commentjava.lang.Stringcdk.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` |
sourceraw docstring

build-manual-approval-step-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
commentjava.lang.Stringcdk.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` |
sourceraw docstring

build-permissions-broadening-check-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
notificationTopicsoftware.amazon.awscdk.services.sns.ITopiccdk.support/lookup-entry:notification-topic
stagesoftware.amazon.awscdk.Stagecdk.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` |
sourceraw docstring

build-pipeline-base-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
synthsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.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` |
sourceraw docstring

build-produce-action-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionNamejava.lang.Stringcdk.support/lookup-entry:action-name
artifactssoftware.amazon.awscdk.pipelines.ArtifactMapcdk.support/lookup-entry:artifacts
beforeSelfMutationjava.lang.Booleancdk.support/lookup-entry:before-self-mutation
codeBuildDefaultssoftware.amazon.awscdk.pipelines.CodeBuildOptionscdk.support/lookup-entry:code-build-defaults
fallbackArtifactsoftware.amazon.awscdk.services.codepipeline.Artifactcdk.support/lookup-entry:fallback-artifact
pipelinesoftware.amazon.awscdk.pipelines.CodePipelinecdk.support/lookup-entry:pipeline
runOrderjava.lang.Numbercdk.support/lookup-entry:run-order
scopesoftware.constructs.Constructcdk.support/lookup-entry:scope
stackOutputsMapsoftware.amazon.awscdk.pipelines.StackOutputsMapcdk.support/lookup-entry:stack-outputs-map
variablesNamespacejava.lang.Stringcdk.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` |
sourceraw docstring

build-s3-source-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionNamejava.lang.Stringcdk.support/lookup-entry:action-name
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
triggersoftware.amazon.awscdk.services.codepipeline.actions.S3Triggercdk.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` |
sourceraw docstring

build-shell-step-builderclj

(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:

FieldDataTypeLookup FunctionData Key
additionalInputsjava.util.Mapcdk.support/lookup-entry:additional-inputs
commandsjava.util.Listcdk.support/lookup-entry:commands
envjava.util.Mapcdk.support/lookup-entry:env
envFromCfnOutputsjava.util.Mapcdk.support/lookup-entry:env-from-cfn-outputs
inputsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.support/lookup-entry:input
installCommandsjava.util.Listcdk.support/lookup-entry:install-commands
primaryOutputDirectoryjava.lang.Stringcdk.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` |
sourceraw docstring

build-shell-step-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
additionalInputsjava.util.Mapcdk.support/lookup-entry:additional-inputs
commandsjava.util.Listcdk.support/lookup-entry:commands
envjava.util.Mapcdk.support/lookup-entry:env
envFromCfnOutputsjava.util.Mapcdk.support/lookup-entry:env-from-cfn-outputs
inputsoftware.amazon.awscdk.pipelines.IFileSetProducercdk.support/lookup-entry:input
installCommandsjava.util.Listcdk.support/lookup-entry:install-commands
primaryOutputDirectoryjava.lang.Stringcdk.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` |
sourceraw docstring

build-stack-asset-builderclj

(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:

FieldDataTypeLookup FunctionData Key
assetIdjava.lang.Stringcdk.support/lookup-entry:asset-id
assetManifestPathjava.lang.Stringcdk.support/lookup-entry:asset-manifest-path
assetPublishingRoleArnjava.lang.Stringcdk.support/lookup-entry:asset-publishing-role-arn
assetSelectorjava.lang.Stringcdk.support/lookup-entry:asset-selector
assetTypesoftware.amazon.awscdk.pipelines.AssetTypecdk.api.pipelines/asset-type:asset-type
isTemplatejava.lang.Booleancdk.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` |
sourceraw docstring

build-stack-deployment-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
absoluteTemplatePathjava.lang.Stringcdk.support/lookup-entry:absolute-template-path
accountjava.lang.Stringcdk.support/lookup-entry:account
assetsjava.util.Listcdk.support/lookup-entry:assets
assumeRoleArnjava.lang.Stringcdk.support/lookup-entry:assume-role-arn
constructPathjava.lang.Stringcdk.support/lookup-entry:construct-path
executionRoleArnjava.lang.Stringcdk.support/lookup-entry:execution-role-arn
regionjava.lang.Stringcdk.support/lookup-entry:region
stackArtifactIdjava.lang.Stringcdk.support/lookup-entry:stack-artifact-id
stackNamejava.lang.Stringcdk.support/lookup-entry:stack-name
tagsjava.util.Mapcdk.support/lookup-entry:tags
templateS3Urijava.lang.Stringcdk.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` |
sourceraw docstring

build-stack-steps-builderclj

(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:

FieldDataTypeLookup FunctionData Key
changeSetjava.util.Listcdk.support/lookup-entry:change-set
postjava.util.Listcdk.support/lookup-entry:post
prejava.util.Listcdk.support/lookup-entry:pre
stacksoftware.amazon.awscdk.Stackcdk.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` |
sourceraw docstring

build-stage-deployment-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
postjava.util.Listcdk.support/lookup-entry:post
prejava.util.Listcdk.support/lookup-entry:pre
stackStepsjava.util.Listcdk.support/lookup-entry:stack-steps
stageNamejava.lang.Stringcdk.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` |
sourceraw docstring

build-wave-builderclj

(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:

FieldDataTypeLookup FunctionData Key
postjava.util.Listcdk.support/lookup-entry:post
prejava.util.Listcdk.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` |
sourceraw docstring

build-wave-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
postjava.util.Listcdk.support/lookup-entry:post
prejava.util.Listcdk.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` |
sourceraw docstring

build-wave-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
postjava.util.Listcdk.support/lookup-entry:post
prejava.util.Listcdk.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` |
sourceraw docstring

code-build-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

code-build-step-builderclj

(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 |
sourceraw docstring

code-build-step-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

code-commit-source-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

code-pipeline-action-factory-result-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

code-pipeline-builderclj

(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 |
sourceraw docstring

code-pipeline-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

confirm-permissions-broadening-builderclj

(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 |
sourceraw docstring

connection-source-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

docker-credential-usageclj

(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:

  • 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.

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.
sourceraw docstring

ecr-docker-credential-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

ecr-source-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

external-docker-credential-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

file-set-location-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

git-hub-source-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

manual-approval-step-builderclj

(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 |
sourceraw docstring

manual-approval-step-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

permissions-broadening-check-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

pipeline-base-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

produce-action-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

s3-source-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

shell-step-builderclj

(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 |
sourceraw docstring

shell-step-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

stack-asset-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

stack-deployment-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

stack-steps-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

stage-deployment-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

wave-builderclj

(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 |
sourceraw docstring

wave-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

wave-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close