VirtualClusterReference

class aws_cdk.aws_emrcontainers.VirtualClusterReference(*, virtual_cluster_arn, virtual_cluster_id)

Bases: object

A reference to a VirtualCluster resource.

Parameters:
  • virtual_cluster_arn (str) – The ARN of the VirtualCluster resource.

  • virtual_cluster_id (str) – The Id of the VirtualCluster 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_emrcontainers as emrcontainers

virtual_cluster_reference = emrcontainers.VirtualClusterReference(
    virtual_cluster_arn="virtualClusterArn",
    virtual_cluster_id="virtualClusterId"
)

Attributes

virtual_cluster_arn

The ARN of the VirtualCluster resource.

virtual_cluster_id

The Id of the VirtualCluster resource.