Class: Aws::Kendra::Types::IndexConfigurationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::IndexConfigurationSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
A summary of information about an index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
The Unix timestamp when the index was created.
-
#edition ⇒ String
Indicates whether the index is a enterprise edition index or a developer edition index.
-
#id ⇒ String
A unique identifier for the index.
-
#name ⇒ String
The name of the index.
-
#status ⇒ String
The current status of the index.
-
#updated_at ⇒ Time
The Unix timestamp when the index was last updated by the `UpdateIndex` operation.
Instance Attribute Details
#created_at ⇒ Time
The Unix timestamp when the index was created.
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/aws-sdk-kendra/types.rb', line 3738 class IndexConfigurationSummary < Struct.new( :name, :id, :edition, :created_at, :updated_at, :status) SENSITIVE = [] include Aws::Structure end |
#edition ⇒ String
Indicates whether the index is a enterprise edition index or a developer edition index.
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/aws-sdk-kendra/types.rb', line 3738 class IndexConfigurationSummary < Struct.new( :name, :id, :edition, :created_at, :updated_at, :status) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique identifier for the index. Use this to identify the index when you are using operations such as `Query`, `DescribeIndex`, `UpdateIndex`, and `DeleteIndex`.
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/aws-sdk-kendra/types.rb', line 3738 class IndexConfigurationSummary < Struct.new( :name, :id, :edition, :created_at, :updated_at, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the index.
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/aws-sdk-kendra/types.rb', line 3738 class IndexConfigurationSummary < Struct.new( :name, :id, :edition, :created_at, :updated_at, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the index. When the status is `ACTIVE`, the index is ready to search.
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/aws-sdk-kendra/types.rb', line 3738 class IndexConfigurationSummary < Struct.new( :name, :id, :edition, :created_at, :updated_at, :status) SENSITIVE = [] include Aws::Structure end |
#updated_at ⇒ Time
The Unix timestamp when the index was last updated by the `UpdateIndex` operation.
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/aws-sdk-kendra/types.rb', line 3738 class IndexConfigurationSummary < Struct.new( :name, :id, :edition, :created_at, :updated_at, :status) SENSITIVE = [] include Aws::Structure end |