Class: Aws::ResourceExplorer2::Types::Index

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

Overview

An index is the data store used by Amazon Web Services Resource Explorer to hold information about your Amazon Web Services resources that the service discovers. Creating an index in an Amazon Web Services Region turns on Resource Explorer and lets it discover your resources.

By default, an index is local, meaning that it contains information about resources in only the same Region as the index. However, you can promote the index of one Region in the account by calling UpdateIndexType to convert it into an aggregator index. The aggregator index receives a replicated copy of the index information from all other Regions where Resource Explorer is turned on. This allows search operations in that Region to return results from all Regions in the account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon resource name (ARN) of the index.

Returns:

  • (String)


581
582
583
584
585
586
587
# File 'gems/aws-sdk-resourceexplorer2/lib/aws-sdk-resourceexplorer2/types.rb', line 581

class Index < Struct.new(
  :arn,
  :region,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#regionString

The Amazon Web Services Region in which the index exists.

Returns:

  • (String)


581
582
583
584
585
586
587
# File 'gems/aws-sdk-resourceexplorer2/lib/aws-sdk-resourceexplorer2/types.rb', line 581

class Index < Struct.new(
  :arn,
  :region,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of index. It can be one of the following values:

  • LOCAL – The index contains information about resources from only the same Amazon Web Services Region.

  • AGGREGATOR – Resource Explorer replicates copies of the indexed information about resources in all other Amazon Web Services Regions to the aggregator index. This lets search results in the Region with the aggregator index to include resources from all Regions in the account where Resource Explorer is turned on.

Returns:

  • (String)


581
582
583
584
585
586
587
# File 'gems/aws-sdk-resourceexplorer2/lib/aws-sdk-resourceexplorer2/types.rb', line 581

class Index < Struct.new(
  :arn,
  :region,
  :type)
  SENSITIVE = []
  include Aws::Structure
end