interface VpcSecurityGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnEndpointAccessPropsMixin.VpcSecurityGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnEndpointAccessPropsMixin_VpcSecurityGroupProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnEndpointAccessPropsMixin.VpcSecurityGroupProperty |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnEndpointAccessPropsMixin.VpcSecurityGroupProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnEndpointAccessPropsMixin » VpcSecurityGroupProperty |
The security groups associated with the endpoint.
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 vpcSecurityGroupProperty: redshift_mixins.CfnEndpointAccessPropsMixin.VpcSecurityGroupProperty = {
status: 'status',
vpcSecurityGroupId: 'vpcSecurityGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | The status of the endpoint. |
| vpc | string | The identifier of the VPC security group. |
status?
Type:
string
(optional)
The status of the endpoint.
vpcSecurityGroupId?
Type:
string
(optional)
The identifier of the VPC security group.

.NET
Go
Java
Python
TypeScript