Class: Aws::RDS::Types::DescribeSourceRegionsMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass DescribeSourceRegionsMessage data as a hash:

{
  region_name: "String",
  max_records: 1,
  marker: "String",
  filters: [
    {
      name: "String", # required
      values: ["String"], # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::Filter>

This parameter is not currently supported.

Returns:



8711
8712
8713
8714
8715
8716
8717
# File 'lib/aws-sdk-rds/types.rb', line 8711

class DescribeSourceRegionsMessage < Struct.new(
  :region_name,
  :max_records,
  :marker,
  :filters)
  include Aws::Structure
end

#markerString

An optional pagination token provided by a previous DescribeSourceRegions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by ‘MaxRecords`.

Returns:

  • (String)


8711
8712
8713
8714
8715
8716
8717
# File 'lib/aws-sdk-rds/types.rb', line 8711

class DescribeSourceRegionsMessage < Struct.new(
  :region_name,
  :max_records,
  :marker,
  :filters)
  include Aws::Structure
end

#max_recordsInteger

The maximum number of records to include in the response. If more records exist than the specified ‘MaxRecords` value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

Returns:

  • (Integer)


8711
8712
8713
8714
8715
8716
8717
# File 'lib/aws-sdk-rds/types.rb', line 8711

class DescribeSourceRegionsMessage < Struct.new(
  :region_name,
  :max_records,
  :marker,
  :filters)
  include Aws::Structure
end

#region_nameString

The source AWS Region name. For example, ‘us-east-1`.

Constraints:

  • Must specify a valid AWS Region name.

^

Returns:

  • (String)


8711
8712
8713
8714
8715
8716
8717
# File 'lib/aws-sdk-rds/types.rb', line 8711

class DescribeSourceRegionsMessage < Struct.new(
  :region_name,
  :max_records,
  :marker,
  :filters)
  include Aws::Structure
end