@Stability(value=Stable)
public static interface CfnAnalyzer.ArchiveRuleProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
ArchiveRuleProperty archiveRuleProperty = ArchiveRuleProperty.builder()
.filter(List.of(FilterProperty.builder()
.property("property")
// the properties below are optional
.contains(List.of("contains"))
.eq(List.of("eq"))
.exists(false)
.neq(List.of("neq"))
.build()))
.ruleName("ruleName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAnalyzer.ArchiveRuleProperty.Builder
A builder for
CfnAnalyzer.ArchiveRuleProperty |
static class |
CfnAnalyzer.ArchiveRuleProperty.Jsii$Proxy
An implementation for
CfnAnalyzer.ArchiveRuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAnalyzer.ArchiveRuleProperty.Builder |
builder() |
Object |
getFilter()
The criteria for the rule.
|
String |
getRuleName()
The name of the archive rule.
|
@Stability(value=Stable) @NotNull Object getFilter()
@Stability(value=Stable) @NotNull String getRuleName()
@Stability(value=Stable) static CfnAnalyzer.ArchiveRuleProperty.Builder builder()
Copyright © 2022. All rights reserved.