@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.623Z") @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()
The app block ARN with which the application should be associated.
|
default List<String> |
getAttributesToDelete()
A list of attributes to delete from an application.
|
default String |
getDescription()
The description of the application.
|
default String |
getDisplayName()
The display name of the application.
|
Object |
getIconS3Location()
The icon S3 location of the application.
|
List<String> |
getInstanceFamilies()
The instance families the application supports.
|
default String |
getLaunchParameters()
The launch parameters of the application.
|
String |
getLaunchPath()
The launch path of the application.
|
String |
getName()
The name of the application.
|
List<String> |
getPlatforms()
The platforms the application supports.
|
default List<CfnTag> |
getTags()
The tags of the application.
|
default String |
getWorkingDirectory()
The working directory of the application.
|
@Stability(value=Stable) @NotNull String getAppBlockArn()
@Stability(value=Stable) @NotNull Object getIconS3Location()
@Stability(value=Stable) @NotNull List<String> getInstanceFamilies()
Allowed Values : GENERAL_PURPOSE | GRAPHICS_G4
@Stability(value=Stable) @NotNull String getLaunchPath()
@Stability(value=Stable) @NotNull String getName()
This name is visible to users when a name is not specified in the DisplayName property.
Pattern : ^[a-zA-Z0-9][a-zA-Z0-9_.-]{0,100}$
@Stability(value=Stable) @NotNull List<String> getPlatforms()
Allowed Values : WINDOWS_SERVER_2019 | AMAZON_LINUX2
@Stability(value=Stable) @Nullable default List<String> getAttributesToDelete()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getDisplayName()
This name is visible to users in the application catalog.
@Stability(value=Stable) @Nullable default String getLaunchParameters()
@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 © 2022. All rights reserved.