interface ScriptSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnComputeNodeGroupPropsMixin.ScriptSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnComputeNodeGroupPropsMixin_ScriptSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnComputeNodeGroupPropsMixin.ScriptSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnComputeNodeGroupPropsMixin.ScriptSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » CfnComputeNodeGroupPropsMixin » ScriptSourceProperty |
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 { aws_pcs as pcs } from '@aws-cdk/cfn-property-mixins';
const scriptSourceProperty: pcs.CfnComputeNodeGroupPropsMixin.ScriptSourceProperty = {
checksum: 'checksum',
s3VersionId: 's3VersionId',
scriptLocation: 'scriptLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| checksum? | string | A 64-character hexadecimal SHA-256 digest used to verify script integrity. |
| s3 | string | The S3 object version ID of the script, when stored in a versioned bucket. |
| script | string | The S3 URI or HTTPS URL where the script is stored. |
checksum?
Type:
string
(optional)
A 64-character hexadecimal SHA-256 digest used to verify script integrity.
s3VersionId?
Type:
string
(optional)
The S3 object version ID of the script, when stored in a versioned bucket.
scriptLocation?
Type:
string
(optional)
The S3 URI or HTTPS URL where the script is stored.

.NET
Go
Java
Python
TypeScript