public static interface CfnAppBlock.ScriptDetailsProperty
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") .s3Key("s3Key") .build()) .timeoutInSeconds(123) // the properties below are optional .executableParameters("executableParameters") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAppBlock.ScriptDetailsProperty.Builder
A builder for
CfnAppBlock.ScriptDetailsProperty |
static class |
CfnAppBlock.ScriptDetailsProperty.Jsii$Proxy
An implementation for
CfnAppBlock.ScriptDetailsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAppBlock.ScriptDetailsProperty.Builder |
builder() |
default java.lang.String |
getExecutableParameters()
The parameters used in the run path for the script.
|
java.lang.String |
getExecutablePath()
The run path for the script.
|
java.lang.Object |
getScriptS3Location()
The S3 object location of the script.
|
java.lang.Number |
getTimeoutInSeconds()
The run timeout, in seconds, for the script.
|
java.lang.String getExecutablePath()
java.lang.Object getScriptS3Location()
java.lang.Number getTimeoutInSeconds()
default java.lang.String getExecutableParameters()
static CfnAppBlock.ScriptDetailsProperty.Builder builder()