@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:04.686Z") @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()
`AWS::AccessAnalyzer::Analyzer.AnalyzerName`.
|
default Object |
getArchiveRules()
`AWS::AccessAnalyzer::Analyzer.ArchiveRules`.
|
default List<CfnTag> |
getTags()
`AWS::AccessAnalyzer::Analyzer.Tags`.
|
String |
getType()
`AWS::AccessAnalyzer::Analyzer.Type`.
|
@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) @NotNull String getType()
@Stability(value=Stable) static CfnAnalyzerProps.Builder builder()
CfnAnalyzerProps.Builder of CfnAnalyzerPropsCopyright © 2021. All rights reserved.