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: