interface CfnEndpointAuthorizationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Redshift.CfnEndpointAuthorizationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshift#CfnEndpointAuthorizationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshift.CfnEndpointAuthorizationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_redshift.CfnEndpointAuthorizationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshift » 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 { aws_redshift as redshift } from '@aws-cdk/cfn-property-mixins';
const cfnEndpointAuthorizationMixinProps: redshift.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 | IVPCRef)[] | 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 | IVPCRef)[]
(optional)
The virtual private cloud (VPC) identifiers to grant access to.

.NET
Go
Java
Python
TypeScript