@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.649Z") @Stability(value=Stable) public interface CfnStackProps 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.*;
CfnStackProps cfnStackProps = CfnStackProps.builder()
.accessEndpoints(List.of(AccessEndpointProperty.builder()
.endpointType("endpointType")
.vpceId("vpceId")
.build()))
.applicationSettings(ApplicationSettingsProperty.builder()
.enabled(false)
// the properties below are optional
.settingsGroup("settingsGroup")
.build())
.attributesToDelete(List.of("attributesToDelete"))
.deleteStorageConnectors(false)
.description("description")
.displayName("displayName")
.embedHostDomains(List.of("embedHostDomains"))
.feedbackUrl("feedbackUrl")
.name("name")
.redirectUrl("redirectUrl")
.storageConnectors(List.of(StorageConnectorProperty.builder()
.connectorType("connectorType")
// the properties below are optional
.domains(List.of("domains"))
.resourceIdentifier("resourceIdentifier")
.build()))
.streamingExperienceSettings(StreamingExperienceSettingsProperty.builder()
.preferredProtocol("preferredProtocol")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userSettings(List.of(UserSettingProperty.builder()
.action("action")
.permission("permission")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStackProps.Builder
A builder for
CfnStackProps |
static class |
CfnStackProps.Jsii$Proxy
An implementation for
CfnStackProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStackProps.Builder |
builder() |
default Object |
getAccessEndpoints()
The list of virtual private cloud (VPC) interface endpoint objects.
|
default Object |
getApplicationSettings()
The persistent application settings for users of the stack.
|
default List<String> |
getAttributesToDelete()
The stack attributes to delete.
|
default Object |
getDeleteStorageConnectors()
*This parameter has been deprecated.*.
|
default String |
getDescription()
The description to display.
|
default String |
getDisplayName()
The stack name to display.
|
default List<String> |
getEmbedHostDomains()
The domains where AppStream 2.0 streaming sessions can be embedded in an iframe.
|
default String |
getFeedbackUrl()
The URL that users are redirected to after they click the Send Feedback link.
|
default String |
getName()
The name of the stack.
|
default String |
getRedirectUrl()
The URL that users are redirected to after their streaming session ends.
|
default Object |
getStorageConnectors()
The storage connectors to enable.
|
default Object |
getStreamingExperienceSettings()
`AWS::AppStream::Stack.StreamingExperienceSettings`.
|
default List<CfnTag> |
getTags()
An array of key-value pairs.
|
default Object |
getUserSettings()
The actions that are enabled or disabled for users during their streaming sessions.
|
@Stability(value=Stable) @Nullable default Object getAccessEndpoints()
Users of the stack can connect to AppStream 2.0 only through the specified endpoints.
@Stability(value=Stable) @Nullable default Object getApplicationSettings()
When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.
@Stability(value=Stable) @Nullable default List<String> getAttributesToDelete()
@Stability(value=Stable) @Nullable default Object getDeleteStorageConnectors()
Deletes the storage connectors currently enabled for the stack.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getDisplayName()
@Stability(value=Stable) @Nullable default List<String> getEmbedHostDomains()
@Stability(value=Stable) @Nullable default String getFeedbackUrl()
If no URL is specified, no Send Feedback link is displayed.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getRedirectUrl()
@Stability(value=Stable) @Nullable default Object getStorageConnectors()
@Stability(value=Stable) @Nullable default Object getStreamingExperienceSettings()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getUserSettings()
By default, these actions are enabled.
@Stability(value=Stable) static CfnStackProps.Builder builder()
CfnStackProps.Builder of CfnStackPropsCopyright © 2022. All rights reserved.