WorkSpacesWeb / Client / list_data_protection_settings

list_data_protection_settings#

WorkSpacesWeb.Client.list_data_protection_settings(**kwargs)#

Retrieves a list of data protection settings.

See also: AWS API Documentation

Request Syntax

response = client.list_data_protection_settings(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of results to be included in the next page.

  • nextToken (string) – The pagination token used to retrieve the next page of results for this operation.

Return type:

dict

Returns:

Response Syntax

{
    'dataProtectionSettings': [
        {
            'creationDate': datetime(2015, 1, 1),
            'dataProtectionSettingsArn': 'string',
            'description': 'string',
            'displayName': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • dataProtectionSettings (list) –

      The data protection settings.

      • (dict) –

        The summary of the data protection settings.

        • creationDate (datetime) –

          The creation date timestamp of the data protection settings.

        • dataProtectionSettingsArn (string) –

          The ARN of the data protection settings.

        • description (string) –

          The description of the data protection settings.

        • displayName (string) –

          The display name of the data protection settings.

    • nextToken (string) –

      The pagination token used to retrieve the next page of results for this operation.

Exceptions