UpdateStackRequest
public struct UpdateStackRequest : 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 stack attributes to delete.
Declaration
Swift
public let attributesToDelete: [StackAttribute]?
-
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 choose 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 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:attributesToDelete:description:displayName:embedHostDomains:feedbackURL:name:redirectURL:storageConnectors:userSettings:)
Undocumented
Declaration
Swift
public init(accessEndpoints: [AccessEndpoint]? = nil, applicationSettings: ApplicationSettings? = nil, attributesToDelete: [StackAttribute]? = nil, description: String? = nil, displayName: String? = nil, embedHostDomains: [String]? = nil, feedbackURL: String? = nil, name: String, redirectURL: String? = nil, storageConnectors: [StorageConnector]? = nil, userSettings: [UserSetting]? = nil)
-
Declaration
Swift
public func validate(name: String) throws