Interface CfnAnalyzer.InternalAccessAnalysisRuleCriteriaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalyzer.InternalAccessAnalysisRuleCriteriaProperty.Jsii$Proxy
- Enclosing class:
CfnAnalyzer
@Stability(Stable)
public static interface CfnAnalyzer.InternalAccessAnalysisRuleCriteriaProperty
extends software.amazon.jsii.JsiiSerializable
The criteria for an analysis rule for an internal access analyzer.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.accessanalyzer.*; InternalAccessAnalysisRuleCriteriaProperty internalAccessAnalysisRuleCriteriaProperty = InternalAccessAnalysisRuleCriteriaProperty.builder() .accountIds(List.of("accountIds")) .resourceArns(List.of("resourceArns")) .resourceTypes(List.of("resourceTypes")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalyzer.InternalAccessAnalysisRuleCriteriaProperty
static final class
An implementation forCfnAnalyzer.InternalAccessAnalysisRuleCriteriaProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of AWS account IDs to apply to the internal access analysis rule criteria.A list of resource ARNs to apply to the internal access analysis rule criteria.A list of resource types to apply to the internal access analysis rule criteria.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountIds
A list of AWS account IDs to apply to the internal access analysis rule criteria.Account IDs can only be applied to the analysis rule criteria for organization-level analyzers.
- See Also:
-
getResourceArns
A list of resource ARNs to apply to the internal access analysis rule criteria.The analyzer will only generate findings for resources that match these ARNs.
- See Also:
-
getResourceTypes
A list of resource types to apply to the internal access analysis rule criteria.The analyzer will only generate findings for resources of these types. These resource types are currently supported for internal access analyzers:
AWS::S3::Bucket
AWS::RDS::DBSnapshot
AWS::RDS::DBClusterSnapshot
AWS::S3Express::DirectoryBucket
AWS::DynamoDB::Table
AWS::DynamoDB::Stream
- See Also:
-
builder
-