@Stability(value=Stable)
public static interface CfnAppBlock.ScriptDetailsProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getExecutableParameters()
The parameters used in the run path for the script.
|
String |
getExecutablePath()
The run path for the script.
|
Object |
getScriptS3Location()
The S3 object location of the script.
|
Number |
getTimeoutInSeconds()
The run timeout, in seconds, for the script.
|
@Stability(value=Stable) @NotNull String getExecutablePath()
@Stability(value=Stable) @NotNull Object getScriptS3Location()
@Stability(value=Stable) @NotNull Number getTimeoutInSeconds()
@Stability(value=Stable) @Nullable default String getExecutableParameters()
@Stability(value=Stable) static CfnAppBlock.ScriptDetailsProperty.Builder builder()
Copyright © 2022. All rights reserved.