CfnArchiveRuleMixinProps
- class aws_cdk.cfn_property_mixins.aws_accessanalyzer.CfnArchiveRuleMixinProps(*, analyzer_name=None, filter=None, rule_name=None)
Bases:
objectProperties for CfnArchiveRulePropsMixin.
- Parameters:
analyzer_name (
Optional[str]) – The name of the analyzer for the archive rule.filter (
Union[IResolvable,Mapping[str,Union[IResolvable,FilterItemsProperty,Dict[str,Any]]],None]) – The criteria for the archive rule. A map of filter criteria property names to their criterion values.rule_name (
Optional[str]) – The name of the archive rule.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_accessanalyzer as accessanalyzer cfn_archive_rule_mixin_props = accessanalyzer.CfnArchiveRuleMixinProps( analyzer_name="analyzerName", filter={ "filter_key": accessanalyzer.CfnArchiveRulePropsMixin.FilterItemsProperty( contains=["contains"], eq=["eq"], exists=False, neq=["neq"] ) }, rule_name="ruleName" )
Attributes
- analyzer_name
The name of the analyzer for the archive rule.
- filter
The criteria for the archive rule.
A map of filter criteria property names to their criterion values.
- rule_name
The name of the archive rule.