Route53GlobalResolver / Client / create_global_resolver

create_global_resolver

Route53GlobalResolver.Client.create_global_resolver(**kwargs)

Creates a new Route 53 Global Resolver instance. A Route 53 Global Resolver is a global, internet-accessible DNS resolver that provides secure DNS resolution for both public and private domains through global anycast IP addresses.

See also: AWS API Documentation

Request Syntax

response = client.create_global_resolver(
    clientToken='string',
    description='string',
    name='string',
    observabilityRegion='string',
    regions=[
        'string',
    ],
    tags={
        'string': 'string'
    }
)
Parameters:
  • clientToken (string) –

    A unique string that identifies the request and ensures idempotency. If you make multiple requests with the same client token, only one Route 53 Global Resolver is created.

    This field is autopopulated if not provided.

  • description (string) – An optional description for the Route 53 Global Resolver instance. Maximum length of 1024 characters.

  • name (string) –

    [REQUIRED]

    A descriptive name for the Route 53 Global Resolver instance. Maximum length of 64 characters.

  • observabilityRegion (string) – The AWS region where query resolution logs and metrics will be aggregated and delivered. If not specified, logging is not enabled.

  • regions (list) –

    [REQUIRED]

    List of AWS regions where the Route 53 Global Resolver will operate. The resolver will be distributed across these regions to provide global availability and low-latency DNS resolution.

    • (string) –

  • tags (dict) –

    Tags to associate with the Route 53 Global Resolver. Tags are key-value pairs that help you organize and identify your resources.

    • (string) –

      • (string) –

Return type:

dict

Returns:

Response Syntax

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

Response Structure

  • (dict) –

    • id (string) –

      The unique identifier for the Route 53 Global Resolver.

    • arn (string) –

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

    • clientToken (string) –

      The unique string that identifies the request and ensures idempotency.

    • createdAt (datetime) –

      The date and time when the Route 53 Global Resolver was created.

    • description (string) –

      The description of the Route 53 Global Resolver.

    • dnsName (string) –

      The hostname that DNS clients should use for TLS certificate validation when connecting to the Route 53 Global Resolver. This value resolves to the global anycast IP addresses for the resolver.

    • ipv4Addresses (list) –

      The global anycast IPv4 addresses associated with the Route 53 Global Resolver. DNS clients can send queries to these addresses from anywhere on the internet.

      • (string) –

    • name (string) –

      The name of the Route 53 Global Resolver.

    • observabilityRegion (string) –

      The AWS Region where observability data for the Route 53 Global Resolver is stored.

    • regions (list) –

      The AWS Regions where the Route 53 Global Resolver is deployed and operational.

      • (string) –

    • status (string) –

      The current status of the Route 53 Global Resolver. Possible values are CREATING (being provisioned), UPDATING (being modified), OPERATIONAL (ready to serve queries), or DELETING (being removed).

    • updatedAt (datetime) –

      The date and time when the Route 53 Global Resolver was last updated.

Exceptions