Route53Resolver / Client / get_outpost_resolver

get_outpost_resolver#

Route53Resolver.Client.get_outpost_resolver(**kwargs)#

Gets information about a specified Resolver on the Outpost, such as its instance count and type, name, and the current status of the Resolver.

See also: AWS API Documentation

Request Syntax

response = client.get_outpost_resolver(
    Id='string'
)
Parameters:

Id (string) –

[REQUIRED]

The ID of the Resolver on the Outpost.

Return type:

dict

Returns:

Response Syntax

{
    'OutpostResolver': {
        'Arn': 'string',
        'CreationTime': 'string',
        'ModificationTime': 'string',
        'CreatorRequestId': 'string',
        'Id': 'string',
        'InstanceCount': 123,
        'PreferredInstanceType': 'string',
        'Name': 'string',
        'Status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING'|'ACTION_NEEDED'|'FAILED_CREATION'|'FAILED_DELETION',
        'StatusMessage': 'string',
        'OutpostArn': 'string'
    }
}

Response Structure

  • (dict) –

    • OutpostResolver (dict) –

      Information about the GetOutpostResolver request, including the status of the request.

      • Arn (string) –

        The ARN (Amazon Resource Name) for the Resolver on an Outpost.

      • CreationTime (string) –

        The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).

      • ModificationTime (string) –

        The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).

      • CreatorRequestId (string) –

        A unique string that identifies the request that created the Resolver endpoint. The CreatorRequestId allows failed requests to be retried without the risk of running the operation twice.

      • Id (string) –

        The ID of the Resolver on Outpost.

      • InstanceCount (integer) –

        Amazon EC2 instance count for the Resolver on the Outpost.

      • PreferredInstanceType (string) –

        The Amazon EC2 instance type.

      • Name (string) –

        Name of the Resolver.

      • Status (string) –

        Status of the Resolver.

      • StatusMessage (string) –

        A detailed description of the Resolver.

      • OutpostArn (string) –

        The ARN (Amazon Resource Name) for the Outpost.

Exceptions