Class: Aws::ResourceExplorer2::Types::CreateIndexInput

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

Overview

Constant Summary collapse

SENSITIVE =
[:tags]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

This value helps ensure idempotency. Resource Explorer uses this value to prevent the accidental creation of duplicate versions. We recommend that you generate a [UUID-type value] to ensure the uniqueness of your index.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

[1]: wikipedia.org/wiki/Universally_unique_identifier

Returns:

  • (String)


173
174
175
176
177
178
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 173

class CreateIndexInput < Struct.new(
  :client_token,
  :tags)
  SENSITIVE = [:tags]
  include Aws::Structure
end

#tagsHash<String,String>

The specified tags are attached only to the index created in this Amazon Web Services Region. The tags aren’t attached to any of the resources listed in the index.

Returns:

  • (Hash<String,String>)


173
174
175
176
177
178
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 173

class CreateIndexInput < Struct.new(
  :client_token,
  :tags)
  SENSITIVE = [:tags]
  include Aws::Structure
end