Interface CfnAggregatorV2Props
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAggregatorV2Props.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-16T11:43:22.805Z")
@Stability(Stable)
public interface CfnAggregatorV2Props
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.securityhub.*; CfnAggregatorV2Props cfnAggregatorV2Props = CfnAggregatorV2Props.builder() .linkedRegions(List.of("linkedRegions")) .regionLinkingMode("regionLinkingMode") // the properties below are optional .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAggregatorV2Props
static final class
An implementation forCfnAggregatorV2Props
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAggregatorV2Props.Builder
builder()
The list of Regions that are linked to the aggregation Region.Determines how Regions are linked to an Aggregator V2.getTags()
A list of key-value pairs to be applied to the AggregatorV2.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLinkedRegions
The list of Regions that are linked to the aggregation Region.- See Also:
-
getRegionLinkingMode
Determines how Regions are linked to an Aggregator V2.- See Also:
-
getTags
A list of key-value pairs to be applied to the AggregatorV2.- See Also:
-
builder
- Returns:
- a
CfnAggregatorV2Props.Builder
ofCfnAggregatorV2Props
-