/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace AppStream { namespace Model { /** */ class CreateStackRequest : public AppStreamRequest { public: AWS_APPSTREAM_API CreateStackRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateStack"; } AWS_APPSTREAM_API Aws::String SerializePayload() const override; AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the stack.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the stack.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the stack.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the stack.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the stack.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the stack.

*/ inline CreateStackRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the stack.

*/ inline CreateStackRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the stack.

*/ inline CreateStackRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The description to display.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description to display.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description to display.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description to display.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description to display.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description to display.

*/ inline CreateStackRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description to display.

*/ inline CreateStackRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description to display.

*/ inline CreateStackRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The stack name to display.

*/ inline const Aws::String& GetDisplayName() const{ return m_displayName; } /** *

The stack name to display.

*/ inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; } /** *

The stack name to display.

*/ inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; } /** *

The stack name to display.

*/ inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); } /** *

The stack name to display.

*/ inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); } /** *

The stack name to display.

*/ inline CreateStackRequest& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;} /** *

The stack name to display.

*/ inline CreateStackRequest& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;} /** *

The stack name to display.

*/ inline CreateStackRequest& WithDisplayName(const char* value) { SetDisplayName(value); return *this;} /** *

The storage connectors to enable.

*/ inline const Aws::Vector& GetStorageConnectors() const{ return m_storageConnectors; } /** *

The storage connectors to enable.

*/ inline bool StorageConnectorsHasBeenSet() const { return m_storageConnectorsHasBeenSet; } /** *

The storage connectors to enable.

*/ inline void SetStorageConnectors(const Aws::Vector& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors = value; } /** *

The storage connectors to enable.

*/ inline void SetStorageConnectors(Aws::Vector&& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors = std::move(value); } /** *

The storage connectors to enable.

*/ inline CreateStackRequest& WithStorageConnectors(const Aws::Vector& value) { SetStorageConnectors(value); return *this;} /** *

The storage connectors to enable.

*/ inline CreateStackRequest& WithStorageConnectors(Aws::Vector&& value) { SetStorageConnectors(std::move(value)); return *this;} /** *

The storage connectors to enable.

*/ inline CreateStackRequest& AddStorageConnectors(const StorageConnector& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(value); return *this; } /** *

The storage connectors to enable.

*/ inline CreateStackRequest& AddStorageConnectors(StorageConnector&& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(std::move(value)); return *this; } /** *

The URL that users are redirected to after their streaming session ends.

*/ inline const Aws::String& GetRedirectURL() const{ return m_redirectURL; } /** *

The URL that users are redirected to after their streaming session ends.

*/ inline bool RedirectURLHasBeenSet() const { return m_redirectURLHasBeenSet; } /** *

The URL that users are redirected to after their streaming session ends.

*/ inline void SetRedirectURL(const Aws::String& value) { m_redirectURLHasBeenSet = true; m_redirectURL = value; } /** *

The URL that users are redirected to after their streaming session ends.

*/ inline void SetRedirectURL(Aws::String&& value) { m_redirectURLHasBeenSet = true; m_redirectURL = std::move(value); } /** *

The URL that users are redirected to after their streaming session ends.

*/ inline void SetRedirectURL(const char* value) { m_redirectURLHasBeenSet = true; m_redirectURL.assign(value); } /** *

The URL that users are redirected to after their streaming session ends.

*/ inline CreateStackRequest& WithRedirectURL(const Aws::String& value) { SetRedirectURL(value); return *this;} /** *

The URL that users are redirected to after their streaming session ends.

*/ inline CreateStackRequest& WithRedirectURL(Aws::String&& value) { SetRedirectURL(std::move(value)); return *this;} /** *

The URL that users are redirected to after their streaming session ends.

*/ inline CreateStackRequest& WithRedirectURL(const char* value) { SetRedirectURL(value); return *this;} /** *

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.

*/ inline const Aws::String& GetFeedbackURL() const{ return m_feedbackURL; } /** *

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.

*/ inline bool FeedbackURLHasBeenSet() const { return m_feedbackURLHasBeenSet; } /** *

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.

*/ inline void SetFeedbackURL(const Aws::String& value) { m_feedbackURLHasBeenSet = true; m_feedbackURL = value; } /** *

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.

*/ inline void SetFeedbackURL(Aws::String&& value) { m_feedbackURLHasBeenSet = true; m_feedbackURL = std::move(value); } /** *

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.

*/ inline void SetFeedbackURL(const char* value) { m_feedbackURLHasBeenSet = true; m_feedbackURL.assign(value); } /** *

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.

*/ inline CreateStackRequest& WithFeedbackURL(const Aws::String& value) { SetFeedbackURL(value); return *this;} /** *

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.

*/ inline CreateStackRequest& WithFeedbackURL(Aws::String&& value) { SetFeedbackURL(std::move(value)); return *this;} /** *

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.

*/ inline CreateStackRequest& WithFeedbackURL(const char* value) { SetFeedbackURL(value); return *this;} /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline const Aws::Vector& GetUserSettings() const{ return m_userSettings; } /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline bool UserSettingsHasBeenSet() const { return m_userSettingsHasBeenSet; } /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline void SetUserSettings(const Aws::Vector& value) { m_userSettingsHasBeenSet = true; m_userSettings = value; } /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline void SetUserSettings(Aws::Vector&& value) { m_userSettingsHasBeenSet = true; m_userSettings = std::move(value); } /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline CreateStackRequest& WithUserSettings(const Aws::Vector& value) { SetUserSettings(value); return *this;} /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline CreateStackRequest& WithUserSettings(Aws::Vector&& value) { SetUserSettings(std::move(value)); return *this;} /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline CreateStackRequest& AddUserSettings(const UserSetting& value) { m_userSettingsHasBeenSet = true; m_userSettings.push_back(value); return *this; } /** *

The actions that are enabled or disabled for users during their streaming * sessions. By default, these actions are enabled.

*/ inline CreateStackRequest& AddUserSettings(UserSetting&& value) { m_userSettingsHasBeenSet = true; m_userSettings.push_back(std::move(value)); return *this; } /** *

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.

*/ inline const ApplicationSettings& GetApplicationSettings() const{ return m_applicationSettings; } /** *

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.

*/ inline bool ApplicationSettingsHasBeenSet() const { return m_applicationSettingsHasBeenSet; } /** *

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.

*/ inline void SetApplicationSettings(const ApplicationSettings& value) { m_applicationSettingsHasBeenSet = true; m_applicationSettings = value; } /** *

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.

*/ inline void SetApplicationSettings(ApplicationSettings&& value) { m_applicationSettingsHasBeenSet = true; m_applicationSettings = std::move(value); } /** *

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.

*/ inline CreateStackRequest& WithApplicationSettings(const ApplicationSettings& value) { SetApplicationSettings(value); return *this;} /** *

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.

*/ inline CreateStackRequest& WithApplicationSettings(ApplicationSettings&& value) { SetApplicationSettings(std::move(value)); return *this;} /** *

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.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

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.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

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.

*/ inline void SetTags(const Aws::Map& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

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.

*/ inline void SetTags(Aws::Map&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

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.

*/ inline CreateStackRequest& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

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.

*/ inline CreateStackRequest& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

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.

*/ inline CreateStackRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

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.

*/ inline CreateStackRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

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.

*/ inline CreateStackRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

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.

*/ inline CreateStackRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

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.

*/ inline CreateStackRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

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.

*/ inline CreateStackRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

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.

*/ inline CreateStackRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline const Aws::Vector& GetAccessEndpoints() const{ return m_accessEndpoints; } /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline bool AccessEndpointsHasBeenSet() const { return m_accessEndpointsHasBeenSet; } /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline void SetAccessEndpoints(const Aws::Vector& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints = value; } /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline void SetAccessEndpoints(Aws::Vector&& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints = std::move(value); } /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline CreateStackRequest& WithAccessEndpoints(const Aws::Vector& value) { SetAccessEndpoints(value); return *this;} /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline CreateStackRequest& WithAccessEndpoints(Aws::Vector&& value) { SetAccessEndpoints(std::move(value)); return *this;} /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline CreateStackRequest& AddAccessEndpoints(const AccessEndpoint& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints.push_back(value); return *this; } /** *

The list of interface VPC endpoint (interface endpoint) objects. Users of the * stack can connect to AppStream 2.0 only through the specified endpoints.

*/ inline CreateStackRequest& AddAccessEndpoints(AccessEndpoint&& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints.push_back(std::move(value)); return *this; } /** *

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.

*/ inline const Aws::Vector& GetEmbedHostDomains() const{ return m_embedHostDomains; } /** *

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.

*/ inline bool EmbedHostDomainsHasBeenSet() const { return m_embedHostDomainsHasBeenSet; } /** *

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.

*/ inline void SetEmbedHostDomains(const Aws::Vector& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains = value; } /** *

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.

*/ inline void SetEmbedHostDomains(Aws::Vector&& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains = std::move(value); } /** *

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.

*/ inline CreateStackRequest& WithEmbedHostDomains(const Aws::Vector& value) { SetEmbedHostDomains(value); return *this;} /** *

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.

*/ inline CreateStackRequest& WithEmbedHostDomains(Aws::Vector&& value) { SetEmbedHostDomains(std::move(value)); return *this;} /** *

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.

*/ inline CreateStackRequest& AddEmbedHostDomains(const Aws::String& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(value); return *this; } /** *

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.

*/ inline CreateStackRequest& AddEmbedHostDomains(Aws::String&& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(std::move(value)); return *this; } /** *

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.

*/ inline CreateStackRequest& AddEmbedHostDomains(const char* value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(value); return *this; } /** *

The streaming protocol you want your stack to prefer. This can be UDP or TCP. * Currently, UDP is only supported in the Windows native client.

*/ inline const StreamingExperienceSettings& GetStreamingExperienceSettings() const{ return m_streamingExperienceSettings; } /** *

The streaming protocol you want your stack to prefer. This can be UDP or TCP. * Currently, UDP is only supported in the Windows native client.

*/ inline bool StreamingExperienceSettingsHasBeenSet() const { return m_streamingExperienceSettingsHasBeenSet; } /** *

The streaming protocol you want your stack to prefer. This can be UDP or TCP. * Currently, UDP is only supported in the Windows native client.

*/ inline void SetStreamingExperienceSettings(const StreamingExperienceSettings& value) { m_streamingExperienceSettingsHasBeenSet = true; m_streamingExperienceSettings = value; } /** *

The streaming protocol you want your stack to prefer. This can be UDP or TCP. * Currently, UDP is only supported in the Windows native client.

*/ inline void SetStreamingExperienceSettings(StreamingExperienceSettings&& value) { m_streamingExperienceSettingsHasBeenSet = true; m_streamingExperienceSettings = std::move(value); } /** *

The streaming protocol you want your stack to prefer. This can be UDP or TCP. * Currently, UDP is only supported in the Windows native client.

*/ inline CreateStackRequest& WithStreamingExperienceSettings(const StreamingExperienceSettings& value) { SetStreamingExperienceSettings(value); return *this;} /** *

The streaming protocol you want your stack to prefer. This can be UDP or TCP. * Currently, UDP is only supported in the Windows native client.

*/ inline CreateStackRequest& WithStreamingExperienceSettings(StreamingExperienceSettings&& value) { SetStreamingExperienceSettings(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_displayName; bool m_displayNameHasBeenSet = false; Aws::Vector m_storageConnectors; bool m_storageConnectorsHasBeenSet = false; Aws::String m_redirectURL; bool m_redirectURLHasBeenSet = false; Aws::String m_feedbackURL; bool m_feedbackURLHasBeenSet = false; Aws::Vector m_userSettings; bool m_userSettingsHasBeenSet = false; ApplicationSettings m_applicationSettings; bool m_applicationSettingsHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; Aws::Vector m_accessEndpoints; bool m_accessEndpointsHasBeenSet = false; Aws::Vector m_embedHostDomains; bool m_embedHostDomainsHasBeenSet = false; StreamingExperienceSettings m_streamingExperienceSettings; bool m_streamingExperienceSettingsHasBeenSet = false; }; } // namespace Model } // namespace AppStream } // namespace Aws