Route53Resolver / Client / delete_firewall_domain_list

delete_firewall_domain_list#

Route53Resolver.Client.delete_firewall_domain_list(**kwargs)#

Deletes the specified domain list.

See also: AWS API Documentation

Request Syntax

response = client.delete_firewall_domain_list(
    FirewallDomainListId='string'
)
Parameters:

FirewallDomainListId (string) –

[REQUIRED]

The ID of the domain list that you want to delete.

Return type:

dict

Returns:

Response Syntax

{
    'FirewallDomainList': {
        'Id': 'string',
        'Arn': 'string',
        'Name': 'string',
        'DomainCount': 123,
        'Status': 'COMPLETE'|'COMPLETE_IMPORT_FAILED'|'IMPORTING'|'DELETING'|'UPDATING',
        'StatusMessage': 'string',
        'ManagedOwnerName': 'string',
        'CreatorRequestId': 'string',
        'CreationTime': 'string',
        'ModificationTime': 'string'
    }
}

Response Structure

  • (dict) –

    • FirewallDomainList (dict) –

      The domain list that you just deleted.

      • Id (string) –

        The ID of the domain list.

      • Arn (string) –

        The Amazon Resource Name (ARN) of the firewall domain list.

      • Name (string) –

        The name of the domain list.

      • DomainCount (integer) –

        The number of domain names that are specified in the domain list.

      • Status (string) –

        The status of the domain list.

      • StatusMessage (string) –

        Additional information about the status of the list, if available.

      • ManagedOwnerName (string) –

        The owner of the list, used only for lists that are not managed by you. For example, the managed domain list AWSManagedDomainsMalwareDomainList has the managed owner name Route 53 Resolver DNS Firewall.

      • CreatorRequestId (string) –

        A unique string defined by you to identify the request. This allows you to retry failed requests without the risk of running the operation twice. This can be any unique string, for example, a timestamp.

      • CreationTime (string) –

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

      • ModificationTime (string) –

        The date and time that the domain list was last modified, in Unix time format and Coordinated Universal Time (UTC).

Exceptions