Class: Aws::Bedrock::Types::VpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::VpcConfig
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
The configuration of a virtual private cloud (VPC). For more information, see Protect your data using Amazon Virtual Private Cloud and Amazon Web Services PrivateLink.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
An array of IDs for each security group in the VPC to use.
-
#subnet_ids ⇒ Array<String>
An array of IDs for each subnet in the VPC to use.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
An array of IDs for each security group in the VPC to use.
5371 5372 5373 5374 5375 5376 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 5371 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |