Inspector.Client.
list_assessment_templates
(**kwargs)¶Lists the assessment templates that correspond to the assessment targets that are specified by the ARNs of the assessment targets.
See also: AWS API Documentation
Request Syntax
response = client.list_assessment_templates(
assessmentTargetArns=[
'string',
],
filter={
'namePattern': 'string',
'durationRange': {
'minSeconds': 123,
'maxSeconds': 123
},
'rulesPackageArns': [
'string',
]
},
nextToken='string',
maxResults=123
)
A list of ARNs that specifies the assessment targets whose assessment templates you want to list.
You can use this parameter to specify a subset of data to be included in the action's response.
For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.
For a record to match a filter, an explicit value or a string that contains a wildcard that is specified for this data type property must match the value of the assessmentTemplateName property of the AssessmentTemplate data type.
For a record to match a filter, the value specified for this data type property must inclusively match any value between the specified minimum and maximum values of the durationInSeconds property of the AssessmentTemplate data type.
The minimum value of the duration range. Must be greater than zero.
The maximum value of the duration range. Must be less than or equal to 604800 seconds (1 week).
For a record to match a filter, the values that are specified for this data type property must be contained in the list of values of the rulesPackageArns property of the AssessmentTemplate data type.
dict
Response Syntax
{
'assessmentTemplateArns': [
'string',
],
'nextToken': 'string'
}
Response Structure
(dict) --
assessmentTemplateArns (list) --
A list of ARNs that specifies the assessment templates returned by the action.
nextToken (string) --
When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the nextToken parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.
Exceptions
Inspector.Client.exceptions.InternalException
Inspector.Client.exceptions.InvalidInputException
Inspector.Client.exceptions.AccessDeniedException
Inspector.Client.exceptions.NoSuchEntityException
Examples
Lists the assessment templates that correspond to the assessment targets that are specified by the ARNs of the assessment targets.
response = client.list_assessment_templates(
assessmentTargetArns=[
'arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq',
],
maxResults=123,
)
print(response)
Expected Output:
{
'assessmentTemplateArns': [
'arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw',
'arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-Uza6ihLh',
],
'nextToken': '1',
'ResponseMetadata': {
'...': '...',
},
}