Class: Aws::OpenSearchService::Types::InsightEntity

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

Overview

Specifies the entity for which to retrieve insights. An entity can be an Amazon OpenSearch Service domain or an Amazon Web Services account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The type of the entity. Possible values are Account and DomainName.

Returns:

  • (String)


5358
5359
5360
5361
5362
5363
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 5358

class InsightEntity < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the entity. For DomainName, this is the domain name. For Account, this is the Amazon Web Services account ID.

Returns:

  • (String)


5358
5359
5360
5361
5362
5363
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 5358

class InsightEntity < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end