CfnVPCConnectionPropsMixin
- class aws_cdk.mixins_preview.aws_quicksight.mixins.CfnVPCConnectionPropsMixin(props, *, strategy=None)
Bases:
MixinCreates a new VPC connection.
- See:
- 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:
props (
Union[CfnVPCConnectionMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- 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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
NetworkInterfaceProperty
- class CfnVPCConnectionPropsMixin.NetworkInterfaceProperty(*, availability_zone=None, error_message=None, network_interface_id=None, status=None, subnet_id=None)
Bases:
objectThe 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:
- 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.
- error_message
An error message.
- network_interface_id
The network interface ID.
- status
The status of the network interface.
- subnet_id
The subnet ID associated with the network interface.