This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appstream/include/aws/appstream/model/CreateStackRequest.h

697 lines
32 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appstream/AppStream_EXPORTS.h>
#include <aws/appstream/AppStreamRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/appstream/model/ApplicationSettings.h>
#include <aws/core/utils/memory/stl/AWSMap.h>
#include <aws/appstream/model/StorageConnector.h>
#include <aws/appstream/model/UserSetting.h>
#include <aws/appstream/model/AccessEndpoint.h>
#include <utility>
namespace Aws
{
namespace AppStream
{
namespace Model
{
/**
*/
class AWS_APPSTREAM_API CreateStackRequest : public AppStreamRequest
{
public:
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::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the stack.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the stack.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the stack.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the stack.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the stack.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the stack.</p>
*/
inline CreateStackRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the stack.</p>
*/
inline CreateStackRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the stack.</p>
*/
inline CreateStackRequest& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The description to display.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>The description to display.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>The description to display.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>The description to display.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>The description to display.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>The description to display.</p>
*/
inline CreateStackRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>The description to display.</p>
*/
inline CreateStackRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>The description to display.</p>
*/
inline CreateStackRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
/**
* <p>The stack name to display.</p>
*/
inline const Aws::String& GetDisplayName() const{ return m_displayName; }
/**
* <p>The stack name to display.</p>
*/
inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; }
/**
* <p>The stack name to display.</p>
*/
inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; }
/**
* <p>The stack name to display.</p>
*/
inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); }
/**
* <p>The stack name to display.</p>
*/
inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); }
/**
* <p>The stack name to display.</p>
*/
inline CreateStackRequest& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;}
/**
* <p>The stack name to display.</p>
*/
inline CreateStackRequest& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;}
/**
* <p>The stack name to display.</p>
*/
inline CreateStackRequest& WithDisplayName(const char* value) { SetDisplayName(value); return *this;}
/**
* <p>The storage connectors to enable.</p>
*/
inline const Aws::Vector<StorageConnector>& GetStorageConnectors() const{ return m_storageConnectors; }
/**
* <p>The storage connectors to enable.</p>
*/
inline bool StorageConnectorsHasBeenSet() const { return m_storageConnectorsHasBeenSet; }
/**
* <p>The storage connectors to enable.</p>
*/
inline void SetStorageConnectors(const Aws::Vector<StorageConnector>& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors = value; }
/**
* <p>The storage connectors to enable.</p>
*/
inline void SetStorageConnectors(Aws::Vector<StorageConnector>&& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors = std::move(value); }
/**
* <p>The storage connectors to enable.</p>
*/
inline CreateStackRequest& WithStorageConnectors(const Aws::Vector<StorageConnector>& value) { SetStorageConnectors(value); return *this;}
/**
* <p>The storage connectors to enable.</p>
*/
inline CreateStackRequest& WithStorageConnectors(Aws::Vector<StorageConnector>&& value) { SetStorageConnectors(std::move(value)); return *this;}
/**
* <p>The storage connectors to enable.</p>
*/
inline CreateStackRequest& AddStorageConnectors(const StorageConnector& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(value); return *this; }
/**
* <p>The storage connectors to enable.</p>
*/
inline CreateStackRequest& AddStorageConnectors(StorageConnector&& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(std::move(value)); return *this; }
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline const Aws::String& GetRedirectURL() const{ return m_redirectURL; }
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline bool RedirectURLHasBeenSet() const { return m_redirectURLHasBeenSet; }
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline void SetRedirectURL(const Aws::String& value) { m_redirectURLHasBeenSet = true; m_redirectURL = value; }
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline void SetRedirectURL(Aws::String&& value) { m_redirectURLHasBeenSet = true; m_redirectURL = std::move(value); }
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline void SetRedirectURL(const char* value) { m_redirectURLHasBeenSet = true; m_redirectURL.assign(value); }
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline CreateStackRequest& WithRedirectURL(const Aws::String& value) { SetRedirectURL(value); return *this;}
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline CreateStackRequest& WithRedirectURL(Aws::String&& value) { SetRedirectURL(std::move(value)); return *this;}
/**
* <p>The URL that users are redirected to after their streaming session ends.</p>
*/
inline CreateStackRequest& WithRedirectURL(const char* value) { SetRedirectURL(value); return *this;}
/**
* <p>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.</p>
*/
inline const Aws::String& GetFeedbackURL() const{ return m_feedbackURL; }
/**
* <p>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.</p>
*/
inline bool FeedbackURLHasBeenSet() const { return m_feedbackURLHasBeenSet; }
/**
* <p>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.</p>
*/
inline void SetFeedbackURL(const Aws::String& value) { m_feedbackURLHasBeenSet = true; m_feedbackURL = value; }
/**
* <p>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.</p>
*/
inline void SetFeedbackURL(Aws::String&& value) { m_feedbackURLHasBeenSet = true; m_feedbackURL = std::move(value); }
/**
* <p>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.</p>
*/
inline void SetFeedbackURL(const char* value) { m_feedbackURLHasBeenSet = true; m_feedbackURL.assign(value); }
/**
* <p>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.</p>
*/
inline CreateStackRequest& WithFeedbackURL(const Aws::String& value) { SetFeedbackURL(value); return *this;}
/**
* <p>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.</p>
*/
inline CreateStackRequest& WithFeedbackURL(Aws::String&& value) { SetFeedbackURL(std::move(value)); return *this;}
/**
* <p>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.</p>
*/
inline CreateStackRequest& WithFeedbackURL(const char* value) { SetFeedbackURL(value); return *this;}
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline const Aws::Vector<UserSetting>& GetUserSettings() const{ return m_userSettings; }
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline bool UserSettingsHasBeenSet() const { return m_userSettingsHasBeenSet; }
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline void SetUserSettings(const Aws::Vector<UserSetting>& value) { m_userSettingsHasBeenSet = true; m_userSettings = value; }
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline void SetUserSettings(Aws::Vector<UserSetting>&& value) { m_userSettingsHasBeenSet = true; m_userSettings = std::move(value); }
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline CreateStackRequest& WithUserSettings(const Aws::Vector<UserSetting>& value) { SetUserSettings(value); return *this;}
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline CreateStackRequest& WithUserSettings(Aws::Vector<UserSetting>&& value) { SetUserSettings(std::move(value)); return *this;}
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline CreateStackRequest& AddUserSettings(const UserSetting& value) { m_userSettingsHasBeenSet = true; m_userSettings.push_back(value); return *this; }
/**
* <p>The actions that are enabled or disabled for users during their streaming
* sessions. By default, these actions are enabled. </p>
*/
inline CreateStackRequest& AddUserSettings(UserSetting&& value) { m_userSettingsHasBeenSet = true; m_userSettings.push_back(std::move(value)); return *this; }
/**
* <p>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.</p>
*/
inline const ApplicationSettings& GetApplicationSettings() const{ return m_applicationSettings; }
/**
* <p>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.</p>
*/
inline bool ApplicationSettingsHasBeenSet() const { return m_applicationSettingsHasBeenSet; }
/**
* <p>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.</p>
*/
inline void SetApplicationSettings(const ApplicationSettings& value) { m_applicationSettingsHasBeenSet = true; m_applicationSettings = value; }
/**
* <p>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.</p>
*/
inline void SetApplicationSettings(ApplicationSettings&& value) { m_applicationSettingsHasBeenSet = true; m_applicationSettings = std::move(value); }
/**
* <p>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.</p>
*/
inline CreateStackRequest& WithApplicationSettings(const ApplicationSettings& value) { SetApplicationSettings(value); return *this;}
/**
* <p>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.</p>
*/
inline CreateStackRequest& WithApplicationSettings(ApplicationSettings&& value) { SetApplicationSettings(std::move(value)); return *this;}
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
/**
* <p>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=. </p> <p>If you do not specify a value, the value is set to an
* empty string.</p> <p>Generally allowed characters are: letters, numbers, and
* spaces representable in UTF-8, and the following special characters: </p> <p>_ .
* : / = + \ - @</p> <p>For more information about tags, see <a
* href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging
* Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
*/
inline CreateStackRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline const Aws::Vector<AccessEndpoint>& GetAccessEndpoints() const{ return m_accessEndpoints; }
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline bool AccessEndpointsHasBeenSet() const { return m_accessEndpointsHasBeenSet; }
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline void SetAccessEndpoints(const Aws::Vector<AccessEndpoint>& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints = value; }
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline void SetAccessEndpoints(Aws::Vector<AccessEndpoint>&& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints = std::move(value); }
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline CreateStackRequest& WithAccessEndpoints(const Aws::Vector<AccessEndpoint>& value) { SetAccessEndpoints(value); return *this;}
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline CreateStackRequest& WithAccessEndpoints(Aws::Vector<AccessEndpoint>&& value) { SetAccessEndpoints(std::move(value)); return *this;}
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline CreateStackRequest& AddAccessEndpoints(const AccessEndpoint& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints.push_back(value); return *this; }
/**
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the
* stack can connect to AppStream 2.0 only through the specified endpoints.</p>
*/
inline CreateStackRequest& AddAccessEndpoints(AccessEndpoint&& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints.push_back(std::move(value)); return *this; }
/**
* <p>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. </p>
*/
inline const Aws::Vector<Aws::String>& GetEmbedHostDomains() const{ return m_embedHostDomains; }
/**
* <p>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. </p>
*/
inline bool EmbedHostDomainsHasBeenSet() const { return m_embedHostDomainsHasBeenSet; }
/**
* <p>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. </p>
*/
inline void SetEmbedHostDomains(const Aws::Vector<Aws::String>& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains = value; }
/**
* <p>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. </p>
*/
inline void SetEmbedHostDomains(Aws::Vector<Aws::String>&& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains = std::move(value); }
/**
* <p>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. </p>
*/
inline CreateStackRequest& WithEmbedHostDomains(const Aws::Vector<Aws::String>& value) { SetEmbedHostDomains(value); return *this;}
/**
* <p>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. </p>
*/
inline CreateStackRequest& WithEmbedHostDomains(Aws::Vector<Aws::String>&& value) { SetEmbedHostDomains(std::move(value)); return *this;}
/**
* <p>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. </p>
*/
inline CreateStackRequest& AddEmbedHostDomains(const Aws::String& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(value); return *this; }
/**
* <p>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. </p>
*/
inline CreateStackRequest& AddEmbedHostDomains(Aws::String&& value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(std::move(value)); return *this; }
/**
* <p>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. </p>
*/
inline CreateStackRequest& AddEmbedHostDomains(const char* value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(value); return *this; }
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_description;
bool m_descriptionHasBeenSet;
Aws::String m_displayName;
bool m_displayNameHasBeenSet;
Aws::Vector<StorageConnector> m_storageConnectors;
bool m_storageConnectorsHasBeenSet;
Aws::String m_redirectURL;
bool m_redirectURLHasBeenSet;
Aws::String m_feedbackURL;
bool m_feedbackURLHasBeenSet;
Aws::Vector<UserSetting> m_userSettings;
bool m_userSettingsHasBeenSet;
ApplicationSettings m_applicationSettings;
bool m_applicationSettingsHasBeenSet;
Aws::Map<Aws::String, Aws::String> m_tags;
bool m_tagsHasBeenSet;
Aws::Vector<AccessEndpoint> m_accessEndpoints;
bool m_accessEndpointsHasBeenSet;
Aws::Vector<Aws::String> m_embedHostDomains;
bool m_embedHostDomainsHasBeenSet;
};
} // namespace Model
} // namespace AppStream
} // namespace Aws