Get Analyzer
| accessanalyzer_get_analyzer | R Documentation |
Retrieves information about the specified analyzer¶
Description¶
Retrieves information about the specified analyzer.
Usage¶
accessanalyzer_get_analyzer(analyzerName)
Arguments¶
analyzerName |
[required] The name of the analyzer retrieved. |
Value¶
A list with the following syntax:
list(
analyzer = list(
arn = "string",
name = "string",
type = "ACCOUNT"|"ORGANIZATION"|"ACCOUNT_UNUSED_ACCESS"|"ORGANIZATION_UNUSED_ACCESS"|"ACCOUNT_INTERNAL_ACCESS"|"ORGANIZATION_INTERNAL_ACCESS",
createdAt = as.POSIXct(
"2015-01-01"
),
lastResourceAnalyzed = "string",
lastResourceAnalyzedAt = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
),
status = "ACTIVE"|"CREATING"|"DISABLED"|"FAILED",
statusReason = list(
code = "AWS_SERVICE_ACCESS_DISABLED"|"DELEGATED_ADMINISTRATOR_DEREGISTERED"|"ORGANIZATION_DELETED"|"SERVICE_LINKED_ROLE_CREATION_FAILED"
),
configuration = list(
unusedAccess = list(
unusedAccessAge = 123,
analysisRule = list(
exclusions = list(
list(
accountIds = list(
"string"
),
resourceTags = list(
list(
"string"
)
)
)
)
)
),
internalAccess = list(
analysisRule = list(
inclusions = list(
list(
accountIds = list(
"string"
),
resourceTypes = list(
"AWS::S3::Bucket"|"AWS::IAM::Role"|"AWS::SQS::Queue"|"AWS::Lambda::Function"|"AWS::Lambda::LayerVersion"|"AWS::KMS::Key"|"AWS::SecretsManager::Secret"|"AWS::EFS::FileSystem"|"AWS::EC2::Snapshot"|"AWS::ECR::Repository"|"AWS::RDS::DBSnapshot"|"AWS::RDS::DBClusterSnapshot"|"AWS::SNS::Topic"|"AWS::S3Express::DirectoryBucket"|"AWS::DynamoDB::Table"|"AWS::DynamoDB::Stream"|"AWS::IAM::User"
),
resourceArns = list(
"string"
)
)
)
)
)
),
managedBy = "string"
)
)
Request syntax¶
svc$get_analyzer(
analyzerName = "string"
)