interface CfnEndpointAuthorizationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnEndpointAuthorizationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnEndpointAuthorizationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnEndpointAuthorizationMixinProps |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnEndpointAuthorizationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnEndpointAuthorizationMixinProps |
Properties for CfnEndpointAuthorizationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as redshift_mixins } from '@aws-cdk/mixins-preview/aws-redshift';
const cfnEndpointAuthorizationMixinProps: redshift_mixins.CfnEndpointAuthorizationMixinProps = {
account: 'account',
clusterIdentifier: 'clusterIdentifier',
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
(optional)
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
(optional)
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