Table of Contents
A low-level client representing Access Analyzer:
import boto3
client = boto3.client('accessanalyzer')
These are the available methods:
Check if an operation can be paginated.
Creates an analyzer for your account.
See also: AWS API Documentation
Request Syntax
response = client.create_analyzer(
analyzerName='string',
archiveRules=[
{
'filter': {
'string': {
'contains': [
'string',
],
'eq': [
'string',
],
'exists': True|False,
'neq': [
'string',
]
}
},
'ruleName': 'string'
},
],
clientToken='string',
tags={
'string': 'string'
},
type='ACCOUNT'
)
[REQUIRED]
The name of the analyzer to create.
Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.
An criterion statement in an archive rule. Each archive rule may have multiple criteria.
The condition and values for a criterion.
The criteria to use in the filter that defines the archive rule.
A "contains" operator to match for the filter used to create the rule.
An "equals" operator to match for the filter used to create the rule.
An "exists" operator to match for the filter used to create the rule.
A "not equals" operator to match for the filter used to create the rule.
The name of the rule.
A client token.
This field is autopopulated if not provided.
The tags to apply to the analyzer.
[REQUIRED]
The type of analyzer to create. Only ACCOUNT analyzers are supported. You can create only one analyzer per account per Region.
dict
Response Syntax
{
'arn': 'string'
}
Response Structure
(dict) --
The response to the request to create an analyzer.
arn (string) --
The ARN of the analyzer that was created by the request.
Creates an archive rule for the specified analyzer. Archive rules automatically archive findings that meet the criteria you define when you create the rule.
See also: AWS API Documentation
Request Syntax
response = client.create_archive_rule(
analyzerName='string',
clientToken='string',
filter={
'string': {
'contains': [
'string',
],
'eq': [
'string',
],
'exists': True|False,
'neq': [
'string',
]
}
},
ruleName='string'
)
[REQUIRED]
The name of the created analyzer.
A client token.
This field is autopopulated if not provided.
[REQUIRED]
The criteria for the rule.
The criteria to use in the filter that defines the archive rule.
A "contains" operator to match for the filter used to create the rule.
An "equals" operator to match for the filter used to create the rule.
An "exists" operator to match for the filter used to create the rule.
A "not equals" operator to match for the filter used to create the rule.
[REQUIRED]
The name of the rule to create.
None
Deletes the specified analyzer. When you delete an analyzer, Access Analyzer is disabled for the account in the current or specific Region. All findings that were generated by the analyzer are deleted. You cannot undo this action.
See also: AWS API Documentation
Request Syntax
response = client.delete_analyzer(
analyzerName='string',
clientToken='string'
)
[REQUIRED]
The name of the analyzer to delete.
A client token.
This field is autopopulated if not provided.
None
Deletes the specified archive rule.
See also: AWS API Documentation
Request Syntax
response = client.delete_archive_rule(
analyzerName='string',
clientToken='string',
ruleName='string'
)
[REQUIRED]
The name of the analyzer that associated with the archive rule to delete.
A client token.
This field is autopopulated if not provided.
[REQUIRED]
The name of the rule to delete.
None
Generate a presigned url given a client, its method, and arguments
The presigned url
Retrieves information about a resource that was analyzed.
See also: AWS API Documentation
Request Syntax
response = client.get_analyzed_resource(
analyzerArn='string',
resourceArn='string'
)
[REQUIRED]
The ARN of the analyzer to retrieve information from.
[REQUIRED]
The ARN of the resource to retrieve information about.
dict
Response Syntax
{
'resource': {
'actions': [
'string',
],
'analyzedAt': datetime(2015, 1, 1),
'createdAt': datetime(2015, 1, 1),
'error': 'string',
'isPublic': True|False,
'resourceArn': 'string',
'resourceType': 'AWS::IAM::Role'|'AWS::KMS::Key'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::S3::Bucket'|'AWS::SQS::Queue',
'sharedVia': [
'string',
],
'status': 'ACTIVE'|'ARCHIVED'|'RESOLVED',
'updatedAt': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
The response to the request.
resource (dict) --
An AnalyedResource object that contains information that Access Analyzer found when it analyzed the resource.
actions (list) --
The actions that an external principal is granted permission to use by the policy that generated the finding.
analyzedAt (datetime) --
The time at which the resource was analyzed.
createdAt (datetime) --
The time at which the finding was created.
error (string) --
An error message.
isPublic (boolean) --
Indicates whether the policy that generated the finding grants public access to the resource.
resourceArn (string) --
The ARN of the resource that was analyzed.
resourceType (string) --
The type of the resource that was analyzed.
sharedVia (list) --
Indicates how the access that generated the finding is granted.
status (string) --
The current status of the finding generated from the analyzed resource.
updatedAt (datetime) --
The time at which the finding was updated.
Retrieves information about the specified analyzer.
See also: AWS API Documentation
Request Syntax
response = client.get_analyzer(
analyzerName='string'
)
[REQUIRED]
The name of the analyzer retrieved.
{
'analyzer': {
'arn': 'string',
'createdAt': datetime(2015, 1, 1),
'lastResourceAnalyzed': 'string',
'lastResourceAnalyzedAt': datetime(2015, 1, 1),
'name': 'string',
'tags': {
'string': 'string'
},
'type': 'ACCOUNT'
}
}
Response Structure
The response to the request.
An AnalyzerSummary object that contains information about the analyzer.
The ARN of the analyzer.
A timestamp for the time at which the analyzer was created.
The resource that was most recently analyzed by the analyzer.
The time at which the most recently analyzed resource was analyzed.
The name of the analyzer.
The tags added to the analyzer.
The type of analyzer, which corresponds to the zone of trust chosen for the analyzer.
Retrieves information about an archive rule.
See also: AWS API Documentation
Request Syntax
response = client.get_archive_rule(
analyzerName='string',
ruleName='string'
)
[REQUIRED]
The name of the analyzer to retrieve rules from.
[REQUIRED]
The name of the rule to retrieve.
dict
Response Syntax
{
'archiveRule': {
'createdAt': datetime(2015, 1, 1),
'filter': {
'string': {
'contains': [
'string',
],
'eq': [
'string',
],
'exists': True|False,
'neq': [
'string',
]
}
},
'ruleName': 'string',
'updatedAt': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
The response to the request.
archiveRule (dict) --
Contains information about an archive rule.
createdAt (datetime) --
The time at which the archive rule was created.
filter (dict) --
A filter used to define the archive rule.
(string) --
(dict) --
The criteria to use in the filter that defines the archive rule.
contains (list) --
A "contains" operator to match for the filter used to create the rule.
eq (list) --
An "equals" operator to match for the filter used to create the rule.
exists (boolean) --
An "exists" operator to match for the filter used to create the rule.
neq (list) --
A "not equals" operator to match for the filter used to create the rule.
ruleName (string) --
The name of the archive rule.
updatedAt (datetime) --
The time at which the archive rule was last updated.
Retrieves information about the specified finding.
See also: AWS API Documentation
Request Syntax
response = client.get_finding(
analyzerArn='string',
id='string'
)
[REQUIRED]
The ARN of the analyzer that generated the finding.
[REQUIRED]
The ID of the finding to retrieve.
dict
Response Syntax
{
'finding': {
'action': [
'string',
],
'analyzedAt': datetime(2015, 1, 1),
'condition': {
'string': 'string'
},
'createdAt': datetime(2015, 1, 1),
'error': 'string',
'id': 'string',
'isPublic': True|False,
'principal': {
'string': 'string'
},
'resource': 'string',
'resourceType': 'AWS::IAM::Role'|'AWS::KMS::Key'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::S3::Bucket'|'AWS::SQS::Queue',
'status': 'ACTIVE'|'ARCHIVED'|'RESOLVED',
'updatedAt': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
The response to the request.
finding (dict) --
A finding object that contains finding details.
action (list) --
The action in the analyzed policy statement that an external principal has permission to use.
analyzedAt (datetime) --
The time at which the resource was analyzed.
condition (dict) --
The condition in the analyzed policy statement that resulted in a finding.
createdAt (datetime) --
The time at which the finding was generated.
error (string) --
An error.
id (string) --
The ID of the finding.
isPublic (boolean) --
Indicates whether the policy that generated the finding allows public access to the resource.
principal (dict) --
The external principal that access to a resource within the zone of trust.
resource (string) --
The resource that an external principal has access to.
resourceType (string) --
The type of the resource reported in the finding.
status (string) --
The current status of the finding.
updatedAt (datetime) --
The time at which the finding was updated.
Create a paginator for an operation.
Returns an object that can wait for some condition.
Retrieves a list of resources of the specified type that have been analyzed by the specified analyzer..
See also: AWS API Documentation
Request Syntax
response = client.list_analyzed_resources(
analyzerArn='string',
maxResults=123,
nextToken='string',
resourceType='AWS::IAM::Role'|'AWS::KMS::Key'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::S3::Bucket'|'AWS::SQS::Queue'
)
[REQUIRED]
The ARN of the analyzer to retrieve a list of analyzed resources from.
dict
Response Syntax
{
'analyzedResources': [
{
'resourceArn': 'string',
'resourceType': 'AWS::IAM::Role'|'AWS::KMS::Key'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::S3::Bucket'|'AWS::SQS::Queue'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
The response to the request.
analyzedResources (list) --
A list of resources that were analyzed.
(dict) --
Contains the ARN of the analyzed resource.
resourceArn (string) --
The ARN of the analyzed resource.
resourceType (string) --
The type of resource that was analyzed.
nextToken (string) --
A token used for pagination of results returned.
Retrieves a list of analyzers.
See also: AWS API Documentation
Request Syntax
response = client.list_analyzers(
maxResults=123,
nextToken='string',
type='ACCOUNT'
)
dict
Response Syntax
{
'analyzers': [
{
'arn': 'string',
'createdAt': datetime(2015, 1, 1),
'lastResourceAnalyzed': 'string',
'lastResourceAnalyzedAt': datetime(2015, 1, 1),
'name': 'string',
'tags': {
'string': 'string'
},
'type': 'ACCOUNT'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
The response to the request.
analyzers (list) --
The analyzers retrieved.
(dict) --
Contains information about the analyzer.
arn (string) --
The ARN of the analyzer.
createdAt (datetime) --
A timestamp for the time at which the analyzer was created.
lastResourceAnalyzed (string) --
The resource that was most recently analyzed by the analyzer.
lastResourceAnalyzedAt (datetime) --
The time at which the most recently analyzed resource was analyzed.
name (string) --
The name of the analyzer.
tags (dict) --
The tags added to the analyzer.
type (string) --
The type of analyzer, which corresponds to the zone of trust chosen for the analyzer.
nextToken (string) --
A token used for pagination of results returned.
Retrieves a list of archive rules created for the specified analyzer.
See also: AWS API Documentation
Request Syntax
response = client.list_archive_rules(
analyzerName='string',
maxResults=123,
nextToken='string'
)
[REQUIRED]
The name of the analyzer to retrieve rules from.
dict
Response Syntax
{
'archiveRules': [
{
'createdAt': datetime(2015, 1, 1),
'filter': {
'string': {
'contains': [
'string',
],
'eq': [
'string',
],
'exists': True|False,
'neq': [
'string',
]
}
},
'ruleName': 'string',
'updatedAt': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
The response to the request.
archiveRules (list) --
A list of archive rules created for the specified analyzer.
(dict) --
Contains information about an archive rule.
createdAt (datetime) --
The time at which the archive rule was created.
filter (dict) --
A filter used to define the archive rule.
(string) --
(dict) --
The criteria to use in the filter that defines the archive rule.
contains (list) --
A "contains" operator to match for the filter used to create the rule.
eq (list) --
An "equals" operator to match for the filter used to create the rule.
exists (boolean) --
An "exists" operator to match for the filter used to create the rule.
neq (list) --
A "not equals" operator to match for the filter used to create the rule.
ruleName (string) --
The name of the archive rule.
updatedAt (datetime) --
The time at which the archive rule was last updated.
nextToken (string) --
A token used for pagination of results returned.
Retrieves a list of findings generated by the specified analyzer.
See also: AWS API Documentation
Request Syntax
response = client.list_findings(
analyzerArn='string',
filter={
'string': {
'contains': [
'string',
],
'eq': [
'string',
],
'exists': True|False,
'neq': [
'string',
]
}
},
maxResults=123,
nextToken='string',
sort={
'attributeName': 'string',
'orderBy': 'ASC'|'DESC'
}
)
[REQUIRED]
The ARN of the analyzer to retrieve findings from.
A filter to match for the findings to return.
The criteria to use in the filter that defines the archive rule.
A "contains" operator to match for the filter used to create the rule.
An "equals" operator to match for the filter used to create the rule.
An "exists" operator to match for the filter used to create the rule.
A "not equals" operator to match for the filter used to create the rule.
The sort order for the findings returned.
The name of the attribute to sort on.
The sort order, ascending or descending.
dict
Response Syntax
{
'findings': [
{
'action': [
'string',
],
'analyzedAt': datetime(2015, 1, 1),
'condition': {
'string': 'string'
},
'createdAt': datetime(2015, 1, 1),
'error': 'string',
'id': 'string',
'isPublic': True|False,
'principal': {
'string': 'string'
},
'resource': 'string',
'resourceType': 'AWS::IAM::Role'|'AWS::KMS::Key'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::S3::Bucket'|'AWS::SQS::Queue',
'status': 'ACTIVE'|'ARCHIVED'|'RESOLVED',
'updatedAt': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
The response to the request.
findings (list) --
A list of findings retrieved from the analyzer that match the filter criteria specified, if any.
(dict) --
Contains information about a finding.
action (list) --
The action in the analyzed policy statement that an external principal has permission to use.
analyzedAt (datetime) --
The time at which the resource-based policy that generated the finding was analyzed.
condition (dict) --
The condition in the analyzed policy statement that resulted in a finding.
createdAt (datetime) --
The time at which the finding was created.
error (string) --
The error that resulted in an Error finding.
id (string) --
The ID of the finding.
isPublic (boolean) --
Indicates whether the finding reports a resource that has a policy that allows public access.
principal (dict) --
The external principal that has access to a resource within the zone of trust.
resource (string) --
The resource that the external principal has access to.
resourceType (string) --
The type of the resource that the external principal has access to.
status (string) --
The status of the finding.
updatedAt (datetime) --
The time at which the finding was most recently updated.
nextToken (string) --
A token used for pagination of results returned.
Retrieves a list of tags applied to the specified resource.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
resourceArn='string'
)
[REQUIRED]
The ARN of the resource to retrieve tags from.
{
'tags': {
'string': 'string'
}
}
Response Structure
The response to the request.
The tags that are applied to the specified resource.
Immediately starts a scan of the policies applied to the specified resource.
See also: AWS API Documentation
Request Syntax
response = client.start_resource_scan(
analyzerArn='string',
resourceArn='string'
)
[REQUIRED]
The ARN of the analyzer to use to scan the policies applied to the specified resource.
[REQUIRED]
The ARN of the resource to scan.
None
Adds a tag to the specified resource.
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
resourceArn='string',
tags={
'string': 'string'
}
)
[REQUIRED]
The ARN of the resource to add the tag to.
[REQUIRED]
The tags to add to the resource.
dict
Response Syntax
{}
Response Structure
(dict) --
The response to the request.
Removes a tag from the specified resource.
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
resourceArn='string',
tagKeys=[
'string',
]
)
[REQUIRED]
The ARN of the resource to remove the tag from.
[REQUIRED]
The key for the tag to add.
dict
Response Syntax
{}
Response Structure
(dict) --
The response to the request.
Updates the criteria and values for the specified archive rule.
See also: AWS API Documentation
Request Syntax
response = client.update_archive_rule(
analyzerName='string',
clientToken='string',
filter={
'string': {
'contains': [
'string',
],
'eq': [
'string',
],
'exists': True|False,
'neq': [
'string',
]
}
},
ruleName='string'
)
[REQUIRED]
The name of the analyzer to update the archive rules for.
A client token.
This field is autopopulated if not provided.
[REQUIRED]
A filter to match for the rules to update. Only rules that match the filter are updated.
The criteria to use in the filter that defines the archive rule.
A "contains" operator to match for the filter used to create the rule.
An "equals" operator to match for the filter used to create the rule.
An "exists" operator to match for the filter used to create the rule.
A "not equals" operator to match for the filter used to create the rule.
[REQUIRED]
The name of the rule to update.
None
Updates the status for the specified findings.
See also: AWS API Documentation
Request Syntax
response = client.update_findings(
analyzerArn='string',
clientToken='string',
ids=[
'string',
],
resourceArn='string',
status='ACTIVE'|'ARCHIVED'
)
[REQUIRED]
The ARN of the analyzer that generated the findings to update.
A client token.
This field is autopopulated if not provided.
The IDs of the findings to update.
[REQUIRED]
The state represents the action to take to update the finding Status. Use ARCHIVE to change an Active finding to an Archived finding. Use ACTIVE to change an Archived finding to an Active finding.
None
The available paginators are: