interface FilterItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AccessAnalyzer.CfnArchiveRulePropsMixin.FilterItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaccessanalyzer#CfnArchiveRulePropsMixin_FilterItemsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.accessanalyzer.CfnArchiveRulePropsMixin.FilterItemsProperty |
Python | aws_cdk.cfn_property_mixins.aws_accessanalyzer.CfnArchiveRulePropsMixin.FilterItemsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_accessanalyzer » CfnArchiveRulePropsMixin » 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/cfn-property-mixins';
const filterItemsProperty: accessanalyzer.CfnArchiveRulePropsMixin.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