Interface CfnStackProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.745Z")
@Stability(Stable)
public interface CfnStackProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStack.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStackPropsstatic final classAn implementation forCfnStackProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnStackProps.Builderbuilder()default ObjectThe list of virtual private cloud (VPC) interface endpoint objects.default ObjectThe persistent application settings for users of the stack.The stack attributes to delete.default ObjectThis parameter has been deprecated..default StringThe description to display.default StringThe stack name to display.The domains where AppStream 2.0 streaming sessions can be embedded in an iframe.default StringThe URL that users are redirected to after they click the Send Feedback link.default StringgetName()The name of the stack.default StringThe URL that users are redirected to after their streaming session ends.default ObjectThe storage connectors to enable.default ObjectThe streaming protocol that you want your stack to prefer.getTags()An array of key-value pairs.default ObjectThe actions that are enabled or disabled for users during their streaming sessions.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessEndpoints
The list of virtual private cloud (VPC) interface endpoint objects.Users of the stack can connect to AppStream 2.0 only through the specified endpoints.
-
getApplicationSettings
The persistent application settings for users of the stack.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.
-
getAttributesToDelete
The stack attributes to delete. -
getDeleteStorageConnectors
This parameter has been deprecated..Deletes the storage connectors currently enabled for the stack.
-
getDescription
The description to display. -
getDisplayName
The stack name to display. -
getEmbedHostDomains
The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. -
getFeedbackUrl
The URL that users are redirected to after they click the Send Feedback link.If no URL is specified, no Send Feedback link is displayed.
-
getName
The name of the stack. -
getRedirectUrl
The URL that users are redirected to after their streaming session ends. -
getStorageConnectors
The storage connectors to enable. -
getStreamingExperienceSettings
The streaming protocol that you want your stack to prefer.This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
-
getTags
An array of key-value pairs. -
getUserSettings
The actions that are enabled or disabled for users during their streaming sessions.By default, these actions are enabled.
-
builder
- Returns:
- a
CfnStackProps.BuilderofCfnStackProps
-