Class: Aws::S3Control::Types::VpcConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::VpcConfiguration
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass VpcConfiguration data as a hash:
{
vpc_id: "VpcId", # required
}
The virtual private cloud (VPC) configuration for an access point.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#vpc_id ⇒ String
If this field is specified, this access point will only allow connections from the specified VPC ID.
Instance Attribute Details
#vpc_id ⇒ String
If this field is specified, this access point will only allow connections from the specified VPC ID.
6801 6802 6803 6804 6805 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 6801 class VpcConfiguration < Struct.new( :vpc_id) SENSITIVE = [] include Aws::Structure end |