@Stability(value=Stable)
public static interface CfnAnalyzer.FilterProperty
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.*;
FilterProperty filterProperty = FilterProperty.builder()
.property("property")
// the properties below are optional
.contains(List.of("contains"))
.eq(List.of("eq"))
.exists(false)
.neq(List.of("neq"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAnalyzer.FilterProperty.Builder
A builder for
CfnAnalyzer.FilterProperty |
static class |
CfnAnalyzer.FilterProperty.Jsii$Proxy
An implementation for
CfnAnalyzer.FilterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAnalyzer.FilterProperty.Builder |
builder() |
default List<String> |
getContains()
A "contains" condition to match for the rule.
|
default List<String> |
getEq()
An "equals" condition to match for the rule.
|
default Object |
getExists()
An "exists" condition to match for the rule.
|
default List<String> |
getNeq()
A "not equal" condition to match for the rule.
|
String |
getProperty()
The property used to define the criteria in the filter for the rule.
|
@Stability(value=Stable) @NotNull String getProperty()
@Stability(value=Stable) @Nullable default List<String> getContains()
@Stability(value=Stable) @Nullable default List<String> getEq()
@Stability(value=Stable) @Nullable default Object getExists()
@Stability(value=Stable) @Nullable default List<String> getNeq()
@Stability(value=Stable) static CfnAnalyzer.FilterProperty.Builder builder()
CfnAnalyzer.FilterProperty.Builder of CfnAnalyzer.FilterPropertyCopyright © 2022. All rights reserved.