CfnAggregatorV2Props

class aws_cdk.aws_securityhub.CfnAggregatorV2Props(*, linked_regions, region_linking_mode, tags=None)

Bases: object

Properties for defining a CfnAggregatorV2.

Parameters:
  • linked_regions (Sequence[str]) – The list of Regions that are linked to the aggregation Region.

  • region_linking_mode (str) – Determines how Regions are linked to an Aggregator V2.

  • tags (Optional[Mapping[str, str]]) – A list of key-value pairs to be applied to the AggregatorV2.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-aggregatorv2.html

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 import aws_securityhub as securityhub

cfn_aggregator_v2_props = securityhub.CfnAggregatorV2Props(
    linked_regions=["linkedRegions"],
    region_linking_mode="regionLinkingMode",

    # the properties below are optional
    tags={
        "tags_key": "tags"
    }
)

Attributes

linked_regions

The list of Regions that are linked to the aggregation Region.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-aggregatorv2.html#cfn-securityhub-aggregatorv2-linkedregions

region_linking_mode

Determines how Regions are linked to an Aggregator V2.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-aggregatorv2.html#cfn-securityhub-aggregatorv2-regionlinkingmode

tags

A list of key-value pairs to be applied to the AggregatorV2.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-aggregatorv2.html#cfn-securityhub-aggregatorv2-tags