interface EndpointAuthorizationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Redshift.EndpointAuthorizationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsredshift#EndpointAuthorizationReference |
Java | software.amazon.awscdk.interfaces.redshift.EndpointAuthorizationReference |
Python | aws_cdk.interfaces.aws_redshift.EndpointAuthorizationReference |
TypeScript | aws-cdk-lib » interfaces » aws_redshift » EndpointAuthorizationReference |
A reference to a EndpointAuthorization resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_redshift as interfaces_aws_redshift } from 'aws-cdk-lib/interfaces';
const endpointAuthorizationReference: interfaces_aws_redshift.EndpointAuthorizationReference = {
account: 'account',
clusterIdentifier: 'clusterIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The Account of the EndpointAuthorization resource. |
| cluster | string | The ClusterIdentifier of the EndpointAuthorization resource. |
account
Type:
string
The Account of the EndpointAuthorization resource.
clusterIdentifier
Type:
string
The ClusterIdentifier of the EndpointAuthorization resource.

.NET
Go
Java
Python
TypeScript