aws-cdk-lib.aws_appstream.CfnAppBlock.ScriptDetailsProperty

interface ScriptDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.AppStream.CfnAppBlock.ScriptDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnAppBlock_ScriptDetailsProperty
Javasoftware.amazon.awscdk.services.appstream.CfnAppBlock.ScriptDetailsProperty
Pythonaws_cdk.aws_appstream.CfnAppBlock.ScriptDetailsProperty
TypeScript aws-cdk-lib » 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 { aws_appstream as appstream } from 'aws-cdk-lib';
const scriptDetailsProperty: appstream.CfnAppBlock.ScriptDetailsProperty = {
  executablePath: 'executablePath',
  scriptS3Location: {
    s3Bucket: 's3Bucket',

    // the properties below are optional
    s3Key: 's3Key',
  },
  timeoutInSeconds: 123,

  // the properties below are optional
  executableParameters: 'executableParameters',
};

Properties

NameTypeDescription
executablePathstringThe run path for the script.
scriptS3LocationIResolvable | S3LocationPropertyThe S3 object location of the script.
timeoutInSecondsnumberThe run timeout, in seconds, for the script.
executableParameters?stringThe parameters used in the run path for the script.

executablePath

Type: string

The run path for the script.


scriptS3Location

Type: IResolvable | S3LocationProperty

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.