Class: Aws::ResourceExplorer2::Types::CreateIndexOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceExplorer2::Types::CreateIndexOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourceexplorer2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the new local index for the Region.
-
#created_at ⇒ Time
The date and timestamp when the index was created.
-
#state ⇒ String
Indicates the current state of the index.
Instance Attribute Details
#arn ⇒ String
The ARN of the new local index for the Region. You can reference this ARN in IAM permission policies to authorize the following operations: DeleteIndex | GetIndex | UpdateIndexType | CreateView
204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 204 class CreateIndexOutput < Struct.new( :arn, :created_at, :state) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The date and timestamp when the index was created.
204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 204 class CreateIndexOutput < Struct.new( :arn, :created_at, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
Indicates the current state of the index. You can check for changes to the state for asynchronous operations by calling the GetIndex operation.
<note markdown=“1”> The state can remain in the ‘CREATING` or `UPDATING` state for several hours as Resource Explorer discovers the information about your resources and populates the index.
</note>
204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-resourceexplorer2/types.rb', line 204 class CreateIndexOutput < Struct.new( :arn, :created_at, :state) SENSITIVE = [] include Aws::Structure end |