@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.074Z") @Stability(value=Stable) public interface CfnAppBlockProps 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.*;
CfnAppBlockProps cfnAppBlockProps = CfnAppBlockProps.builder()
.name("name")
.setupScriptDetails(ScriptDetailsProperty.builder()
.executablePath("executablePath")
.scriptS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
.timeoutInSeconds(123)
// the properties below are optional
.executableParameters("executableParameters")
.build())
.sourceS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
// the properties below are optional
.description("description")
.displayName("displayName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAppBlockProps.Builder
A builder for
CfnAppBlockProps |
static class |
CfnAppBlockProps.Jsii$Proxy
An implementation for
CfnAppBlockProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAppBlockProps.Builder |
builder() |
default String |
getDescription()
`AWS::AppStream::AppBlock.Description`.
|
default String |
getDisplayName()
`AWS::AppStream::AppBlock.DisplayName`.
|
String |
getName()
`AWS::AppStream::AppBlock.Name`.
|
Object |
getSetupScriptDetails()
`AWS::AppStream::AppBlock.SetupScriptDetails`.
|
Object |
getSourceS3Location()
`AWS::AppStream::AppBlock.SourceS3Location`.
|
default List<CfnTag> |
getTags()
`AWS::AppStream::AppBlock.Tags`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getDisplayName()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getSetupScriptDetails()
@Stability(value=Stable) @NotNull Object getSourceS3Location()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnAppBlockProps.Builder builder()
CfnAppBlockProps.Builder of CfnAppBlockPropsCopyright © 2021. All rights reserved.