@Stability(value=Stable)
public static interface CfnAppBlock.ScriptDetailsProperty
extends software.amazon.jsii.JsiiSerializable
// 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()
`CfnAppBlock.ScriptDetailsProperty.ExecutableParameters`.
|
String |
getExecutablePath()
`CfnAppBlock.ScriptDetailsProperty.ExecutablePath`.
|
Object |
getScriptS3Location()
`CfnAppBlock.ScriptDetailsProperty.ScriptS3Location`.
|
Number |
getTimeoutInSeconds()
`CfnAppBlock.ScriptDetailsProperty.TimeoutInSeconds`.
|
@Stability(value=Stable) @Nullable default String getExecutableParameters()
@Stability(value=Stable) @NotNull String getExecutablePath()
@Stability(value=Stable) @NotNull Object getScriptS3Location()
@Stability(value=Stable) @NotNull Number getTimeoutInSeconds()
@Stability(value=Stable) static CfnAppBlock.ScriptDetailsProperty.Builder builder()
Copyright © 2021. All rights reserved.