@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.076Z") @Stability(value=Stable) public interface CfnApplicationProps 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.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.appBlockArn("appBlockArn")
.iconS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
.instanceFamilies(List.of("instanceFamilies"))
.launchPath("launchPath")
.name("name")
.platforms(List.of("platforms"))
// the properties below are optional
.attributesToDelete(List.of("attributesToDelete"))
.description("description")
.displayName("displayName")
.launchParameters("launchParameters")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.workingDirectory("workingDirectory")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationProps.Builder
A builder for
CfnApplicationProps |
static class |
CfnApplicationProps.Jsii$Proxy
An implementation for
CfnApplicationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationProps.Builder |
builder() |
String |
getAppBlockArn()
`AWS::AppStream::Application.AppBlockArn`.
|
default List<String> |
getAttributesToDelete()
`AWS::AppStream::Application.AttributesToDelete`.
|
default String |
getDescription()
`AWS::AppStream::Application.Description`.
|
default String |
getDisplayName()
`AWS::AppStream::Application.DisplayName`.
|
Object |
getIconS3Location()
`AWS::AppStream::Application.IconS3Location`.
|
List<String> |
getInstanceFamilies()
`AWS::AppStream::Application.InstanceFamilies`.
|
default String |
getLaunchParameters()
`AWS::AppStream::Application.LaunchParameters`.
|
String |
getLaunchPath()
`AWS::AppStream::Application.LaunchPath`.
|
String |
getName()
`AWS::AppStream::Application.Name`.
|
List<String> |
getPlatforms()
`AWS::AppStream::Application.Platforms`.
|
default List<CfnTag> |
getTags()
`AWS::AppStream::Application.Tags`.
|
default String |
getWorkingDirectory()
`AWS::AppStream::Application.WorkingDirectory`.
|
@Stability(value=Stable) @NotNull String getAppBlockArn()
@Stability(value=Stable) @Nullable default List<String> getAttributesToDelete()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getDisplayName()
@Stability(value=Stable) @NotNull Object getIconS3Location()
@Stability(value=Stable) @NotNull List<String> getInstanceFamilies()
@Stability(value=Stable) @Nullable default String getLaunchParameters()
@Stability(value=Stable) @NotNull String getLaunchPath()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull List<String> getPlatforms()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getWorkingDirectory()
@Stability(value=Stable) static CfnApplicationProps.Builder builder()
CfnApplicationProps.Builder of CfnApplicationPropsCopyright © 2021. All rights reserved.