Class: Aws::OSIS::Types::VpcOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb

Overview

Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

A list of security groups associated with the VPC endpoint.

Returns:

  • (Array<String>)


909
910
911
912
913
914
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 909

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

#subnet_idsArray<String>

A list of subnet IDs associated with the VPC endpoint.

Returns:

  • (Array<String>)


909
910
911
912
913
914
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 909

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