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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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].

[1]: docs.aws.amazon.com/bedrock/latest/userguide/usingVPC.html

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>)


7170
7171
7172
7173
7174
7175
# File 'lib/aws-sdk-bedrock/types.rb', line 7170

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>)


7170
7171
7172
7173
7174
7175
# File 'lib/aws-sdk-bedrock/types.rb', line 7170

class VpcConfig < Struct.new(
  :subnet_ids,
  :security_group_ids)
  SENSITIVE = []
  include Aws::Structure
end