Interface CfnAnalyzerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalyzerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.219Z")
@Stability(Stable)
public interface CfnAnalyzerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAnalyzer
.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalyzerProps
static final class
An implementation forCfnAnalyzerProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type represents the zone of trust for the analyzer.Allowed Values : ACCOUNT | ORGANIZATION
-
getAnalyzerName
The name of the analyzer. -
getArchiveRules
Specifies the archive rules to add for the analyzer. -
getTags
The tags to apply to the analyzer. -
builder
- Returns:
- a
CfnAnalyzerProps.Builder
ofCfnAnalyzerProps
-