You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DatabaseMigrationService::Types::CreateReplicationSubnetGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateReplicationSubnetGroupMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  replication_subnet_group_identifier: "String", # required
  replication_subnet_group_description: "String", # required
  subnet_ids: ["String"], # required
  tags: [
    {
      key: "String",
      value: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#replication_subnet_group_descriptionString

The description for the subnet group.

Returns:

  • (String)

    The description for the subnet group.

#replication_subnet_group_identifierString

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

Returns:

  • (String)

    The name for the replication subnet group.

#subnet_idsArray<String>

One or more subnet IDs to be assigned to the subnet group.

Returns:

  • (Array<String>)

    One or more subnet IDs to be assigned to the subnet group.

#tagsArray<Types::Tag>

One or more tags to be assigned to the subnet group.

Returns:

  • (Array<Types::Tag>)

    One or more tags to be assigned to the subnet group.