Interface CfnComputeNodeGroup.ScriptSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComputeNodeGroup.ScriptSourceProperty.Jsii$Proxy
- Enclosing class:
CfnComputeNodeGroup
@Stability(Stable)
public static interface CfnComputeNodeGroup.ScriptSourceProperty
extends software.amazon.jsii.JsiiSerializable
The external location of a lifecycle script.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.pcs.*;
ScriptSourceProperty scriptSourceProperty = ScriptSourceProperty.builder()
.scriptLocation("scriptLocation")
// the properties below are optional
.checksum("checksum")
.s3VersionId("s3VersionId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnComputeNodeGroup.ScriptSourcePropertystatic final classAn implementation forCfnComputeNodeGroup.ScriptSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScriptLocation
The S3 URI or HTTPS URL where the script is stored.- See Also:
-
getChecksum
A 64-character hexadecimal SHA-256 digest used to verify script integrity.- See Also:
-
getS3VersionId
The S3 object version ID of the script, when stored in a versioned bucket.- See Also:
-
builder
-