Class StackSetParameters
- All Implemented Interfaces:
- software.amazon.jsii.JsiiSerializable
Example:
 StackSetParameters parameters = StackSetParameters.fromLiteral(Map.of(
         "BucketName", "my-bucket",
         "Asset1", "true"));
 - 
Nested Class SummaryNested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationMode
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedprotectedStackSetParameters(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedStackSetParameters(software.amazon.jsii.JsiiObjectRef objRef) 
- 
Method SummaryModifier and TypeMethodDescriptionstatic StackSetParametersfromArtifactPath(ArtifactPath artifactPath) Read the parameters from a JSON file from one of the pipeline's artifacts.static StackSetParametersfromLiteral(Map<String, String> parameters) A list of template parameters for your stack set.static StackSetParametersA list of template parameters for your stack set.Methods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
StackSetParametersprotected StackSetParameters(software.amazon.jsii.JsiiObjectRef objRef) 
- 
StackSetParametersprotected StackSetParameters(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) 
- 
StackSetParameters@Stability(Stable) protected StackSetParameters()
 
- 
- 
Method Details- 
fromArtifactPath@Stability(Stable) @NotNull public static StackSetParameters fromArtifactPath(@NotNull ArtifactPath artifactPath) Read the parameters from a JSON file from one of the pipeline's artifacts.The file needs to contain a list of { ParameterKey, ParameterValue, UsePreviousValue }objects, like this:[ { "ParameterKey": "BucketName", "ParameterValue": "my-bucket" }, { "ParameterKey": "Asset1", "ParameterValue": "true" }, { "ParameterKey": "Asset2", "UsePreviousValue": true } ]You must specify all template parameters. Parameters you don't specify will revert to their Defaultvalues as specified in the template.For of parameters you want to retain their existing values without specifying what those values are, set UsePreviousValue: true. Use of this feature is discouraged. CDK is for specifying desired-state infrastructure, and use of this feature makes the parameter values unmanaged.- Parameters:
- artifactPath- This parameter is required.
 
- 
fromLiteral@Stability(Stable) @NotNull public static StackSetParameters fromLiteral(@NotNull Map<String, String> parameters, @Nullable List<String> usePreviousValues) A list of template parameters for your stack set.You must specify all template parameters. Parameters you don't specify will revert to their Defaultvalues as specified in the template.Specify the names of parameters you want to retain their existing values, without specifying what those values are, in an array in the second argument to this function. Use of this feature is discouraged. CDK is for specifying desired-state infrastructure, and use of this feature makes the parameter values unmanaged. Example: StackSetParameters parameters = StackSetParameters.fromLiteral(Map.of( "BucketName", "my-bucket", "Asset1", "true"));- Parameters:
- parameters- This parameter is required.
- usePreviousValues-
 
- 
fromLiteral@Stability(Stable) @NotNull public static StackSetParameters fromLiteral(@NotNull Map<String, String> parameters) A list of template parameters for your stack set.You must specify all template parameters. Parameters you don't specify will revert to their Defaultvalues as specified in the template.Specify the names of parameters you want to retain their existing values, without specifying what those values are, in an array in the second argument to this function. Use of this feature is discouraged. CDK is for specifying desired-state infrastructure, and use of this feature makes the parameter values unmanaged. Example: StackSetParameters parameters = StackSetParameters.fromLiteral(Map.of( "BucketName", "my-bucket", "Asset1", "true"));- Parameters:
- parameters- This parameter is required.
 
 
-