interface CfnEndpointAccessMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Redshift.CfnEndpointAccessMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshift#CfnEndpointAccessMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshift.CfnEndpointAccessMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_redshift.CfnEndpointAccessMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshift » 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 { aws_redshift as redshift } from '@aws-cdk/cfn-property-mixins';
const cfnEndpointAccessMixinProps: redshift.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 | ICluster | The subnet group name where Amazon Redshift chooses to deploy the endpoint. |
| vpc | (string | ISecurity)[] | 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 | ICluster
(optional)
The subnet group name where Amazon Redshift chooses to deploy the endpoint.
vpcSecurityGroupIds?
Type:
(string | ISecurity)[]
(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