Route53GlobalResolver / Client / get_global_resolver

get_global_resolver

Route53GlobalResolver.Client.get_global_resolver(**kwargs)

Retrieves information about a Route 53 Global Resolver instance.

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',
    ]
}

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 AWS 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 AWS 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) –

Exceptions