Interface CfnAnalyzer.InternalAccessConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalyzer.InternalAccessConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalyzer
@Stability(Stable)
public static interface CfnAnalyzer.InternalAccessConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the configuration of an internal access analyzer for an AWS organization or account.
This configuration determines how the analyzer evaluates internal access within your AWS environment.
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.*; InternalAccessConfigurationProperty internalAccessConfigurationProperty = InternalAccessConfigurationProperty.builder() .internalAccessAnalysisRule(InternalAccessAnalysisRuleProperty.builder() .inclusions(List.of(InternalAccessAnalysisRuleCriteriaProperty.builder() .accountIds(List.of("accountIds")) .resourceArns(List.of("resourceArns")) .resourceTypes(List.of("resourceTypes")) .build())) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalyzer.InternalAccessConfigurationProperty
static final class
An implementation forCfnAnalyzer.InternalAccessConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInternalAccessAnalysisRule
Contains information about analysis rules for the internal access analyzer.These rules determine which resources and access patterns will be analyzed.
- See Also:
-
builder
-