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

Class: Aws::SecurityHub::Types::AwsRdsDbSubnetGroup

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

Overview

Note:

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

{
  db_subnet_group_name: "NonEmptyString",
  db_subnet_group_description: "NonEmptyString",
  vpc_id: "NonEmptyString",
  subnet_group_status: "NonEmptyString",
  subnets: [
    {
      subnet_identifier: "NonEmptyString",
      subnet_availability_zone: {
        name: "NonEmptyString",
      },
      subnet_status: "NonEmptyString",
    },
  ],
  db_subnet_group_arn: "NonEmptyString",
}

Information about the subnet group for the database instance.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#db_subnet_group_arnString

The ARN of the subnet group.

Returns:

  • (String)

    The ARN of the subnet group.

#db_subnet_group_descriptionString

The description of the subnet group.

Returns:

  • (String)

    The description of the subnet group.

#db_subnet_group_nameString

The name of the subnet group.

Returns:

  • (String)

    The name of the subnet group.

#subnet_group_statusString

The status of the subnet group.

Returns:

  • (String)

    The status of the subnet group.

#subnetsArray<Types::AwsRdsDbSubnetGroupSubnet>

A list of subnets in the subnet group.

Returns:

#vpc_idString

The VPC ID of the subnet group.

Returns:

  • (String)

    The VPC ID of the subnet group.