/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The request object for this operation. See Also:
AWS
* API Reference
A name for the group that you want to create.
*/ inline const Aws::String& GetGroupName() const{ return m_groupName; } /** *A name for the group that you want to create.
*/ inline bool GroupNameHasBeenSet() const { return m_groupNameHasBeenSet; } /** *A name for the group that you want to create.
*/ inline void SetGroupName(const Aws::String& value) { m_groupNameHasBeenSet = true; m_groupName = value; } /** *A name for the group that you want to create.
*/ inline void SetGroupName(Aws::String&& value) { m_groupNameHasBeenSet = true; m_groupName = std::move(value); } /** *A name for the group that you want to create.
*/ inline void SetGroupName(const char* value) { m_groupNameHasBeenSet = true; m_groupName.assign(value); } /** *A name for the group that you want to create.
*/ inline CreateGroupRequest& WithGroupName(const Aws::String& value) { SetGroupName(value); return *this;} /** *A name for the group that you want to create.
*/ inline CreateGroupRequest& WithGroupName(Aws::String&& value) { SetGroupName(std::move(value)); return *this;} /** *A name for the group that you want to create.
*/ inline CreateGroupRequest& WithGroupName(const char* value) { SetGroupName(value); return *this;} /** *A description for the group that you want to create.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *A description for the group that you want to create.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *A description for the group that you want to create.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *A description for the group that you want to create.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *A description for the group that you want to create.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *A description for the group that you want to create.
*/ inline CreateGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A description for the group that you want to create.
*/ inline CreateGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A description for the group that you want to create.
*/ inline CreateGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; } /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; } /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; } /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); } /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); } /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline CreateGroupRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;} /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline CreateGroupRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;} /** *The ID for the Amazon Web Services account that the group is in. Currently, * you use the ID for the Amazon Web Services account that contains your Amazon * QuickSight account.
*/ inline CreateGroupRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;} /** *The namespace that you want the group to be a part of.
*/ inline const Aws::String& GetNamespace() const{ return m_namespace; } /** *The namespace that you want the group to be a part of.
*/ inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; } /** *The namespace that you want the group to be a part of.
*/ inline void SetNamespace(const Aws::String& value) { m_namespaceHasBeenSet = true; m_namespace = value; } /** *The namespace that you want the group to be a part of.
*/ inline void SetNamespace(Aws::String&& value) { m_namespaceHasBeenSet = true; m_namespace = std::move(value); } /** *The namespace that you want the group to be a part of.
*/ inline void SetNamespace(const char* value) { m_namespaceHasBeenSet = true; m_namespace.assign(value); } /** *The namespace that you want the group to be a part of.
*/ inline CreateGroupRequest& WithNamespace(const Aws::String& value) { SetNamespace(value); return *this;} /** *The namespace that you want the group to be a part of.
*/ inline CreateGroupRequest& WithNamespace(Aws::String&& value) { SetNamespace(std::move(value)); return *this;} /** *The namespace that you want the group to be a part of.
*/ inline CreateGroupRequest& WithNamespace(const char* value) { SetNamespace(value); return *this;} private: Aws::String m_groupName; bool m_groupNameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_awsAccountId; bool m_awsAccountIdHasBeenSet = false; Aws::String m_namespace; bool m_namespaceHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws