interface ScriptDetailsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppStream.CfnAppBlock.ScriptDetailsProperty |
![]() | software.amazon.awscdk.services.appstream.CfnAppBlock.ScriptDetailsProperty |
![]() | aws_cdk.aws_appstream.CfnAppBlock.ScriptDetailsProperty |
![]() | @aws-cdk/aws-appstream » CfnAppBlock » 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 * as appstream from '@aws-cdk/aws-appstream';
const scriptDetailsProperty: appstream.CfnAppBlock.ScriptDetailsProperty = {
executablePath: 'executablePath',
scriptS3Location: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
timeoutInSeconds: 123,
// the properties below are optional
executableParameters: 'executableParameters',
};
Properties
Name | Type | Description |
---|---|---|
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. |
executable | string | The parameters used in the run path for the script. |
executablePath
Type:
string
The run path for the script.
scriptS3Location
Type:
IResolvable
|
S3
The S3 object location of the script.
timeoutInSeconds
Type:
number
The run timeout, in seconds, for the script.
executableParameters?
Type:
string
(optional)
The parameters used in the run path for the script.