interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnAccessPointPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnAccessPointPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnAccessPointPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnAccessPointPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » 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 { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const vpcConfigurationProperty: s3.CfnAccessPointPropsMixin.VpcConfigurationProperty = {
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | IVPCRef | If this field is specified, the access point will only allow connections from the specified VPC ID. |
vpcId?
Type:
string | IVPCRef
(optional)
If this field is specified, the access point will only allow connections from the specified VPC ID.

.NET
Go
Java
Python
TypeScript