CfnVpcAttachmentMixinProps

class aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnVpcAttachmentMixinProps(*, core_network_id=None, options=None, proposed_network_function_group_change=None, proposed_segment_change=None, subnet_arns=None, tags=None, vpc_arn=None)

Bases: object

Properties for CfnVpcAttachmentPropsMixin.

Parameters:
  • core_network_id (Optional[str]) – The core network ID.

  • 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.

  • subnet_arns (Optional[Sequence[str]]) – The subnet ARNs.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags associated with the VPC attachment.

  • vpc_arn (Optional[str]) – The ARN of the VPC attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html

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_vpc_attachment_mixin_props = networkmanager_mixins.CfnVpcAttachmentMixinProps(
    core_network_id="coreNetworkId",
    options=networkmanager_mixins.CfnVpcAttachmentPropsMixin.VpcOptionsProperty(
        appliance_mode_support=False,
        dns_support=False,
        ipv6_support=False,
        security_group_referencing_support=False
    ),
    proposed_network_function_group_change=networkmanager_mixins.CfnVpcAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty(
        attachment_policy_rule_number=123,
        network_function_group_name="networkFunctionGroupName",
        tags=[CfnTag(
            key="key",
            value="value"
        )]
    ),
    proposed_segment_change=networkmanager_mixins.CfnVpcAttachmentPropsMixin.ProposedSegmentChangeProperty(
        attachment_policy_rule_number=123,
        segment_name="segmentName",
        tags=[CfnTag(
            key="key",
            value="value"
        )]
    ),
    subnet_arns=["subnetArns"],
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    vpc_arn="vpcArn"
)

Attributes

core_network_id

The core network ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-corenetworkid

options

Options for creating the VPC attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-options

proposed_network_function_group_change

Describes proposed changes to a network function group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-proposednetworkfunctiongroupchange

proposed_segment_change

Describes a proposed segment change.

In some cases, the segment change must first be evaluated and accepted.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-proposedsegmentchange

subnet_arns

The subnet ARNs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-subnetarns

tags

The tags associated with the VPC attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-tags

vpc_arn

The ARN of the VPC attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-vpcattachment.html#cfn-networkmanager-vpcattachment-vpcarn