interface CfnEndpointAccessMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnEndpointAccessMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnEndpointAccessMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnEndpointAccessMixinProps |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnEndpointAccessMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnEndpointAccessMixinProps |
Properties for CfnEndpointAccessPropsMixin.
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 cfnEndpointAccessMixinProps: redshift_mixins.CfnEndpointAccessMixinProps = {
clusterIdentifier: 'clusterIdentifier',
endpointName: 'endpointName',
resourceOwner: 'resourceOwner',
subnetGroupName: 'subnetGroupName',
vpcSecurityGroupIds: ['vpcSecurityGroupIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The cluster identifier of the cluster associated with the endpoint. |
| endpoint | string | The name of the endpoint. |
| resource | string | The AWS account ID of the owner of the cluster. |
| subnet | string | The subnet group name where Amazon Redshift chooses to deploy the endpoint. |
| vpc | string[] | The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint. |
clusterIdentifier?
Type:
string
(optional)
The cluster identifier of the cluster associated with the endpoint.
endpointName?
Type:
string
(optional)
The name of the endpoint.
resourceOwner?
Type:
string
(optional)
The AWS account ID of the owner of the cluster.
subnetGroupName?
Type:
string
(optional)
The subnet group name where Amazon Redshift chooses to deploy the endpoint.
vpcSecurityGroupIds?
Type:
string[]
(optional)
The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

.NET
Go
Java
Python
TypeScript