interface CfnArchiveRuleProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AccessAnalyzer.CfnArchiveRuleProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaccessanalyzer#CfnArchiveRuleProps |
Java | software.amazon.awscdk.services.accessanalyzer.CfnArchiveRuleProps |
Python | aws_cdk.aws_accessanalyzer.CfnArchiveRuleProps |
TypeScript | aws-cdk-lib » aws_accessanalyzer » CfnArchiveRuleProps |
Properties for defining a CfnArchiveRule.
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 cfnArchiveRuleProps: accessanalyzer.CfnArchiveRuleProps = {
analyzerName: 'analyzerName',
filter: {
filterKey: {
contains: ['contains'],
eq: ['eq'],
exists: false,
neq: ['neq'],
},
},
ruleName: 'ruleName',
};
Properties
| Name | Type | Description |
|---|---|---|
| analyzer | string | The name of the analyzer for the archive rule. |
| filter | IResolvable | { [string]: IResolvable | Filter } | The criteria for the archive rule. |
| rule | string | The name of the archive rule. |
analyzerName
Type:
string
The name of the analyzer for the archive rule.
filter
Type:
IResolvable | { [string]: IResolvable | Filter }
The criteria for the archive rule.
A map of filter criteria property names to their criterion values.
ruleName
Type:
string
The name of the archive rule.

.NET
Go
Java
Python
TypeScript