CfnVpcLinkMixinProps
- class aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnVpcLinkMixinProps(*, name=None, security_group_ids=None, subnet_ids=None, tags=None)
Bases:
objectProperties for CfnVpcLinkPropsMixin.
- Parameters:
name (
Optional[str]) – The name of the VPC link.security_group_ids (
Optional[Sequence[str]]) – A list of security group IDs for the VPC link.subnet_ids (
Optional[Sequence[str]]) – A list of subnet IDs to include in the VPC link.tags (
Optional[Mapping[str,str]]) – The collection of tags. Each tag element is associated with a given resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-vpclink.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_apigatewayv2 import mixins as apigatewayv2_mixins cfn_vpc_link_mixin_props = apigatewayv2_mixins.CfnVpcLinkMixinProps( name="name", security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], tags={ "tags_key": "tags" } )
Attributes
- name
The name of the VPC link.
- security_group_ids
A list of security group IDs for the VPC link.
- subnet_ids
A list of subnet IDs to include in the VPC link.
- tags
The collection of tags.
Each tag element is associated with a given resource.