Class: Aws::CloudSearch::Types::DescribeIndexFieldsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::DescribeIndexFieldsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
Overview
When making an API call, you may pass DescribeIndexFieldsRequest data as a hash:
{
domain_name: "DomainName", # required
field_names: ["DynamicFieldName"],
deployed: false,
}
Container for the parameters to the ‘DescribeIndexFields` operation. Specifies the name of the domain you want to describe. To restrict the response to particular index fields, specify the names of the index fields you want to describe. To show the active configuration and exclude any pending changes, set the `Deployed` option to `true`.
Instance Attribute Summary collapse
-
#deployed ⇒ Boolean
Whether to display the deployed configuration (‘true`) or include any pending changes (`false`).
-
#domain_name ⇒ String
The name of the domain you want to describe.
-
#field_names ⇒ Array<String>
A list of the index fields you want to describe.
Instance Attribute Details
#deployed ⇒ Boolean
Whether to display the deployed configuration (‘true`) or include any pending changes (`false`). Defaults to `false`.
1050 1051 1052 1053 1054 1055 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1050 class DescribeIndexFieldsRequest < Struct.new( :domain_name, :field_names, :deployed) include Aws::Structure end |
#domain_name ⇒ String
The name of the domain you want to describe.
1050 1051 1052 1053 1054 1055 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1050 class DescribeIndexFieldsRequest < Struct.new( :domain_name, :field_names, :deployed) include Aws::Structure end |
#field_names ⇒ Array<String>
A list of the index fields you want to describe. If not specified, information is returned for all configured index fields.
1050 1051 1052 1053 1054 1055 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1050 class DescribeIndexFieldsRequest < Struct.new( :domain_name, :field_names, :deployed) include Aws::Structure end |