interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnAccessPointPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnAccessPointPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnAccessPointPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnAccessPointPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnAccessPointPropsMixin » VpcConfigurationProperty |
The Virtual Private Cloud (VPC) configuration for this access point.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const vpcConfigurationProperty: s3_mixins.CfnAccessPointPropsMixin.VpcConfigurationProperty = {
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | If this field is specified, the access point will only allow connections from the specified VPC ID. |
vpcId?
Type:
string
(optional)
If this field is specified, the access point will only allow connections from the specified VPC ID.

.NET
Go
Java
Python
TypeScript