interface S3AccessPointVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachment.S3AccessPointVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachment_S3AccessPointVpcConfigurationProperty |
Java | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachment.S3AccessPointVpcConfigurationProperty |
Python | aws_cdk.aws_fsx.CfnS3AccessPointAttachment.S3AccessPointVpcConfigurationProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnS3AccessPointAttachment » 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 { aws_fsx as fsx } from 'aws-cdk-lib';
const s3AccessPointVpcConfigurationProperty: fsx.CfnS3AccessPointAttachment.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
Specifies the virtual private cloud (VPC) for the S3 access point VPC configuration, if one exists.

.NET
Go
Java
Python
TypeScript