Class: Aws::ResourceExplorer2::Types::CreateIndexInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceExplorer2::Types::CreateIndexInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourceexplorer2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:tags]
Instance Attribute Summary collapse
-
#client_token ⇒ String
This value helps ensure idempotency.
-
#tags ⇒ Hash<String,String>
The specified tags are attached only to the index created in this Amazon Web Services Region.
Instance Attribute Details
#client_token ⇒ String
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.
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 |
#tags ⇒ Hash<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.
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 |