Class: Aws::OpenSearchService::Types::InsightEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::InsightEntity
- 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
-
#type ⇒ String
The type of the entity.
-
#value ⇒ String
The value of the entity.
Instance Attribute Details
#type ⇒ String
The type of the entity. Possible values are Account and
DomainName.
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 |
#value ⇒ String
The value of the entity. For DomainName, this is the domain name.
For Account, this is the Amazon Web Services account ID.
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 |