659 lines
24 KiB
C++
659 lines
24 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/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/appstream/model/ApplicationSettingsResponse.h>
|
|
#include <aws/appstream/model/StorageConnector.h>
|
|
#include <aws/appstream/model/StackError.h>
|
|
#include <aws/appstream/model/UserSetting.h>
|
|
#include <aws/appstream/model/AccessEndpoint.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace AppStream
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes a stack.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack">AWS API
|
|
* Reference</a></p>
|
|
*/
|
|
class AWS_APPSTREAM_API Stack
|
|
{
|
|
public:
|
|
Stack();
|
|
Stack(Aws::Utils::Json::JsonView jsonValue);
|
|
Stack& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline const Aws::String& GetArn() const{ return m_arn; }
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline Stack& WithArn(const Aws::String& value) { SetArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline Stack& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the stack.</p>
|
|
*/
|
|
inline Stack& WithArn(const char* value) { SetArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <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 Stack& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the stack.</p>
|
|
*/
|
|
inline Stack& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the stack.</p>
|
|
*/
|
|
inline Stack& 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 Stack& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>The description to display.</p>
|
|
*/
|
|
inline Stack& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The description to display.</p>
|
|
*/
|
|
inline Stack& 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 Stack& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The stack name to display.</p>
|
|
*/
|
|
inline Stack& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The stack name to display.</p>
|
|
*/
|
|
inline Stack& WithDisplayName(const char* value) { SetDisplayName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The time the stack was created.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; }
|
|
|
|
/**
|
|
* <p>The time the stack was created.</p>
|
|
*/
|
|
inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The time the stack was created.</p>
|
|
*/
|
|
inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
|
|
|
|
/**
|
|
* <p>The time the stack was created.</p>
|
|
*/
|
|
inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The time the stack was created.</p>
|
|
*/
|
|
inline Stack& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The time the stack was created.</p>
|
|
*/
|
|
inline Stack& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(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 Stack& WithStorageConnectors(const Aws::Vector<StorageConnector>& value) { SetStorageConnectors(value); return *this;}
|
|
|
|
/**
|
|
* <p>The storage connectors to enable.</p>
|
|
*/
|
|
inline Stack& WithStorageConnectors(Aws::Vector<StorageConnector>&& value) { SetStorageConnectors(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The storage connectors to enable.</p>
|
|
*/
|
|
inline Stack& AddStorageConnectors(const StorageConnector& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The storage connectors to enable.</p>
|
|
*/
|
|
inline Stack& 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 Stack& WithRedirectURL(const Aws::String& value) { SetRedirectURL(value); return *this;}
|
|
|
|
/**
|
|
* <p>The URL that users are redirected to after their streaming session ends.</p>
|
|
*/
|
|
inline Stack& 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 Stack& 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 Stack& 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 Stack& 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 Stack& WithFeedbackURL(const char* value) { SetFeedbackURL(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline const Aws::Vector<StackError>& GetStackErrors() const{ return m_stackErrors; }
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline bool StackErrorsHasBeenSet() const { return m_stackErrorsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline void SetStackErrors(const Aws::Vector<StackError>& value) { m_stackErrorsHasBeenSet = true; m_stackErrors = value; }
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline void SetStackErrors(Aws::Vector<StackError>&& value) { m_stackErrorsHasBeenSet = true; m_stackErrors = std::move(value); }
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline Stack& WithStackErrors(const Aws::Vector<StackError>& value) { SetStackErrors(value); return *this;}
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline Stack& WithStackErrors(Aws::Vector<StackError>&& value) { SetStackErrors(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline Stack& AddStackErrors(const StackError& value) { m_stackErrorsHasBeenSet = true; m_stackErrors.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The errors for the stack.</p>
|
|
*/
|
|
inline Stack& AddStackErrors(StackError&& value) { m_stackErrorsHasBeenSet = true; m_stackErrors.push_back(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 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 Stack& 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 Stack& 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 Stack& 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 Stack& AddUserSettings(UserSetting&& value) { m_userSettingsHasBeenSet = true; m_userSettings.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The persistent application settings for users of the stack.</p>
|
|
*/
|
|
inline const ApplicationSettingsResponse& GetApplicationSettings() const{ return m_applicationSettings; }
|
|
|
|
/**
|
|
* <p>The persistent application settings for users of the stack.</p>
|
|
*/
|
|
inline bool ApplicationSettingsHasBeenSet() const { return m_applicationSettingsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The persistent application settings for users of the stack.</p>
|
|
*/
|
|
inline void SetApplicationSettings(const ApplicationSettingsResponse& value) { m_applicationSettingsHasBeenSet = true; m_applicationSettings = value; }
|
|
|
|
/**
|
|
* <p>The persistent application settings for users of the stack.</p>
|
|
*/
|
|
inline void SetApplicationSettings(ApplicationSettingsResponse&& value) { m_applicationSettingsHasBeenSet = true; m_applicationSettings = std::move(value); }
|
|
|
|
/**
|
|
* <p>The persistent application settings for users of the stack.</p>
|
|
*/
|
|
inline Stack& WithApplicationSettings(const ApplicationSettingsResponse& value) { SetApplicationSettings(value); return *this;}
|
|
|
|
/**
|
|
* <p>The persistent application settings for users of the stack.</p>
|
|
*/
|
|
inline Stack& WithApplicationSettings(ApplicationSettingsResponse&& value) { SetApplicationSettings(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The list of virtual private cloud (VPC) 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 virtual private cloud (VPC) 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 virtual private cloud (VPC) 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 virtual private cloud (VPC) 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 virtual private cloud (VPC) interface endpoint objects. Users of
|
|
* the stack can connect to AppStream 2.0 only through the specified endpoints.
|
|
* </p>
|
|
*/
|
|
inline Stack& WithAccessEndpoints(const Aws::Vector<AccessEndpoint>& value) { SetAccessEndpoints(value); return *this;}
|
|
|
|
/**
|
|
* <p>The list of virtual private cloud (VPC) interface endpoint objects. Users of
|
|
* the stack can connect to AppStream 2.0 only through the specified endpoints.
|
|
* </p>
|
|
*/
|
|
inline Stack& WithAccessEndpoints(Aws::Vector<AccessEndpoint>&& value) { SetAccessEndpoints(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The list of virtual private cloud (VPC) interface endpoint objects. Users of
|
|
* the stack can connect to AppStream 2.0 only through the specified endpoints.
|
|
* </p>
|
|
*/
|
|
inline Stack& AddAccessEndpoints(const AccessEndpoint& value) { m_accessEndpointsHasBeenSet = true; m_accessEndpoints.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The list of virtual private cloud (VPC) interface endpoint objects. Users of
|
|
* the stack can connect to AppStream 2.0 only through the specified endpoints.
|
|
* </p>
|
|
*/
|
|
inline Stack& 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 Stack& 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 Stack& 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 Stack& 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 Stack& 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 Stack& AddEmbedHostDomains(const char* value) { m_embedHostDomainsHasBeenSet = true; m_embedHostDomains.push_back(value); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_arn;
|
|
bool m_arnHasBeenSet;
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
Aws::String m_description;
|
|
bool m_descriptionHasBeenSet;
|
|
|
|
Aws::String m_displayName;
|
|
bool m_displayNameHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_createdTime;
|
|
bool m_createdTimeHasBeenSet;
|
|
|
|
Aws::Vector<StorageConnector> m_storageConnectors;
|
|
bool m_storageConnectorsHasBeenSet;
|
|
|
|
Aws::String m_redirectURL;
|
|
bool m_redirectURLHasBeenSet;
|
|
|
|
Aws::String m_feedbackURL;
|
|
bool m_feedbackURLHasBeenSet;
|
|
|
|
Aws::Vector<StackError> m_stackErrors;
|
|
bool m_stackErrorsHasBeenSet;
|
|
|
|
Aws::Vector<UserSetting> m_userSettings;
|
|
bool m_userSettingsHasBeenSet;
|
|
|
|
ApplicationSettingsResponse m_applicationSettings;
|
|
bool m_applicationSettingsHasBeenSet;
|
|
|
|
Aws::Vector<AccessEndpoint> m_accessEndpoints;
|
|
bool m_accessEndpointsHasBeenSet;
|
|
|
|
Aws::Vector<Aws::String> m_embedHostDomains;
|
|
bool m_embedHostDomainsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AppStream
|
|
} // namespace Aws
|