interface CfnAggregatorV2Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnAggregatorV2Props |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAggregatorV2Props |
Java | software.amazon.awscdk.services.securityhub.CfnAggregatorV2Props |
Python | aws_cdk.aws_securityhub.CfnAggregatorV2Props |
TypeScript | aws-cdk-lib » aws_securityhub » CfnAggregatorV2Props |
Properties for defining a CfnAggregatorV2.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from 'aws-cdk-lib';
const cfnAggregatorV2Props: securityhub.CfnAggregatorV2Props = {
linkedRegions: ['linkedRegions'],
regionLinkingMode: 'regionLinkingMode',
// the properties below are optional
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| linked | string[] | The list of Regions that are linked to the aggregation Region. |
| region | string | Determines how Regions are linked to an Aggregator V2. |
| tags? | { [string]: string } | A list of key-value pairs to be applied to the AggregatorV2. |
linkedRegions
Type:
string[]
The list of Regions that are linked to the aggregation Region.
regionLinkingMode
Type:
string
Determines how Regions are linked to an Aggregator V2.
tags?
Type:
{ [string]: string }
(optional)
A list of key-value pairs to be applied to the AggregatorV2.

.NET
Go
Java
Python
TypeScript