Class: Aws::CloudSearch::Types::DescribeExpressionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::DescribeExpressionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
Overview
Container for the parameters to the ‘DescribeDomains` operation. Specifies the name of the domain you want to describe. To restrict the response to particular expressions, specify the names of the expressions 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
-
#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.
-
#expression_names ⇒ Array<String>
Limits the ‘DescribeExpressions` response to the specified expressions.
Instance Attribute Details
#deployed ⇒ Boolean
Whether to display the deployed configuration (‘true`) or include any pending changes (`false`). Defaults to `false`.
818 819 820 821 822 823 824 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 818 class DescribeExpressionsRequest < Struct.new( :domain_name, :expression_names, :deployed) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The name of the domain you want to describe.
818 819 820 821 822 823 824 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 818 class DescribeExpressionsRequest < Struct.new( :domain_name, :expression_names, :deployed) SENSITIVE = [] include Aws::Structure end |
#expression_names ⇒ Array<String>
Limits the ‘DescribeExpressions` response to the specified expressions. If not specified, all expressions are shown.
818 819 820 821 822 823 824 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 818 class DescribeExpressionsRequest < Struct.new( :domain_name, :expression_names, :deployed) SENSITIVE = [] include Aws::Structure end |