CfnVPCConnectionPropsMixin

class aws_cdk.cfn_property_mixins.aws_quicksight.CfnVPCConnectionPropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a new VPC connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-vpcconnection.html

CloudformationResource:

AWS::QuickSight::VPCConnection

Mixin:

true

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.cfn_property_mixins import aws_quicksight as quicksight
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_vPCConnection_props_mixin = quicksight.CfnVPCConnectionPropsMixin(quicksight.CfnVPCConnectionMixinProps(
    availability_status="availabilityStatus",
    aws_account_id="awsAccountId",
    dns_resolvers=["dnsResolvers"],
    name="name",
    role_arn="roleArn",
    security_group_ids=["securityGroupIds"],
    subnet_ids=["subnetIds"],
    tags=[cdk.CfnTag(
        key="key",
        value="value"
    )],
    vpc_connection_id="vpcConnectionId"
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::QuickSight::VPCConnection.

Parameters:
  • props (Union[CfnVPCConnectionMixinProps, Dict[str, Any]]) – L1 properties to apply.

  • strategy (Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['availabilityStatus', 'awsAccountId', 'dnsResolvers', 'name', 'roleArn', 'securityGroupIds', 'subnetIds', 'tags', 'vpcConnectionId']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

NetworkInterfaceProperty

class CfnVPCConnectionPropsMixin.NetworkInterfaceProperty(*, availability_zone=None, error_message=None, network_interface_id=None, status=None, subnet_id=None)

Bases: object

The structure that contains information about a network interface.

Parameters:
  • availability_zone (Optional[str]) – The availability zone that the network interface resides in.

  • error_message (Optional[str]) – An error message.

  • network_interface_id (Optional[str]) – The network interface ID.

  • status (Optional[str]) – The status of the network interface.

  • subnet_id (Optional[str]) – The subnet ID associated with the network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.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.cfn_property_mixins import aws_quicksight as quicksight

network_interface_property = quicksight.CfnVPCConnectionPropsMixin.NetworkInterfaceProperty(
    availability_zone="availabilityZone",
    error_message="errorMessage",
    network_interface_id="networkInterfaceId",
    status="status",
    subnet_id="subnetId"
)

Attributes

availability_zone

The availability zone that the network interface resides in.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.html#cfn-quicksight-vpcconnection-networkinterface-availabilityzone

error_message

An error message.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.html#cfn-quicksight-vpcconnection-networkinterface-errormessage

network_interface_id

The network interface ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.html#cfn-quicksight-vpcconnection-networkinterface-networkinterfaceid

status

The status of the network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.html#cfn-quicksight-vpcconnection-networkinterface-status

subnet_id

The subnet ID associated with the network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.html#cfn-quicksight-vpcconnection-networkinterface-subnetid