CfnVpcAttachmentProps
- class aws_cdk.aws_networkmanager.CfnVpcAttachmentProps(*, core_network_id, subnet_arns, vpc_arn, options=None, proposed_network_function_group_change=None, proposed_segment_change=None, tags=None)
Bases:
objectProperties for defining a
CfnVpcAttachment.- Parameters:
core_network_id (
str) – The core network ID.subnet_arns (
Sequence[str]) – The subnet ARNs.vpc_arn (
str) – The ARN of the VPC attachment.options (
Union[IResolvable,VpcOptionsProperty,Dict[str,Any],None]) – Options for creating the VPC attachment.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]]]]) – The tags associated with the VPC 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 import aws_networkmanager as networkmanager cfn_vpc_attachment_props = networkmanager.CfnVpcAttachmentProps( core_network_id="coreNetworkId", subnet_arns=["subnetArns"], vpc_arn="vpcArn", # the properties below are optional options=networkmanager.CfnVpcAttachment.VpcOptionsProperty( appliance_mode_support=False, dns_support=False, ipv6_support=False, security_group_referencing_support=False ), proposed_network_function_group_change=networkmanager.CfnVpcAttachment.ProposedNetworkFunctionGroupChangeProperty( attachment_policy_rule_number=123, network_function_group_name="networkFunctionGroupName", tags=[CfnTag( key="key", value="value" )] ), proposed_segment_change=networkmanager.CfnVpcAttachment.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 core network ID.
- options
Options for creating the VPC attachment.
- 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.
- subnet_arns
The subnet ARNs.
- tags
The tags associated with the VPC attachment.
- vpc_arn
The ARN of the VPC attachment.