/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The name for the replication subnet group. This value is stored as a * lowercase string.
Constraints: Must contain no more than 255 alphanumeric * characters, periods, spaces, underscores, or hyphens. Must not be "default".
*Example: mySubnetgroup
The description for the subnet group.
*/ inline const Aws::String& GetReplicationSubnetGroupDescription() const{ return m_replicationSubnetGroupDescription; } /** *The description for the subnet group.
*/ inline bool ReplicationSubnetGroupDescriptionHasBeenSet() const { return m_replicationSubnetGroupDescriptionHasBeenSet; } /** *The description for the subnet group.
*/ inline void SetReplicationSubnetGroupDescription(const Aws::String& value) { m_replicationSubnetGroupDescriptionHasBeenSet = true; m_replicationSubnetGroupDescription = value; } /** *The description for the subnet group.
*/ inline void SetReplicationSubnetGroupDescription(Aws::String&& value) { m_replicationSubnetGroupDescriptionHasBeenSet = true; m_replicationSubnetGroupDescription = std::move(value); } /** *The description for the subnet group.
*/ inline void SetReplicationSubnetGroupDescription(const char* value) { m_replicationSubnetGroupDescriptionHasBeenSet = true; m_replicationSubnetGroupDescription.assign(value); } /** *The description for the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupDescription(const Aws::String& value) { SetReplicationSubnetGroupDescription(value); return *this;} /** *The description for the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupDescription(Aws::String&& value) { SetReplicationSubnetGroupDescription(std::move(value)); return *this;} /** *The description for the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupDescription(const char* value) { SetReplicationSubnetGroupDescription(value); return *this;} /** *One or more subnet IDs to be assigned to the subnet group.
*/ inline const Aws::VectorOne or more subnet IDs to be assigned to the subnet group.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *One or more subnet IDs to be assigned to the subnet group.
*/ inline void SetSubnetIds(const Aws::VectorOne or more subnet IDs to be assigned to the subnet group.
*/ inline void SetSubnetIds(Aws::VectorOne or more subnet IDs to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithSubnetIds(const Aws::VectorOne or more subnet IDs to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithSubnetIds(Aws::VectorOne or more subnet IDs to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *One or more subnet IDs to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *One or more subnet IDs to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *One or more tags to be assigned to the subnet group.
*/ inline const Aws::VectorOne or more tags to be assigned to the subnet group.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *One or more tags to be assigned to the subnet group.
*/ inline void SetTags(const Aws::VectorOne or more tags to be assigned to the subnet group.
*/ inline void SetTags(Aws::VectorOne or more tags to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithTags(const Aws::VectorOne or more tags to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& WithTags(Aws::VectorOne or more tags to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *One or more tags to be assigned to the subnet group.
*/ inline CreateReplicationSubnetGroupRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_replicationSubnetGroupIdentifier; bool m_replicationSubnetGroupIdentifierHasBeenSet = false; Aws::String m_replicationSubnetGroupDescription; bool m_replicationSubnetGroupDescriptionHasBeenSet = false; Aws::Vector