interface S3AccessPointVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentPropsMixin_S3AccessPointVpcConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointVpcConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointVpcConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentPropsMixin » S3AccessPointVpcConfigurationProperty |
If included, Amazon S3 restricts access to this access point to requests from the specified virtual private cloud (VPC).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const s3AccessPointVpcConfigurationProperty: fsx_mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointVpcConfigurationProperty = {
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | Specifies the virtual private cloud (VPC) for the S3 access point VPC configuration, if one exists. |
vpcId?
Type:
string
(optional)
Specifies the virtual private cloud (VPC) for the S3 access point VPC configuration, if one exists.

.NET
Go
Java
Python
TypeScript