interface ArchiveRuleProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AccessAnalyzer.CfnAnalyzer.ArchiveRuleProperty |
Java | software.amazon.awscdk.services.accessanalyzer.CfnAnalyzer.ArchiveRuleProperty |
Python | aws_cdk.aws_accessanalyzer.CfnAnalyzer.ArchiveRuleProperty |
TypeScript | @aws-cdk/aws-accessanalyzer » CfnAnalyzer » ArchiveRuleProperty |
The criteria for an archive rule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as accessanalyzer from '@aws-cdk/aws-accessanalyzer';
const archiveRuleProperty: accessanalyzer.CfnAnalyzer.ArchiveRuleProperty = {
filter: [{
property: 'property',
// the properties below are optional
contains: ['contains'],
eq: ['eq'],
exists: false,
neq: ['neq'],
}],
ruleName: 'ruleName',
};
Properties
Name | Type | Description |
---|---|---|
filter | IResolvable | IResolvable | Filter [] | The criteria for the rule. |
rule | string | The name of the archive rule. |
filter
Type:
IResolvable
|
IResolvable
|
Filter
[]
The criteria for the rule.
ruleName
Type:
string
The name of the archive rule.