SecurityHub / Paginator / DescribeStandardsControls

DescribeStandardsControls#

class SecurityHub.Paginator.DescribeStandardsControls#
paginator = client.get_paginator('describe_standards_controls')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from SecurityHub.Client.describe_standards_controls().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    StandardsSubscriptionArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • StandardsSubscriptionArn (string) –

    [REQUIRED]

    The ARN of a resource that represents your subscription to a supported standard. To get the subscription ARNs of the standards you have enabled, use the GetEnabledStandards operation.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'Controls': [
        {
            'StandardsControlArn': 'string',
            'ControlStatus': 'ENABLED'|'DISABLED',
            'DisabledReason': 'string',
            'ControlStatusUpdatedAt': datetime(2015, 1, 1),
            'ControlId': 'string',
            'Title': 'string',
            'Description': 'string',
            'RemediationUrl': 'string',
            'SeverityRating': 'LOW'|'MEDIUM'|'HIGH'|'CRITICAL',
            'RelatedRequirements': [
                'string',
            ]
        },
    ],

}

Response Structure

  • (dict) –

    • Controls (list) –

      A list of security standards controls.

      • (dict) –

        Details for an individual security standard control.

        • StandardsControlArn (string) –

          The ARN of the security standard control.

        • ControlStatus (string) –

          The current status of the security standard control. Indicates whether the control is enabled or disabled. Security Hub does not check against disabled controls.

        • DisabledReason (string) –

          The reason provided for the most recent change in status for the control.

        • ControlStatusUpdatedAt (datetime) –

          The date and time that the status of the security standard control was most recently updated.

        • ControlId (string) –

          The identifier of the security standard control.

        • Title (string) –

          The title of the security standard control.

        • Description (string) –

          The longer description of the security standard control. Provides information about what the control is checking for.

        • RemediationUrl (string) –

          A link to remediation information for the control in the Security Hub user documentation.

        • SeverityRating (string) –

          The severity of findings generated from this security standard control.

          The finding severity is based on an assessment of how easy it would be to compromise Amazon Web Services resources if the issue is detected.

        • RelatedRequirements (list) –

          The list of requirements that are related to this control.

          • (string) –