EndpointAuthorizationReference

class aws_cdk.aws_redshift.EndpointAuthorizationReference(*, account, cluster_identifier)

Bases: object

A reference to a EndpointAuthorization resource.

Parameters:
  • account (str) – The Account of the EndpointAuthorization resource.

  • cluster_identifier (str) – The ClusterIdentifier of the EndpointAuthorization 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_redshift as redshift

endpoint_authorization_reference = redshift.EndpointAuthorizationReference(
    account="account",
    cluster_identifier="clusterIdentifier"
)

Attributes

account

The Account of the EndpointAuthorization resource.

cluster_identifier

The ClusterIdentifier of the EndpointAuthorization resource.