Interface CfnAppBlock.ScriptDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAppBlock.ScriptDetailsProperty.Jsii$Proxy
Enclosing class:
CfnAppBlock

@Stability(Stable) public static interface CfnAppBlock.ScriptDetailsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.appstream.*;
 ScriptDetailsProperty scriptDetailsProperty = ScriptDetailsProperty.builder()
         .executablePath("executablePath")
         .scriptS3Location(S3LocationProperty.builder()
                 .s3Bucket("s3Bucket")
                 // the properties below are optional
                 .s3Key("s3Key")
                 .build())
         .timeoutInSeconds(123)
         // the properties below are optional
         .executableParameters("executableParameters")
         .build();
 

See Also: