Interface CfnStackProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackProps.Jsii$Proxy
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")
// the properties below are optional
.maximumLength(123)
.build()))
.build();
- See Also:
-
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 WorkSpaces Applications 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 WorkSpaces Applications only through the specified endpoints.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStack.AccessEndpointProperty>- See Also:
-
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.
Returns union: either
IResolvableorCfnStack.ApplicationSettingsProperty- See Also:
-
getAttributesToDelete
The stack attributes to delete.- See Also:
-
getDeleteStorageConnectors
This parameter has been deprecated..Deletes the storage connectors currently enabled for the stack.
Returns union: either
BooleanorIResolvable- See Also:
-
getDescription
The description to display.- See Also:
-
getDisplayName
The stack name to display.- See Also:
-
getEmbedHostDomains
The domains where WorkSpaces Applications streaming sessions can be embedded in an iframe.You must approve the domains that you want to host embedded WorkSpaces Applications streaming sessions.
- See Also:
-
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.
- See Also:
-
getName
The name of the stack.- See Also:
-
getRedirectUrl
The URL that users are redirected to after their streaming session ends.- See Also:
-
getStorageConnectors
The storage connectors to enable.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStack.StorageConnectorProperty>- See Also:
-
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.
Returns union: either
IResolvableorCfnStack.StreamingExperienceSettingsProperty- See Also:
-
getTags
An array of key-value pairs.- See Also:
-
getUserSettings
The actions that are enabled or disabled for users during their streaming sessions.By default, these actions are enabled.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStack.UserSettingProperty>- See Also:
-
builder
- Returns:
- a
CfnStackProps.BuilderofCfnStackProps
-