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-dms/include/aws/dms/model/CreateReplicationSubnetGroupRequest.h

252 lines
11 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
#include <aws/dms/DatabaseMigrationServiceRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/dms/model/Tag.h>
#include <utility>
namespace Aws
{
namespace DatabaseMigrationService
{
namespace Model
{
/**
* <p/><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationSubnetGroupMessage">AWS
* API Reference</a></p>
*/
class AWS_DATABASEMIGRATIONSERVICE_API CreateReplicationSubnetGroupRequest : public DatabaseMigrationServiceRequest
{
public:
CreateReplicationSubnetGroupRequest();
// 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 "CreateReplicationSubnetGroup"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline const Aws::String& GetReplicationSubnetGroupIdentifier() const{ return m_replicationSubnetGroupIdentifier; }
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline bool ReplicationSubnetGroupIdentifierHasBeenSet() const { return m_replicationSubnetGroupIdentifierHasBeenSet; }
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline void SetReplicationSubnetGroupIdentifier(const Aws::String& value) { m_replicationSubnetGroupIdentifierHasBeenSet = true; m_replicationSubnetGroupIdentifier = value; }
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline void SetReplicationSubnetGroupIdentifier(Aws::String&& value) { m_replicationSubnetGroupIdentifierHasBeenSet = true; m_replicationSubnetGroupIdentifier = std::move(value); }
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline void SetReplicationSubnetGroupIdentifier(const char* value) { m_replicationSubnetGroupIdentifierHasBeenSet = true; m_replicationSubnetGroupIdentifier.assign(value); }
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupIdentifier(const Aws::String& value) { SetReplicationSubnetGroupIdentifier(value); return *this;}
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupIdentifier(Aws::String&& value) { SetReplicationSubnetGroupIdentifier(std::move(value)); return *this;}
/**
* <p>The name for the replication subnet group. This value is stored as a
* lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric
* characters, periods, spaces, underscores, or hyphens. Must not be "default".</p>
* <p>Example: <code>mySubnetgroup</code> </p>
*/
inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupIdentifier(const char* value) { SetReplicationSubnetGroupIdentifier(value); return *this;}
/**
* <p>The description for the subnet group.</p>
*/
inline const Aws::String& GetReplicationSubnetGroupDescription() const{ return m_replicationSubnetGroupDescription; }
/**
* <p>The description for the subnet group.</p>
*/
inline bool ReplicationSubnetGroupDescriptionHasBeenSet() const { return m_replicationSubnetGroupDescriptionHasBeenSet; }
/**
* <p>The description for the subnet group.</p>
*/
inline void SetReplicationSubnetGroupDescription(const Aws::String& value) { m_replicationSubnetGroupDescriptionHasBeenSet = true; m_replicationSubnetGroupDescription = value; }
/**
* <p>The description for the subnet group.</p>
*/
inline void SetReplicationSubnetGroupDescription(Aws::String&& value) { m_replicationSubnetGroupDescriptionHasBeenSet = true; m_replicationSubnetGroupDescription = std::move(value); }
/**
* <p>The description for the subnet group.</p>
*/
inline void SetReplicationSubnetGroupDescription(const char* value) { m_replicationSubnetGroupDescriptionHasBeenSet = true; m_replicationSubnetGroupDescription.assign(value); }
/**
* <p>The description for the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupDescription(const Aws::String& value) { SetReplicationSubnetGroupDescription(value); return *this;}
/**
* <p>The description for the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupDescription(Aws::String&& value) { SetReplicationSubnetGroupDescription(std::move(value)); return *this;}
/**
* <p>The description for the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithReplicationSubnetGroupDescription(const char* value) { SetReplicationSubnetGroupDescription(value); return *this;}
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline const Aws::Vector<Aws::String>& GetSubnetIds() const{ return m_subnetIds; }
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; }
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline void SetSubnetIds(const Aws::Vector<Aws::String>& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = value; }
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline void SetSubnetIds(Aws::Vector<Aws::String>&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = std::move(value); }
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithSubnetIds(const Aws::Vector<Aws::String>& value) { SetSubnetIds(value); return *this;}
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithSubnetIds(Aws::Vector<Aws::String>&& value) { SetSubnetIds(std::move(value)); return *this;}
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; }
/**
* <p>One or more subnet IDs to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
inline CreateReplicationSubnetGroupRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
/**
* <p>One or more tags to be assigned to the subnet group.</p>
*/
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;
Aws::String m_replicationSubnetGroupDescription;
bool m_replicationSubnetGroupDescriptionHasBeenSet;
Aws::Vector<Aws::String> m_subnetIds;
bool m_subnetIdsHasBeenSet;
Aws::Vector<Tag> m_tags;
bool m_tagsHasBeenSet;
};
} // namespace Model
} // namespace DatabaseMigrationService
} // namespace Aws