NAME

Paws::Route53::ListHostedZonesByVPC - Arguments for method ListHostedZonesByVPC on Paws::Route53

DESCRIPTION

This class represents the parameters used for calling the method ListHostedZonesByVPC on the Amazon Route 53 service. Use the attributes of this class as arguments to method ListHostedZonesByVPC.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListHostedZonesByVPC.

SYNOPSIS

    my $route53 = Paws->service('Route53');
    my $ListHostedZonesByVPCResponse = $route53->ListHostedZonesByVPC(
      VPCId     => 'MyVPCId',
      VPCRegion => 'us-east-1',
      MaxItems  => 'MyPageMaxItems',       # OPTIONAL
      NextToken => 'MyPaginationToken',    # OPTIONAL
    );

    # Results:
    my $HostedZoneSummaries =
      $ListHostedZonesByVPCResponse->HostedZoneSummaries;
    my $MaxItems  = $ListHostedZonesByVPCResponse->MaxItems;
    my $NextToken = $ListHostedZonesByVPCResponse->NextToken;

    # Returns a L<Paws::Route53::ListHostedZonesByVPCResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/route53/ListHostedZonesByVPC

ATTRIBUTES

MaxItems => Str

(Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If the specified VPC is associated with more than MaxItems hosted zones, the response includes a NextToken element. NextToken contains an encrypted token that identifies the first hosted zone that Route 53 will return if you submit another request.

NextToken => Str

If the previous response included a NextToken element, the specified VPC is associated with more hosted zones. To get more hosted zones, submit another ListHostedZonesByVPC request.

For the value of NextToken, specify the value of NextToken from the previous response.

If the previous response didn't include a NextToken element, there are no more hosted zones to get.

REQUIRED VPCId => Str

The ID of the Amazon VPC that you want to list hosted zones for.

REQUIRED VPCRegion => Str

For the Amazon VPC that you specified for VPCId, the AWS Region that you created the VPC in.

Valid values are: "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"

SEE ALSO

This class forms part of Paws, documenting arguments for method ListHostedZonesByVPC in Paws::Route53

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues