Route53GlobalResolver / Client / get_global_resolver

get_global_resolver

Route53GlobalResolver.Client.get_global_resolver(**kwargs)

Retrieves information about a Route 53 Global Resolver instance.

Warning

Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.

See also: AWS API Documentation

Request Syntax

response = client.get_global_resolver(
    globalResolverId='string'
)
Parameters:

globalResolverId (string) –

[REQUIRED]

The ID of the Route 53 Global Resolver to retrieve information about.

Return type:

dict

Returns:

Response Syntax

{
    'id': 'string',
    'arn': 'string',
    'clientToken': 'string',
    'dnsName': 'string',
    'observabilityRegion': 'string',
    'name': 'string',
    'description': 'string',
    'regions': [
        'string',
    ],
    'createdAt': datetime(2015, 1, 1),
    'updatedAt': datetime(2015, 1, 1),
    'status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING',
    'ipv4Addresses': [
        'string',
    ],
    'ipv6Addresses': [
        'string',
    ],
    'ipAddressType': 'IPV4'|'DUAL_STACK'
}

Response Structure

  • (dict) –

    • id (string) –

      The ID of the Global Resolver.

    • arn (string) –

      The Amazon Resource Name (ARN) of the Global Resolver.

    • clientToken (string) –

      A unique, case-sensitive identifier to ensure idempotency. This means that making the same request multiple times with the same clientToken has the same result every time.

    • dnsName (string) –

      The hostname used by the customers’ DNS clients for certification validation.

    • observabilityRegion (string) –

      The Amazon Web Services Regions in which the users’ Global Resolver query resolution logs will be propagated.

    • name (string) –

      The name of the Global Resolver.

    • description (string) –

      The description of the Global Resolver.

    • regions (list) –

      The Amazon Web Services Regions in which the Global Resolver operate.

      • (string) –

    • createdAt (datetime) –

      The date and time the Global Resolver was created.

    • updatedAt (datetime) –

      The date and time the Global Resolver was updated.

    • status (string) –

      The operational status of the Global Resolver.

    • ipv4Addresses (list) –

      List of anycast IPv4 addresses associated with the Global Resolver instance.

      • (string) –

    • ipv6Addresses (list) –

      List of anycast IPv6 addresses associated with the Global Resolver instance. This field is only populated when ipAddressType is DUAL_STACK.

      • (string) –

    • ipAddressType (string) –

      The IP address type configured for the Global Resolver.

Exceptions

  • Route53GlobalResolver.Client.exceptions.InternalServerException

  • Route53GlobalResolver.Client.exceptions.ValidationException

  • Route53GlobalResolver.Client.exceptions.AccessDeniedException

  • Route53GlobalResolver.Client.exceptions.ThrottlingException

  • Route53GlobalResolver.Client.exceptions.ResourceNotFoundException