Class: Aws::EC2::Types::DescribeVpcClassicLinkDnsSupportRequest

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

Overview

Note:

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

{
  max_results: 1,
  next_token: "NextToken",
  vpc_ids: ["String"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.

Returns:

  • (Integer)


16382
16383
16384
16385
16386
16387
# File 'lib/aws-sdk-ec2/types.rb', line 16382

class DescribeVpcClassicLinkDnsSupportRequest < Struct.new(
  :max_results,
  :next_token,
  :vpc_ids)
  include Aws::Structure
end

#next_tokenString

The token for the next set of items to return. (You received this token from a prior call.)

Returns:

  • (String)


16382
16383
16384
16385
16386
16387
# File 'lib/aws-sdk-ec2/types.rb', line 16382

class DescribeVpcClassicLinkDnsSupportRequest < Struct.new(
  :max_results,
  :next_token,
  :vpc_ids)
  include Aws::Structure
end

#vpc_idsArray<String>

One or more VPC IDs.

Returns:

  • (Array<String>)


16382
16383
16384
16385
16386
16387
# File 'lib/aws-sdk-ec2/types.rb', line 16382

class DescribeVpcClassicLinkDnsSupportRequest < Struct.new(
  :max_results,
  :next_token,
  :vpc_ids)
  include Aws::Structure
end