/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A collection of settings that apply to spaces created in the
* Domain.See Also:
AWS
* API Reference
The ARN of the execution role for the space.
*/ inline const Aws::String& GetExecutionRole() const{ return m_executionRole; } /** *The ARN of the execution role for the space.
*/ inline bool ExecutionRoleHasBeenSet() const { return m_executionRoleHasBeenSet; } /** *The ARN of the execution role for the space.
*/ inline void SetExecutionRole(const Aws::String& value) { m_executionRoleHasBeenSet = true; m_executionRole = value; } /** *The ARN of the execution role for the space.
*/ inline void SetExecutionRole(Aws::String&& value) { m_executionRoleHasBeenSet = true; m_executionRole = std::move(value); } /** *The ARN of the execution role for the space.
*/ inline void SetExecutionRole(const char* value) { m_executionRoleHasBeenSet = true; m_executionRole.assign(value); } /** *The ARN of the execution role for the space.
*/ inline DefaultSpaceSettings& WithExecutionRole(const Aws::String& value) { SetExecutionRole(value); return *this;} /** *The ARN of the execution role for the space.
*/ inline DefaultSpaceSettings& WithExecutionRole(Aws::String&& value) { SetExecutionRole(std::move(value)); return *this;} /** *The ARN of the execution role for the space.
*/ inline DefaultSpaceSettings& WithExecutionRole(const char* value) { SetExecutionRole(value); return *this;} /** *The security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline const Aws::VectorThe security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline bool SecurityGroupsHasBeenSet() const { return m_securityGroupsHasBeenSet; } /** *The security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline void SetSecurityGroups(const Aws::VectorThe security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline void SetSecurityGroups(Aws::VectorThe security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline DefaultSpaceSettings& WithSecurityGroups(const Aws::VectorThe security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline DefaultSpaceSettings& WithSecurityGroups(Aws::VectorThe security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline DefaultSpaceSettings& AddSecurityGroups(const Aws::String& value) { m_securityGroupsHasBeenSet = true; m_securityGroups.push_back(value); return *this; } /** *The security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline DefaultSpaceSettings& AddSecurityGroups(Aws::String&& value) { m_securityGroupsHasBeenSet = true; m_securityGroups.push_back(std::move(value)); return *this; } /** *The security group IDs for the Amazon Virtual Private Cloud that the space * uses for communication.
*/ inline DefaultSpaceSettings& AddSecurityGroups(const char* value) { m_securityGroupsHasBeenSet = true; m_securityGroups.push_back(value); return *this; } inline const JupyterServerAppSettings& GetJupyterServerAppSettings() const{ return m_jupyterServerAppSettings; } inline bool JupyterServerAppSettingsHasBeenSet() const { return m_jupyterServerAppSettingsHasBeenSet; } inline void SetJupyterServerAppSettings(const JupyterServerAppSettings& value) { m_jupyterServerAppSettingsHasBeenSet = true; m_jupyterServerAppSettings = value; } inline void SetJupyterServerAppSettings(JupyterServerAppSettings&& value) { m_jupyterServerAppSettingsHasBeenSet = true; m_jupyterServerAppSettings = std::move(value); } inline DefaultSpaceSettings& WithJupyterServerAppSettings(const JupyterServerAppSettings& value) { SetJupyterServerAppSettings(value); return *this;} inline DefaultSpaceSettings& WithJupyterServerAppSettings(JupyterServerAppSettings&& value) { SetJupyterServerAppSettings(std::move(value)); return *this;} inline const KernelGatewayAppSettings& GetKernelGatewayAppSettings() const{ return m_kernelGatewayAppSettings; } inline bool KernelGatewayAppSettingsHasBeenSet() const { return m_kernelGatewayAppSettingsHasBeenSet; } inline void SetKernelGatewayAppSettings(const KernelGatewayAppSettings& value) { m_kernelGatewayAppSettingsHasBeenSet = true; m_kernelGatewayAppSettings = value; } inline void SetKernelGatewayAppSettings(KernelGatewayAppSettings&& value) { m_kernelGatewayAppSettingsHasBeenSet = true; m_kernelGatewayAppSettings = std::move(value); } inline DefaultSpaceSettings& WithKernelGatewayAppSettings(const KernelGatewayAppSettings& value) { SetKernelGatewayAppSettings(value); return *this;} inline DefaultSpaceSettings& WithKernelGatewayAppSettings(KernelGatewayAppSettings&& value) { SetKernelGatewayAppSettings(std::move(value)); return *this;} private: Aws::String m_executionRole; bool m_executionRoleHasBeenSet = false; Aws::Vector