Class: Aws::Bedrock::Types::VpcConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#security_group_idsArray<String>

An array of IDs for each security group in the VPC to use.

Returns:

  • (Array<String>)


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

#subnet_idsArray<String>

An array of IDs for each subnet in the VPC to use.

Returns:

  • (Array<String>)


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