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: