Interface CfnAppBlockPropsMixin.ScriptDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppBlockPropsMixin.ScriptDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnAppBlockPropsMixin
@Stability(Stable)
public static interface CfnAppBlockPropsMixin.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.cfnpropertymixins.services.appstream.*;
ScriptDetailsProperty scriptDetailsProperty = ScriptDetailsProperty.builder()
.executableParameters("executableParameters")
.executablePath("executablePath")
.scriptS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
.timeoutInSeconds(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppBlockPropsMixin.ScriptDetailsPropertystatic final classAn implementation forCfnAppBlockPropsMixin.ScriptDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutableParameters
The parameters used in the run path for the script.- See Also:
-
getExecutablePath
The run path for the script.- See Also:
-
getScriptS3Location
The S3 object location of the script.Returns union: either
IResolvableorCfnAppBlockPropsMixin.S3LocationProperty- See Also:
-
getTimeoutInSeconds
The run timeout, in seconds, for the script.- See Also:
-
builder
-