CreateStackRequest
public struct CreateStackRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.
Declaration
Swift
public let accessEndpoints: [AccessEndpoint]?
-
The persistent application settings for users of a 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.
Declaration
Swift
public let applicationSettings: ApplicationSettings?
-
The description to display.
Declaration
Swift
public let description: String?
-
The stack name to display.
Declaration
Swift
public let displayName: String?
-
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.
Declaration
Swift
public let embedHostDomains: [String]?
-
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.
Declaration
Swift
public let feedbackURL: String?
-
The name of the stack.
Declaration
Swift
public let name: String
-
The URL that users are redirected to after their streaming session ends.
Declaration
Swift
public let redirectURL: String?
-
The storage connectors to enable.
Declaration
Swift
public let storageConnectors: [StorageConnector]?
-
The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. If you do not specify a value, the value is set to an empty string. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: _ . : / = + \ - @ For more information about tags, see Tagging Your Resources in the Amazon AppStream 2.0 Administration Guide.
Declaration
Swift
public let tags: [String : String]?
-
The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.
Declaration
Swift
public let userSettings: [UserSetting]?
-
init(accessEndpoints:applicationSettings:description:displayName:embedHostDomains:feedbackURL:name:redirectURL:storageConnectors:tags:userSettings:)
Undocumented
Declaration
Swift
public init(accessEndpoints: [AccessEndpoint]? = nil, applicationSettings: ApplicationSettings? = nil, description: String? = nil, displayName: String? = nil, embedHostDomains: [String]? = nil, feedbackURL: String? = nil, name: String, redirectURL: String? = nil, storageConnectors: [StorageConnector]? = nil, tags: [String : String]? = nil, userSettings: [UserSetting]? = nil)
-
Declaration
Swift
public func validate(name: String) throws