@Deprecated public static final class CdkPipelineProps.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements CdkPipelineProps
CdkPipelineProps
CdkPipelineProps.Builder, CdkPipelineProps.Jsii$Proxy
Modifier | Constructor and Description |
---|---|
protected |
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Deprecated.
Constructor that initializes the object based on values retrieved from the JsiiObject.
|
Modifier and Type | Method and Description |
---|---|
com.fasterxml.jackson.databind.JsonNode |
$jsii$toJson()
Deprecated.
|
boolean |
equals(java.lang.Object o)
Deprecated.
|
BuildSpec |
getAssetBuildSpec()
Deprecated.
(deprecated) Custom BuildSpec that is merged with generated one (for asset publishing actions).
|
java.util.List<java.lang.String> |
getAssetPreInstallCommands()
Deprecated.
(deprecated) Additional commands to run before installing cdk-assets during the asset publishing step Use this to setup proxies or npm mirrors.
|
java.lang.String |
getCdkCliVersion()
Deprecated.
(deprecated) CDK CLI version to use in pipeline.
|
Artifact |
getCloudAssemblyArtifact()
Deprecated.
(deprecated) The artifact you have defined to be the artifact to hold the cloudAssemblyArtifact for the synth action.
|
Pipeline |
getCodePipeline()
Deprecated.
(deprecated) Existing CodePipeline to add deployment stages to.
|
java.lang.Boolean |
getCrossAccountKeys()
Deprecated.
(deprecated) Create KMS keys for cross-account deployments.
|
java.util.List<DockerCredential> |
getDockerCredentials()
Deprecated.
(deprecated) A list of credentials used to authenticate to Docker registries.
|
java.lang.Boolean |
getEnableKeyRotation()
Deprecated.
(deprecated) Enables KMS key rotation for cross-account keys.
|
java.lang.String |
getPipelineName()
Deprecated.
(deprecated) Name of the pipeline.
|
java.lang.Boolean |
getSelfMutating()
Deprecated.
(deprecated) Whether the pipeline will update itself.
|
BuildSpec |
getSelfMutationBuildSpec()
Deprecated.
(deprecated) Custom BuildSpec that is merged with generated one (for self-mutation stage).
|
java.lang.Boolean |
getSinglePublisherPerType()
Deprecated.
(deprecated) Whether this pipeline creates one asset upload action per asset type or one asset upload per asset.
|
IAction |
getSourceAction()
Deprecated.
(deprecated) The CodePipeline action used to retrieve the CDK app's source.
|
SubnetSelection |
getSubnetSelection()
Deprecated.
(deprecated) Which subnets to use.
|
java.lang.Boolean |
getSupportDockerAssets()
Deprecated.
(deprecated) Whether the pipeline needs to build Docker images in the UpdatePipeline stage.
|
IAction |
getSynthAction()
Deprecated.
(deprecated) The CodePipeline action build and synthesis step of the CDK app.
|
IVpc |
getVpc()
Deprecated.
(deprecated) The VPC where to execute the CdkPipeline actions.
|
int |
hashCode()
Deprecated.
|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
builder
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
objRef
- Reference to the JSII managed object.public final Artifact getCloudAssemblyArtifact()
CdkPipelineProps
getCloudAssemblyArtifact
in interface CdkPipelineProps
public final BuildSpec getAssetBuildSpec()
CdkPipelineProps
Default: - none
getAssetBuildSpec
in interface CdkPipelineProps
public final java.util.List<java.lang.String> getAssetPreInstallCommands()
CdkPipelineProps
Default: -
getAssetPreInstallCommands
in interface CdkPipelineProps
public final java.lang.String getCdkCliVersion()
CdkPipelineProps
Some Actions in the pipeline will download and run a version of the CDK CLI. Specify the version here.
Default: - Latest version
getCdkCliVersion
in interface CdkPipelineProps
public final Pipeline getCodePipeline()
CdkPipelineProps
Use this if you want more control over the CodePipeline that gets created. You can choose to not pass this value, in which case a new CodePipeline is created with default settings.
If you pass an existing CodePipeline, it should have been created
with restartExecutionOnUpdate: true
.
[disable-awslint:ref-via-interface]
Default: - A new CodePipeline is automatically generated
getCodePipeline
in interface CdkPipelineProps
public final java.lang.Boolean getCrossAccountKeys()
CdkPipelineProps
This controls whether the pipeline is enabled for cross-account deployments.
Can only be set if codePipeline
is not set.
By default cross-account deployments are enabled, but this feature requires that KMS Customer Master Keys are created which have a cost of $1/month.
If you do not need cross-account deployments, you can set this to false
to
not create those keys and save on that cost (the artifact bucket will be
encrypted with an AWS-managed key). However, cross-account deployments will
no longer be possible.
Default: true
getCrossAccountKeys
in interface CdkPipelineProps
public final java.util.List<DockerCredential> getDockerCredentials()
CdkPipelineProps
Specify any credentials necessary within the pipeline to build, synth, update, or publish assets.
Default: []
getDockerCredentials
in interface CdkPipelineProps
public final java.lang.Boolean getEnableKeyRotation()
CdkPipelineProps
Cannot be set if crossAccountKeys
was set to false
.
Key rotation costs $1/month when enabled.
Default: - false (key rotation is disabled)
getEnableKeyRotation
in interface CdkPipelineProps
public final java.lang.String getPipelineName()
CdkPipelineProps
Can only be set if codePipeline
is not set.
Default: - A name is automatically generated
getPipelineName
in interface CdkPipelineProps
public final java.lang.Boolean getSelfMutating()
CdkPipelineProps
This needs to be set to true
to allow the pipeline to reconfigure
itself when assets or stages are being added to it, and true
is the
recommended setting.
You can temporarily set this to false
while you are iterating
on the pipeline itself and prefer to deploy changes using cdk deploy
.
Default: true
getSelfMutating
in interface CdkPipelineProps
public final BuildSpec getSelfMutationBuildSpec()
CdkPipelineProps
Default: - none
getSelfMutationBuildSpec
in interface CdkPipelineProps
public final java.lang.Boolean getSinglePublisherPerType()
CdkPipelineProps
Default: false
getSinglePublisherPerType
in interface CdkPipelineProps
public final IAction getSourceAction()
CdkPipelineProps
Default: - Required unless `codePipeline` is given
getSourceAction
in interface CdkPipelineProps
public final SubnetSelection getSubnetSelection()
CdkPipelineProps
Only used if 'vpc' is supplied.
Default: - All private subnets.
getSubnetSelection
in interface CdkPipelineProps
public final java.lang.Boolean getSupportDockerAssets()
CdkPipelineProps
If the UpdatePipeline stage tries to build a Docker image and this flag is not
set to true
, the build step will run in non-privileged mode and consequently
will fail with a message like:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
This flag has an effect only if selfMutating
is also true
.
Default: - false
getSupportDockerAssets
in interface CdkPipelineProps
public final IAction getSynthAction()
CdkPipelineProps
Default: - Required unless `codePipeline` or `sourceAction` is given
getSynthAction
in interface CdkPipelineProps
public final IVpc getVpc()
CdkPipelineProps
Default: - No VPC
getVpc
in interface CdkPipelineProps
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
public final boolean equals(java.lang.Object o)
public final int hashCode()