interface CfnAggregatorV2MixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnAggregatorV2MixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnAggregatorV2MixinProps |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnAggregatorV2MixinProps |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnAggregatorV2MixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnAggregatorV2MixinProps |
Properties for CfnAggregatorV2PropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const cfnAggregatorV2MixinProps: securityhub_mixins.CfnAggregatorV2MixinProps = {
linkedRegions: ['linkedRegions'],
regionLinkingMode: 'regionLinkingMode',
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[]
(optional)
The list of Regions that are linked to the aggregation Region.
regionLinkingMode?
Type:
string
(optional)
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