Interface CfnAnalyzerPropsMixin.AnalyzerConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalyzerPropsMixin.AnalyzerConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalyzerPropsMixin
@Stability(Stable)
public static interface CfnAnalyzerPropsMixin.AnalyzerConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about the configuration of an analyzer for an AWS organization or account.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.accessanalyzer.mixins.*;
AnalyzerConfigurationProperty analyzerConfigurationProperty = AnalyzerConfigurationProperty.builder()
.internalAccessConfiguration(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())
.unusedAccessConfiguration(UnusedAccessConfigurationProperty.builder()
.analysisRule(AnalysisRuleProperty.builder()
.exclusions(List.of(AnalysisRuleCriteriaProperty.builder()
.accountIds(List.of("accountIds"))
.resourceTags(List.of(List.of(CfnTag.builder()
.key("key")
.value("value")
.build())))
.build()))
.build())
.unusedAccessAge(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalyzerPropsMixin.AnalyzerConfigurationPropertystatic final classAn implementation forCfnAnalyzerPropsMixin.AnalyzerConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInternalAccessConfiguration
Specifies the configuration of an internal access analyzer for an AWS organization or account.This configuration determines how the analyzer evaluates access within your AWS environment.
Returns union: either
IResolvableorCfnAnalyzerPropsMixin.InternalAccessConfigurationProperty- See Also:
-
getUnusedAccessConfiguration
Specifies the configuration of an unused access analyzer for an AWS organization or account.Returns union: either
IResolvableorCfnAnalyzerPropsMixin.UnusedAccessConfigurationProperty- See Also:
-
builder
-