CfnDirectConnectGatewayAttachmentMixinProps
- class aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnDirectConnectGatewayAttachmentMixinProps(*, core_network_id=None, direct_connect_gateway_arn=None, edge_locations=None, proposed_network_function_group_change=None, proposed_segment_change=None, tags=None)
Bases:
objectProperties for CfnDirectConnectGatewayAttachmentPropsMixin.
- Parameters:
core_network_id (
Optional[str]) – The ID of a core network for the Direct Connect Gateway attachment.direct_connect_gateway_arn (
Optional[str]) – The Direct Connect gateway attachment ARN.edge_locations (
Optional[Sequence[str]]) – The Regions where the edges are located.proposed_network_function_group_change (
Union[IResolvable,ProposedNetworkFunctionGroupChangeProperty,Dict[str,Any],None]) – Describes proposed changes to a network function group.proposed_segment_change (
Union[IResolvable,ProposedSegmentChangeProperty,Dict[str,Any],None]) – Describes a proposed segment change. In some cases, the segment change must first be evaluated and accepted.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags for the attachment.
- 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.mixins_preview.aws_networkmanager import mixins as networkmanager_mixins cfn_direct_connect_gateway_attachment_mixin_props = networkmanager_mixins.CfnDirectConnectGatewayAttachmentMixinProps( core_network_id="coreNetworkId", direct_connect_gateway_arn="directConnectGatewayArn", edge_locations=["edgeLocations"], proposed_network_function_group_change=networkmanager_mixins.CfnDirectConnectGatewayAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty( attachment_policy_rule_number=123, network_function_group_name="networkFunctionGroupName", tags=[CfnTag( key="key", value="value" )] ), proposed_segment_change=networkmanager_mixins.CfnDirectConnectGatewayAttachmentPropsMixin.ProposedSegmentChangeProperty( attachment_policy_rule_number=123, segment_name="segmentName", tags=[CfnTag( key="key", value="value" )] ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- core_network_id
The ID of a core network for the Direct Connect Gateway attachment.
- direct_connect_gateway_arn
The Direct Connect gateway attachment ARN.
- edge_locations
The Regions where the edges are located.
- proposed_network_function_group_change
Describes proposed changes to a network function group.
- proposed_segment_change
Describes a proposed segment change.
In some cases, the segment change must first be evaluated and accepted.