interface ScriptDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnAppBlockPropsMixin.ScriptDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnAppBlockPropsMixin_ScriptDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnAppBlockPropsMixin.ScriptDetailsProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnAppBlockPropsMixin.ScriptDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnAppBlockPropsMixin » ScriptDetailsProperty |
The details of the script.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const scriptDetailsProperty: appstream_mixins.CfnAppBlockPropsMixin.ScriptDetailsProperty = {
executableParameters: 'executableParameters',
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
timeoutInSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| executable | string | The parameters used in the run path for the script. |
| executable | string | The run path for the script. |
| script | IResolvable | S3 | The S3 object location of the script. |
| timeout | number | The run timeout, in seconds, for the script. |
executableParameters?
Type:
string
(optional)
The parameters used in the run path for the script.
executablePath?
Type:
string
(optional)
The run path for the script.
scriptS3Location?
Type:
IResolvable | S3
(optional)
The S3 object location of the script.
timeoutInSeconds?
Type:
number
(optional)
The run timeout, in seconds, for the script.

.NET
Go
Java
Python
TypeScript