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

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


5361
5362
5363
5364
5365
5366
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5361

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)


5361
5362
5363
5364
5365
5366
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5361

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