SecurityHub / Paginator / ListStandardsControlAssociations
ListStandardsControlAssociations#
- class SecurityHub.Paginator.ListStandardsControlAssociations#
paginator = client.get_paginator('list_standards_control_associations')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
SecurityHub.Client.list_standards_control_associations()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( SecurityControlId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
SecurityControlId (string) –
[REQUIRED]
The identifier of the control (identified with
SecurityControlId
,SecurityControlArn
, or a mix of both parameters) that you want to determine the enablement status of in each enabled standard.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
{ 'StandardsControlAssociationSummaries': [ { 'StandardsArn': 'string', 'SecurityControlId': 'string', 'SecurityControlArn': 'string', 'AssociationStatus': 'ENABLED'|'DISABLED', 'RelatedRequirements': [ 'string', ], 'UpdatedAt': datetime(2015, 1, 1), 'UpdatedReason': 'string', 'StandardsControlTitle': 'string', 'StandardsControlDescription': 'string' }, ], }
Response Structure
(dict) –
StandardsControlAssociationSummaries (list) –
An array that provides the enablement status and other details for each security control that applies to each enabled standard.
(dict) –
An array that provides the enablement status and other details for each control that applies to each enabled standard.
StandardsArn (string) –
The Amazon Resource Name (ARN) of a standard.
SecurityControlId (string) –
A unique standard-agnostic identifier for a control. Values for this field typically consist of an Amazon Web Service and a number, such as APIGateway.5. This field doesn’t reference a specific standard.
SecurityControlArn (string) –
The ARN of a control, such as
arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1
. This parameter doesn’t mention a specific standard.AssociationStatus (string) –
The enablement status of a control in a specific standard.
RelatedRequirements (list) –
The requirement that underlies this control in the compliance framework related to the standard.
(string) –
UpdatedAt (datetime) –
The last time that a control’s enablement status in a specified standard was updated.
UpdatedReason (string) –
The reason for updating the control’s enablement status in a specified standard.
StandardsControlTitle (string) –
The title of a control.
StandardsControlDescription (string) –
The description of a control. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. The parameter may reference a specific standard.