Class: Aws::CloudSearch::Types::DescribeAnalysisSchemesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::DescribeAnalysisSchemesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
Overview
Container for the parameters to the ‘DescribeAnalysisSchemes` operation. Specifies the name of the domain you want to describe. To limit the response to particular analysis schemes, specify the names of the analysis schemes you want to describe. To show the active configuration and exclude any pending changes, set the `Deployed` option to `true`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analysis_scheme_names ⇒ Array<String>
The analysis schemes you want to describe.
-
#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.
Instance Attribute Details
#analysis_scheme_names ⇒ Array<String>
The analysis schemes you want to describe.
678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 678 class DescribeAnalysisSchemesRequest < Struct.new( :domain_name, :analysis_scheme_names, :deployed) SENSITIVE = [] include Aws::Structure end |
#deployed ⇒ Boolean
Whether to display the deployed configuration (‘true`) or include any pending changes (`false`). Defaults to `false`.
678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 678 class DescribeAnalysisSchemesRequest < Struct.new( :domain_name, :analysis_scheme_names, :deployed) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The name of the domain you want to describe.
678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 678 class DescribeAnalysisSchemesRequest < Struct.new( :domain_name, :analysis_scheme_names, :deployed) SENSITIVE = [] include Aws::Structure end |