@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.967Z") @Stability(value=Stable) public interface CfnAnalyzerProps 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.*;
CfnAnalyzerProps cfnAnalyzerProps = CfnAnalyzerProps.builder()
.type("type")
// the properties below are optional
.analyzerName("analyzerName")
.archiveRules(List.of(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()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAnalyzerProps.Builder
A builder for
CfnAnalyzerProps |
static class |
CfnAnalyzerProps.Jsii$Proxy
An implementation for
CfnAnalyzerProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAnalyzerProps.Builder |
builder() |
default String |
getAnalyzerName()
The name of the analyzer.
|
default Object |
getArchiveRules()
Specifies the archive rules to add for the analyzer.
|
default List<CfnTag> |
getTags()
The tags to apply to the analyzer.
|
String |
getType()
The type represents the zone of trust for the analyzer.
|
@Stability(value=Stable) @NotNull String getType()
Allowed Values : ACCOUNT | ORGANIZATION
@Stability(value=Stable) @Nullable default String getAnalyzerName()
@Stability(value=Stable) @Nullable default Object getArchiveRules()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnAnalyzerProps.Builder builder()
CfnAnalyzerProps.Builder of CfnAnalyzerPropsCopyright © 2022. All rights reserved.