interface FilterItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AccessAnalyzer.CfnArchiveRule.FilterItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaccessanalyzer#CfnArchiveRule_FilterItemsProperty |
Java | software.amazon.awscdk.services.accessanalyzer.CfnArchiveRule.FilterItemsProperty |
Python | aws_cdk.aws_accessanalyzer.CfnArchiveRule.FilterItemsProperty |
TypeScript | aws-cdk-lib » aws_accessanalyzer » CfnArchiveRule » FilterItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_accessanalyzer as accessanalyzer } from 'aws-cdk-lib';
const filterItemsProperty: accessanalyzer.CfnArchiveRule.FilterItemsProperty = {
contains: ['contains'],
eq: ['eq'],
exists: false,
neq: ['neq'],
};
Properties
| Name | Type | Description |
|---|---|---|
| contains? | string[] | |
| eq? | string[] | |
| exists? | boolean | IResolvable | |
| neq? | string[] |
contains?
Type:
string[]
(optional)
eq?
Type:
string[]
(optional)
exists?
Type:
boolean | IResolvable
(optional)
neq?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript