VPCConnectionReference

class aws_cdk.aws_quicksight.VPCConnectionReference(*, aws_account_id, vpc_connection_arn, vpc_connection_id)

Bases: object

A reference to a VPCConnection resource.

Parameters:
  • aws_account_id (str) – The AwsAccountId of the VPCConnection resource.

  • vpc_connection_arn (str) – The ARN of the VPCConnection resource.

  • vpc_connection_id (str) – The VPCConnectionId of the VPCConnection resource.

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 import aws_quicksight as quicksight

v_pCConnection_reference = quicksight.VPCConnectionReference(
    aws_account_id="awsAccountId",
    vpc_connection_arn="vpcConnectionArn",
    vpc_connection_id="vpcConnectionId"
)

Attributes

aws_account_id

The AwsAccountId of the VPCConnection resource.

vpc_connection_arn

The ARN of the VPCConnection resource.

vpc_connection_id

The VPCConnectionId of the VPCConnection resource.