interface CfnArchiveRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AccessAnalyzer.CfnArchiveRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaccessanalyzer#CfnArchiveRuleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.accessanalyzer.CfnArchiveRuleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_accessanalyzer.CfnArchiveRuleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_accessanalyzer » CfnArchiveRuleMixinProps |
Properties for CfnArchiveRulePropsMixin.
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 cfnArchiveRuleMixinProps: accessanalyzer.CfnArchiveRuleMixinProps = {
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
(optional)
The name of the analyzer for the archive rule.
filter?
Type:
IResolvable | { [string]: IResolvable | Filter }
(optional)
The criteria for the archive rule.
A map of filter criteria property names to their criterion values.
ruleName?
Type:
string
(optional)
The name of the archive rule.

.NET
Go
Java
Python
TypeScript