interface CfnEndpointAuthorizationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnEndpointAuthorizationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnEndpointAuthorizationProps |
Java | software.amazon.awscdk.services.redshift.CfnEndpointAuthorizationProps |
Python | aws_cdk.aws_redshift.CfnEndpointAuthorizationProps |
TypeScript | aws-cdk-lib » aws_redshift » CfnEndpointAuthorizationProps |
Properties for defining a CfnEndpointAuthorization.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_redshift as redshift } from 'aws-cdk-lib';
const cfnEndpointAuthorizationProps: redshift.CfnEndpointAuthorizationProps = {
account: 'account',
clusterIdentifier: 'clusterIdentifier',
// the properties below are optional
force: false,
vpcIds: ['vpcIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The AWS account ID of either the cluster owner (grantor) or grantee. |
| cluster | string | The cluster identifier. |
| force? | boolean | IResolvable | Indicates whether to force the revoke action. |
| vpc | string[] | The virtual private cloud (VPC) identifiers to grant access to. |
account
Type:
string
The AWS account ID of either the cluster owner (grantor) or grantee.
If Grantee parameter is true, then the Account value is of the grantor.
clusterIdentifier
Type:
string
The cluster identifier.
force?
Type:
boolean | IResolvable
(optional)
Indicates whether to force the revoke action.
If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.
vpcIds?
Type:
string[]
(optional)
The virtual private cloud (VPC) identifiers to grant access to.

.NET
Go
Java
Python
TypeScript