CfnVPCConnectionPropsMixin

class aws_cdk.mixins_preview.aws_quicksight.mixins.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.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_quicksight import mixins as quicksight_mixins

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

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

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

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)

(experimental) 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.

Stability:

experimental

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.mixins_preview.aws_quicksight import mixins as quicksight_mixins

network_interface_property = quicksight_mixins.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