libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudSearch

Description

Derived from API version 2013-01-01 of the AWS service descriptions, licensed under Apache 2.0.

Amazon CloudSearch Configuration Service

You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action.

The endpoint for configuration service requests is region-specific: cloudsearch.region.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see Regions and Endpoints.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2013-01-01 of the Amazon CloudSearch SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by CloudSearch.

ValidationException

_ValidationException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request was rejected because it has invalid parameters.

ResourceAlreadyExistsException

_ResourceAlreadyExistsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request was rejected because it attempted to create a resource that already exists.

BaseException

_BaseException :: AsError a => Getting (First ServiceError) a ServiceError Source #

An error occurred while processing the request.

DisabledOperationException

_DisabledOperationException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request was rejected because it attempted an operation which is not enabled.

InternalException

_InternalException :: AsError a => Getting (First ServiceError) a ServiceError Source #

An internal error occurred while processing the request. If this problem persists, report an issue from the Service Health Dashboard.

InvalidTypeException

_InvalidTypeException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request was rejected because it specified an invalid type definition.

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request was rejected because it attempted to reference a resource that does not exist.

LimitExceededException

_LimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request was rejected because a resource limit has already been met.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

DescribeAvailabilityOptions

data DescribeAvailabilityOptions Source #

Container for the parameters to the DescribeAvailabilityOptions operation. Specifies the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to true.

See: newDescribeAvailabilityOptions smart constructor.

Instances

Instances details
Eq DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Read DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Show DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Generic DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Associated Types

type Rep DescribeAvailabilityOptions :: Type -> Type #

NFData DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Hashable DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

AWSRequest DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

ToHeaders DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

ToPath DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

ToQuery DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

type Rep DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

type Rep DescribeAvailabilityOptions = D1 ('MetaData "DescribeAvailabilityOptions" "Amazonka.CloudSearch.DescribeAvailabilityOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeAvailabilityOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

newDescribeAvailabilityOptions Source #

Create a value of DescribeAvailabilityOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeAvailabilityOptions', describeAvailabilityOptions_deployed - Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

$sel:domainName:DescribeAvailabilityOptions', describeAvailabilityOptions_domainName - The name of the domain you want to describe.

data DescribeAvailabilityOptionsResponse Source #

The result of a DescribeAvailabilityOptions request. Indicates whether or not the Multi-AZ option is enabled for the domain specified in the request.

See: newDescribeAvailabilityOptionsResponse smart constructor.

Instances

Instances details
Eq DescribeAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Read DescribeAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Show DescribeAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

Generic DescribeAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

NFData DescribeAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

type Rep DescribeAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAvailabilityOptions

type Rep DescribeAvailabilityOptionsResponse = D1 ('MetaData "DescribeAvailabilityOptionsResponse" "Amazonka.CloudSearch.DescribeAvailabilityOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeAvailabilityOptionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "availabilityOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AvailabilityOptionsStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeAvailabilityOptionsResponse Source #

Create a value of DescribeAvailabilityOptionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:availabilityOptions:DescribeAvailabilityOptionsResponse', describeAvailabilityOptionsResponse_availabilityOptions - The availability options configured for the domain. Indicates whether Multi-AZ is enabled for the domain.

$sel:httpStatus:DescribeAvailabilityOptionsResponse', describeAvailabilityOptionsResponse_httpStatus - The response's http status code.

DescribeExpressions

data DescribeExpressions Source #

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.

See: newDescribeExpressions smart constructor.

Instances

Instances details
Eq DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Read DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Show DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Generic DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Associated Types

type Rep DescribeExpressions :: Type -> Type #

NFData DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Methods

rnf :: DescribeExpressions -> () #

Hashable DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

AWSRequest DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Associated Types

type AWSResponse DescribeExpressions #

ToHeaders DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

ToPath DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

ToQuery DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

type Rep DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

type Rep DescribeExpressions = D1 ('MetaData "DescribeExpressions" "Amazonka.CloudSearch.DescribeExpressions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeExpressions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "expressionNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeExpressions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

newDescribeExpressions Source #

Create a value of DescribeExpressions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeExpressions', describeExpressions_deployed - Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

$sel:expressionNames:DescribeExpressions', describeExpressions_expressionNames - Limits the DescribeExpressions response to the specified expressions. If not specified, all expressions are shown.

$sel:domainName:DescribeExpressions', describeExpressions_domainName - The name of the domain you want to describe.

data DescribeExpressionsResponse Source #

The result of a DescribeExpressions request. Contains the expressions configured for the domain specified in the request.

See: newDescribeExpressionsResponse smart constructor.

Instances

Instances details
Eq DescribeExpressionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Read DescribeExpressionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Show DescribeExpressionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Generic DescribeExpressionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

Associated Types

type Rep DescribeExpressionsResponse :: Type -> Type #

NFData DescribeExpressionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

type Rep DescribeExpressionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeExpressions

type Rep DescribeExpressionsResponse = D1 ('MetaData "DescribeExpressionsResponse" "Amazonka.CloudSearch.DescribeExpressions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeExpressionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "expressions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ExpressionStatus])))

newDescribeExpressionsResponse Source #

Create a value of DescribeExpressionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeExpressionsResponse', describeExpressionsResponse_httpStatus - The response's http status code.

$sel:expressions:DescribeExpressionsResponse', describeExpressionsResponse_expressions - The expressions configured for the domain.

DefineExpression

data DefineExpression Source #

Container for the parameters to the DefineExpression operation. Specifies the name of the domain you want to update and the expression you want to configure.

See: newDefineExpression smart constructor.

Instances

Instances details
Eq DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Read DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Show DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Generic DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Associated Types

type Rep DefineExpression :: Type -> Type #

NFData DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Methods

rnf :: DefineExpression -> () #

Hashable DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

AWSRequest DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Associated Types

type AWSResponse DefineExpression #

ToHeaders DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

ToPath DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

ToQuery DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

type Rep DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

type Rep DefineExpression = D1 ('MetaData "DefineExpression" "Amazonka.CloudSearch.DefineExpression" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineExpression'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "expression") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Expression)))
type AWSResponse DefineExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

newDefineExpression Source #

Create a value of DefineExpression with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DefineExpression', defineExpression_domainName - Undocumented member.

$sel:expression:DefineExpression', defineExpression_expression - Undocumented member.

data DefineExpressionResponse Source #

The result of a DefineExpression request. Contains the status of the newly-configured expression.

See: newDefineExpressionResponse smart constructor.

Instances

Instances details
Eq DefineExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Read DefineExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Show DefineExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Generic DefineExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

Associated Types

type Rep DefineExpressionResponse :: Type -> Type #

NFData DefineExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

type Rep DefineExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineExpression

type Rep DefineExpressionResponse = D1 ('MetaData "DefineExpressionResponse" "Amazonka.CloudSearch.DefineExpression" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineExpressionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "expression") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ExpressionStatus)))

newDefineExpressionResponse Source #

Create a value of DefineExpressionResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DefineExpressionResponse', defineExpressionResponse_httpStatus - The response's http status code.

$sel:expression:DefineExpression', defineExpressionResponse_expression - Undocumented member.

DescribeScalingParameters

data DescribeScalingParameters Source #

Container for the parameters to the DescribeScalingParameters operation. Specifies the name of the domain you want to describe.

See: newDescribeScalingParameters smart constructor.

Instances

Instances details
Eq DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Read DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Show DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Generic DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Associated Types

type Rep DescribeScalingParameters :: Type -> Type #

NFData DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Hashable DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

AWSRequest DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

ToHeaders DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

ToPath DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

ToQuery DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

type Rep DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

type Rep DescribeScalingParameters = D1 ('MetaData "DescribeScalingParameters" "Amazonka.CloudSearch.DescribeScalingParameters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeScalingParameters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

newDescribeScalingParameters Source #

Create a value of DescribeScalingParameters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DescribeScalingParameters', describeScalingParameters_domainName - Undocumented member.

data DescribeScalingParametersResponse Source #

The result of a DescribeScalingParameters request. Contains the scaling parameters configured for the domain specified in the request.

See: newDescribeScalingParametersResponse smart constructor.

Instances

Instances details
Eq DescribeScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Read DescribeScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Show DescribeScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Generic DescribeScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

Associated Types

type Rep DescribeScalingParametersResponse :: Type -> Type #

NFData DescribeScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

type Rep DescribeScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeScalingParameters

type Rep DescribeScalingParametersResponse = D1 ('MetaData "DescribeScalingParametersResponse" "Amazonka.CloudSearch.DescribeScalingParameters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeScalingParametersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "scalingParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ScalingParametersStatus)))

DescribeServiceAccessPolicies

data DescribeServiceAccessPolicies Source #

Container for the parameters to the DescribeServiceAccessPolicies operation. Specifies the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to true.

See: newDescribeServiceAccessPolicies smart constructor.

Instances

Instances details
Eq DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Read DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Show DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Generic DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Associated Types

type Rep DescribeServiceAccessPolicies :: Type -> Type #

NFData DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Hashable DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

AWSRequest DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

ToHeaders DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

ToPath DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

ToQuery DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

type Rep DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

type Rep DescribeServiceAccessPolicies = D1 ('MetaData "DescribeServiceAccessPolicies" "Amazonka.CloudSearch.DescribeServiceAccessPolicies" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeServiceAccessPolicies'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

newDescribeServiceAccessPolicies Source #

Create a value of DescribeServiceAccessPolicies with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeServiceAccessPolicies', describeServiceAccessPolicies_deployed - Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

$sel:domainName:DescribeServiceAccessPolicies', describeServiceAccessPolicies_domainName - The name of the domain you want to describe.

data DescribeServiceAccessPoliciesResponse Source #

The result of a DescribeServiceAccessPolicies request.

See: newDescribeServiceAccessPoliciesResponse smart constructor.

Instances

Instances details
Eq DescribeServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Read DescribeServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Show DescribeServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

Generic DescribeServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

NFData DescribeServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

type Rep DescribeServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeServiceAccessPolicies

type Rep DescribeServiceAccessPoliciesResponse = D1 ('MetaData "DescribeServiceAccessPoliciesResponse" "Amazonka.CloudSearch.DescribeServiceAccessPolicies" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeServiceAccessPoliciesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "accessPolicies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AccessPoliciesStatus)))

newDescribeServiceAccessPoliciesResponse Source #

Create a value of DescribeServiceAccessPoliciesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeServiceAccessPoliciesResponse', describeServiceAccessPoliciesResponse_httpStatus - The response's http status code.

$sel:accessPolicies:DescribeServiceAccessPoliciesResponse', describeServiceAccessPoliciesResponse_accessPolicies - The access rules configured for the domain specified in the request.

DescribeSuggesters

data DescribeSuggesters Source #

Container for the parameters to the DescribeSuggester operation. Specifies the name of the domain you want to describe. To restrict the response to particular suggesters, specify the names of the suggesters you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to true.

See: newDescribeSuggesters smart constructor.

Instances

Instances details
Eq DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Read DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Show DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Generic DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Associated Types

type Rep DescribeSuggesters :: Type -> Type #

NFData DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Methods

rnf :: DescribeSuggesters -> () #

Hashable DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

AWSRequest DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Associated Types

type AWSResponse DescribeSuggesters #

ToHeaders DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

ToPath DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

ToQuery DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

type Rep DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

type Rep DescribeSuggesters = D1 ('MetaData "DescribeSuggesters" "Amazonka.CloudSearch.DescribeSuggesters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeSuggesters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "suggesterNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

newDescribeSuggesters Source #

Create a value of DescribeSuggesters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeSuggesters', describeSuggesters_deployed - Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

$sel:suggesterNames:DescribeSuggesters', describeSuggesters_suggesterNames - The suggesters you want to describe.

$sel:domainName:DescribeSuggesters', describeSuggesters_domainName - The name of the domain you want to describe.

data DescribeSuggestersResponse Source #

The result of a DescribeSuggesters request.

See: newDescribeSuggestersResponse smart constructor.

Instances

Instances details
Eq DescribeSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Read DescribeSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Show DescribeSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Generic DescribeSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

Associated Types

type Rep DescribeSuggestersResponse :: Type -> Type #

NFData DescribeSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

type Rep DescribeSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeSuggesters

type Rep DescribeSuggestersResponse = D1 ('MetaData "DescribeSuggestersResponse" "Amazonka.CloudSearch.DescribeSuggesters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeSuggestersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "suggesters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [SuggesterStatus])))

newDescribeSuggestersResponse Source #

Create a value of DescribeSuggestersResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeSuggestersResponse', describeSuggestersResponse_httpStatus - The response's http status code.

$sel:suggesters:DescribeSuggestersResponse', describeSuggestersResponse_suggesters - The suggesters configured for the domain specified in the request.

UpdateAvailabilityOptions

data UpdateAvailabilityOptions Source #

Container for the parameters to the UpdateAvailabilityOptions operation. Specifies the name of the domain you want to update and the Multi-AZ availability option.

See: newUpdateAvailabilityOptions smart constructor.

Instances

Instances details
Eq UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Read UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Show UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Generic UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Associated Types

type Rep UpdateAvailabilityOptions :: Type -> Type #

NFData UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Hashable UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

AWSRequest UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

ToHeaders UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

ToPath UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

ToQuery UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

type Rep UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

type Rep UpdateAvailabilityOptions = D1 ('MetaData "UpdateAvailabilityOptions" "Amazonka.CloudSearch.UpdateAvailabilityOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateAvailabilityOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "multiAZ") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool)))
type AWSResponse UpdateAvailabilityOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

newUpdateAvailabilityOptions Source #

Create a value of UpdateAvailabilityOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:UpdateAvailabilityOptions', updateAvailabilityOptions_domainName - Undocumented member.

$sel:multiAZ:UpdateAvailabilityOptions', updateAvailabilityOptions_multiAZ - You expand an existing search domain to a second Availability Zone by setting the Multi-AZ option to true. Similarly, you can turn off the Multi-AZ option to downgrade the domain to a single Availability Zone by setting the Multi-AZ option to false.

data UpdateAvailabilityOptionsResponse Source #

The result of a UpdateAvailabilityOptions request. Contains the status of the domain's availability options.

See: newUpdateAvailabilityOptionsResponse smart constructor.

Instances

Instances details
Eq UpdateAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Read UpdateAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Show UpdateAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Generic UpdateAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

Associated Types

type Rep UpdateAvailabilityOptionsResponse :: Type -> Type #

NFData UpdateAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

type Rep UpdateAvailabilityOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateAvailabilityOptions

type Rep UpdateAvailabilityOptionsResponse = D1 ('MetaData "UpdateAvailabilityOptionsResponse" "Amazonka.CloudSearch.UpdateAvailabilityOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateAvailabilityOptionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "availabilityOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AvailabilityOptionsStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateAvailabilityOptionsResponse Source #

Create a value of UpdateAvailabilityOptionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:availabilityOptions:UpdateAvailabilityOptionsResponse', updateAvailabilityOptionsResponse_availabilityOptions - The newly-configured availability options. Indicates whether Multi-AZ is enabled for the domain.

$sel:httpStatus:UpdateAvailabilityOptionsResponse', updateAvailabilityOptionsResponse_httpStatus - The response's http status code.

DeleteExpression

data DeleteExpression Source #

Container for the parameters to the DeleteExpression operation. Specifies the name of the domain you want to update and the name of the expression you want to delete.

See: newDeleteExpression smart constructor.

Instances

Instances details
Eq DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Read DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Show DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Generic DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Associated Types

type Rep DeleteExpression :: Type -> Type #

NFData DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Methods

rnf :: DeleteExpression -> () #

Hashable DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

AWSRequest DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Associated Types

type AWSResponse DeleteExpression #

ToHeaders DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

ToPath DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

ToQuery DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

type Rep DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

type Rep DeleteExpression = D1 ('MetaData "DeleteExpression" "Amazonka.CloudSearch.DeleteExpression" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteExpression'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "expressionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteExpression Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

newDeleteExpression Source #

Create a value of DeleteExpression with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DeleteExpression', deleteExpression_domainName - Undocumented member.

$sel:expressionName:DeleteExpression', deleteExpression_expressionName - The name of the Expression to delete.

data DeleteExpressionResponse Source #

The result of a DeleteExpression request. Specifies the expression being deleted.

See: newDeleteExpressionResponse smart constructor.

Instances

Instances details
Eq DeleteExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Read DeleteExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Show DeleteExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Generic DeleteExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

Associated Types

type Rep DeleteExpressionResponse :: Type -> Type #

NFData DeleteExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

type Rep DeleteExpressionResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteExpression

type Rep DeleteExpressionResponse = D1 ('MetaData "DeleteExpressionResponse" "Amazonka.CloudSearch.DeleteExpression" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteExpressionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "expression") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ExpressionStatus)))

newDeleteExpressionResponse Source #

Create a value of DeleteExpressionResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DeleteExpressionResponse', deleteExpressionResponse_httpStatus - The response's http status code.

$sel:expression:DeleteExpressionResponse', deleteExpressionResponse_expression - The status of the expression being deleted.

ListDomainNames

data ListDomainNames Source #

See: newListDomainNames smart constructor.

Constructors

ListDomainNames' 

Instances

Instances details
Eq ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Read ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Show ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Generic ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Associated Types

type Rep ListDomainNames :: Type -> Type #

NFData ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Methods

rnf :: ListDomainNames -> () #

Hashable ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

AWSRequest ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Associated Types

type AWSResponse ListDomainNames #

ToHeaders ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

ToPath ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

ToQuery ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

type Rep ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

type Rep ListDomainNames = D1 ('MetaData "ListDomainNames" "Amazonka.CloudSearch.ListDomainNames" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "ListDomainNames'" 'PrefixI 'False) (U1 :: Type -> Type))
type AWSResponse ListDomainNames Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

newListDomainNames :: ListDomainNames Source #

Create a value of ListDomainNames with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

data ListDomainNamesResponse Source #

The result of a ListDomainNames request. Contains a list of the domains owned by an account.

See: newListDomainNamesResponse smart constructor.

Instances

Instances details
Eq ListDomainNamesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Read ListDomainNamesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Show ListDomainNamesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Generic ListDomainNamesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Associated Types

type Rep ListDomainNamesResponse :: Type -> Type #

NFData ListDomainNamesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

Methods

rnf :: ListDomainNamesResponse -> () #

type Rep ListDomainNamesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.ListDomainNames

type Rep ListDomainNamesResponse = D1 ('MetaData "ListDomainNamesResponse" "Amazonka.CloudSearch.ListDomainNames" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "ListDomainNamesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newListDomainNamesResponse Source #

Create a value of ListDomainNamesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainNames:ListDomainNamesResponse', listDomainNamesResponse_domainNames - The names of the search domains owned by an account.

$sel:httpStatus:ListDomainNamesResponse', listDomainNamesResponse_httpStatus - The response's http status code.

DefineSuggester

data DefineSuggester Source #

Container for the parameters to the DefineSuggester operation. Specifies the name of the domain you want to update and the suggester configuration.

See: newDefineSuggester smart constructor.

Instances

Instances details
Eq DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Read DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Show DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Generic DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Associated Types

type Rep DefineSuggester :: Type -> Type #

NFData DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Methods

rnf :: DefineSuggester -> () #

Hashable DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

AWSRequest DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Associated Types

type AWSResponse DefineSuggester #

ToHeaders DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

ToPath DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

ToQuery DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

type Rep DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

type Rep DefineSuggester = D1 ('MetaData "DefineSuggester" "Amazonka.CloudSearch.DefineSuggester" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineSuggester'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "suggester") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Suggester)))
type AWSResponse DefineSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

newDefineSuggester Source #

Create a value of DefineSuggester with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DefineSuggester', defineSuggester_domainName - Undocumented member.

$sel:suggester:DefineSuggester', defineSuggester_suggester - Undocumented member.

data DefineSuggesterResponse Source #

The result of a DefineSuggester request. Contains the status of the newly-configured suggester.

See: newDefineSuggesterResponse smart constructor.

Instances

Instances details
Eq DefineSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Read DefineSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Show DefineSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Generic DefineSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Associated Types

type Rep DefineSuggesterResponse :: Type -> Type #

NFData DefineSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

Methods

rnf :: DefineSuggesterResponse -> () #

type Rep DefineSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineSuggester

type Rep DefineSuggesterResponse = D1 ('MetaData "DefineSuggesterResponse" "Amazonka.CloudSearch.DefineSuggester" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineSuggesterResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "suggester") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 SuggesterStatus)))

newDefineSuggesterResponse Source #

Create a value of DefineSuggesterResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DefineSuggesterResponse', defineSuggesterResponse_httpStatus - The response's http status code.

$sel:suggester:DefineSuggester', defineSuggesterResponse_suggester - Undocumented member.

DescribeDomains

data DescribeDomains Source #

Container for the parameters to the DescribeDomains operation. By default shows the status of all domains. To restrict the response to particular domains, specify the names of the domains you want to describe.

See: newDescribeDomains smart constructor.

Constructors

DescribeDomains' (Maybe [Text]) 

Instances

Instances details
Eq DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Read DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Show DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Generic DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Associated Types

type Rep DescribeDomains :: Type -> Type #

NFData DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Methods

rnf :: DescribeDomains -> () #

Hashable DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

AWSRequest DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Associated Types

type AWSResponse DescribeDomains #

ToHeaders DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

ToPath DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

ToQuery DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

type Rep DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

type Rep DescribeDomains = D1 ('MetaData "DescribeDomains" "Amazonka.CloudSearch.DescribeDomains" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeDomains'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))))
type AWSResponse DescribeDomains Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

newDescribeDomains :: DescribeDomains Source #

Create a value of DescribeDomains with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainNames:DescribeDomains', describeDomains_domainNames - The names of the domains you want to include in the response.

data DescribeDomainsResponse Source #

The result of a DescribeDomains request. Contains the status of the domains specified in the request or all domains owned by the account.

See: newDescribeDomainsResponse smart constructor.

Instances

Instances details
Eq DescribeDomainsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Read DescribeDomainsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Show DescribeDomainsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Generic DescribeDomainsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Associated Types

type Rep DescribeDomainsResponse :: Type -> Type #

NFData DescribeDomainsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

Methods

rnf :: DescribeDomainsResponse -> () #

type Rep DescribeDomainsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomains

type Rep DescribeDomainsResponse = D1 ('MetaData "DescribeDomainsResponse" "Amazonka.CloudSearch.DescribeDomains" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeDomainsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "domainStatusList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [DomainStatus])))

newDescribeDomainsResponse Source #

Create a value of DescribeDomainsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeDomainsResponse', describeDomainsResponse_httpStatus - The response's http status code.

$sel:domainStatusList:DescribeDomainsResponse', describeDomainsResponse_domainStatusList - Undocumented member.

DeleteAnalysisScheme

data DeleteAnalysisScheme Source #

Container for the parameters to the DeleteAnalysisScheme operation. Specifies the name of the domain you want to update and the analysis scheme you want to delete.

See: newDeleteAnalysisScheme smart constructor.

Instances

Instances details
Eq DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Read DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Show DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Generic DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Associated Types

type Rep DeleteAnalysisScheme :: Type -> Type #

NFData DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Methods

rnf :: DeleteAnalysisScheme -> () #

Hashable DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

AWSRequest DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Associated Types

type AWSResponse DeleteAnalysisScheme #

ToHeaders DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

ToPath DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

ToQuery DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

type Rep DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

type Rep DeleteAnalysisScheme = D1 ('MetaData "DeleteAnalysisScheme" "Amazonka.CloudSearch.DeleteAnalysisScheme" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteAnalysisScheme'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "analysisSchemeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

newDeleteAnalysisScheme Source #

Create a value of DeleteAnalysisScheme with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DeleteAnalysisScheme', deleteAnalysisScheme_domainName - Undocumented member.

$sel:analysisSchemeName:DeleteAnalysisScheme', deleteAnalysisScheme_analysisSchemeName - The name of the analysis scheme you want to delete.

data DeleteAnalysisSchemeResponse Source #

The result of a DeleteAnalysisScheme request. Contains the status of the deleted analysis scheme.

See: newDeleteAnalysisSchemeResponse smart constructor.

Instances

Instances details
Eq DeleteAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Read DeleteAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Show DeleteAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Generic DeleteAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

Associated Types

type Rep DeleteAnalysisSchemeResponse :: Type -> Type #

NFData DeleteAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

type Rep DeleteAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteAnalysisScheme

type Rep DeleteAnalysisSchemeResponse = D1 ('MetaData "DeleteAnalysisSchemeResponse" "Amazonka.CloudSearch.DeleteAnalysisScheme" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteAnalysisSchemeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "analysisScheme") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AnalysisSchemeStatus)))

newDeleteAnalysisSchemeResponse Source #

Create a value of DeleteAnalysisSchemeResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DeleteAnalysisSchemeResponse', deleteAnalysisSchemeResponse_httpStatus - The response's http status code.

$sel:analysisScheme:DeleteAnalysisSchemeResponse', deleteAnalysisSchemeResponse_analysisScheme - The status of the analysis scheme being deleted.

DescribeDomainEndpointOptions

data DescribeDomainEndpointOptions Source #

Container for the parameters to the DescribeDomainEndpointOptions operation. Specify the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to true.

See: newDescribeDomainEndpointOptions smart constructor.

Instances

Instances details
Eq DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Read DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Show DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Generic DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Associated Types

type Rep DescribeDomainEndpointOptions :: Type -> Type #

NFData DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Hashable DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

AWSRequest DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

ToHeaders DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

ToPath DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

ToQuery DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

type Rep DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

type Rep DescribeDomainEndpointOptions = D1 ('MetaData "DescribeDomainEndpointOptions" "Amazonka.CloudSearch.DescribeDomainEndpointOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeDomainEndpointOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

newDescribeDomainEndpointOptions Source #

Create a value of DescribeDomainEndpointOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeDomainEndpointOptions', describeDomainEndpointOptions_deployed - Whether to retrieve the latest configuration (which might be in a Processing state) or the current, active configuration. Defaults to false.

$sel:domainName:DescribeDomainEndpointOptions', describeDomainEndpointOptions_domainName - A string that represents the name of a domain.

data DescribeDomainEndpointOptionsResponse Source #

The result of a DescribeDomainEndpointOptions request. Contains the status and configuration of a search domain's endpoint options.

See: newDescribeDomainEndpointOptionsResponse smart constructor.

Instances

Instances details
Eq DescribeDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Read DescribeDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Show DescribeDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

Generic DescribeDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

NFData DescribeDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

type Rep DescribeDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeDomainEndpointOptions

type Rep DescribeDomainEndpointOptionsResponse = D1 ('MetaData "DescribeDomainEndpointOptionsResponse" "Amazonka.CloudSearch.DescribeDomainEndpointOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeDomainEndpointOptionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainEndpointOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DomainEndpointOptionsStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeDomainEndpointOptionsResponse Source #

Create a value of DescribeDomainEndpointOptionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainEndpointOptions:DescribeDomainEndpointOptionsResponse', describeDomainEndpointOptionsResponse_domainEndpointOptions - The status and configuration of a search domain's endpoint options.

$sel:httpStatus:DescribeDomainEndpointOptionsResponse', describeDomainEndpointOptionsResponse_httpStatus - The response's http status code.

DescribeAnalysisSchemes

data DescribeAnalysisSchemes Source #

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.

See: newDescribeAnalysisSchemes smart constructor.

Instances

Instances details
Eq DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Read DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Show DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Generic DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Associated Types

type Rep DescribeAnalysisSchemes :: Type -> Type #

NFData DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Methods

rnf :: DescribeAnalysisSchemes -> () #

Hashable DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

AWSRequest DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

ToHeaders DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

ToPath DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

ToQuery DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

type Rep DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

type Rep DescribeAnalysisSchemes = D1 ('MetaData "DescribeAnalysisSchemes" "Amazonka.CloudSearch.DescribeAnalysisSchemes" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeAnalysisSchemes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "analysisSchemeNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeAnalysisSchemes Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

newDescribeAnalysisSchemes Source #

Create a value of DescribeAnalysisSchemes with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeAnalysisSchemes', describeAnalysisSchemes_deployed - Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

$sel:analysisSchemeNames:DescribeAnalysisSchemes', describeAnalysisSchemes_analysisSchemeNames - The analysis schemes you want to describe.

$sel:domainName:DescribeAnalysisSchemes', describeAnalysisSchemes_domainName - The name of the domain you want to describe.

data DescribeAnalysisSchemesResponse Source #

The result of a DescribeAnalysisSchemes request. Contains the analysis schemes configured for the domain specified in the request.

See: newDescribeAnalysisSchemesResponse smart constructor.

Instances

Instances details
Eq DescribeAnalysisSchemesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Read DescribeAnalysisSchemesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Show DescribeAnalysisSchemesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Generic DescribeAnalysisSchemesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

Associated Types

type Rep DescribeAnalysisSchemesResponse :: Type -> Type #

NFData DescribeAnalysisSchemesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

type Rep DescribeAnalysisSchemesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeAnalysisSchemes

type Rep DescribeAnalysisSchemesResponse = D1 ('MetaData "DescribeAnalysisSchemesResponse" "Amazonka.CloudSearch.DescribeAnalysisSchemes" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeAnalysisSchemesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "analysisSchemes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [AnalysisSchemeStatus])))

newDescribeAnalysisSchemesResponse Source #

Create a value of DescribeAnalysisSchemesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeAnalysisSchemesResponse', describeAnalysisSchemesResponse_httpStatus - The response's http status code.

$sel:analysisSchemes:DescribeAnalysisSchemesResponse', describeAnalysisSchemesResponse_analysisSchemes - The analysis scheme descriptions.

CreateDomain

data CreateDomain Source #

Container for the parameters to the CreateDomain operation. Specifies a name for the new search domain.

See: newCreateDomain smart constructor.

Constructors

CreateDomain' Text 

Instances

Instances details
Eq CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Read CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Show CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Generic CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Associated Types

type Rep CreateDomain :: Type -> Type #

NFData CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Methods

rnf :: CreateDomain -> () #

Hashable CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

AWSRequest CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Associated Types

type AWSResponse CreateDomain #

ToHeaders CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

ToPath CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

ToQuery CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

type Rep CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

type Rep CreateDomain = D1 ('MetaData "CreateDomain" "Amazonka.CloudSearch.CreateDomain" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "CreateDomain'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse CreateDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

newCreateDomain Source #

Create a value of CreateDomain with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:CreateDomain', createDomain_domainName - A name for the domain you are creating. Allowed characters are a-z (lower-case letters), 0-9, and hyphen (-). Domain names must start with a letter or number and be at least 3 and no more than 28 characters long.

data CreateDomainResponse Source #

The result of a CreateDomainRequest. Contains the status of a newly created domain.

See: newCreateDomainResponse smart constructor.

Instances

Instances details
Eq CreateDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Read CreateDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Show CreateDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Generic CreateDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Associated Types

type Rep CreateDomainResponse :: Type -> Type #

NFData CreateDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

Methods

rnf :: CreateDomainResponse -> () #

type Rep CreateDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.CreateDomain

type Rep CreateDomainResponse = D1 ('MetaData "CreateDomainResponse" "Amazonka.CloudSearch.CreateDomain" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "CreateDomainResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DomainStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateDomainResponse Source #

Create a value of CreateDomainResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainStatus:CreateDomainResponse', createDomainResponse_domainStatus - Undocumented member.

$sel:httpStatus:CreateDomainResponse', createDomainResponse_httpStatus - The response's http status code.

UpdateDomainEndpointOptions

data UpdateDomainEndpointOptions Source #

Container for the parameters to the UpdateDomainEndpointOptions operation. Specifies the name of the domain you want to update and the domain endpoint options.

See: newUpdateDomainEndpointOptions smart constructor.

Instances

Instances details
Eq UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Read UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Show UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Generic UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Associated Types

type Rep UpdateDomainEndpointOptions :: Type -> Type #

NFData UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Hashable UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

AWSRequest UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

ToHeaders UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

ToPath UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

ToQuery UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

type Rep UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

type Rep UpdateDomainEndpointOptions = D1 ('MetaData "UpdateDomainEndpointOptions" "Amazonka.CloudSearch.UpdateDomainEndpointOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateDomainEndpointOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "domainEndpointOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DomainEndpointOptions)))
type AWSResponse UpdateDomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

newUpdateDomainEndpointOptions Source #

Create a value of UpdateDomainEndpointOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:UpdateDomainEndpointOptions', updateDomainEndpointOptions_domainName - A string that represents the name of a domain.

$sel:domainEndpointOptions:UpdateDomainEndpointOptions', updateDomainEndpointOptions_domainEndpointOptions - Whether to require that all requests to the domain arrive over HTTPS. We recommend Policy-Min-TLS-1-2-2019-07 for TLSSecurityPolicy. For compatibility with older clients, the default is Policy-Min-TLS-1-0-2019-07.

data UpdateDomainEndpointOptionsResponse Source #

The result of a UpdateDomainEndpointOptions request. Contains the configuration and status of the domain's endpoint options.

See: newUpdateDomainEndpointOptionsResponse smart constructor.

Instances

Instances details
Eq UpdateDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Read UpdateDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Show UpdateDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

Generic UpdateDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

NFData UpdateDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

type Rep UpdateDomainEndpointOptionsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateDomainEndpointOptions

type Rep UpdateDomainEndpointOptionsResponse = D1 ('MetaData "UpdateDomainEndpointOptionsResponse" "Amazonka.CloudSearch.UpdateDomainEndpointOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateDomainEndpointOptionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainEndpointOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DomainEndpointOptionsStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateDomainEndpointOptionsResponse Source #

Create a value of UpdateDomainEndpointOptionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainEndpointOptions:UpdateDomainEndpointOptions', updateDomainEndpointOptionsResponse_domainEndpointOptions - The newly-configured domain endpoint options.

$sel:httpStatus:UpdateDomainEndpointOptionsResponse', updateDomainEndpointOptionsResponse_httpStatus - The response's http status code.

DescribeIndexFields

data DescribeIndexFields Source #

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.

See: newDescribeIndexFields smart constructor.

Instances

Instances details
Eq DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Read DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Show DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Generic DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Associated Types

type Rep DescribeIndexFields :: Type -> Type #

NFData DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Methods

rnf :: DescribeIndexFields -> () #

Hashable DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

AWSRequest DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Associated Types

type AWSResponse DescribeIndexFields #

ToHeaders DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

ToPath DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

ToQuery DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

type Rep DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

type Rep DescribeIndexFields = D1 ('MetaData "DescribeIndexFields" "Amazonka.CloudSearch.DescribeIndexFields" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeIndexFields'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "fieldNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeIndexFields Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

newDescribeIndexFields Source #

Create a value of DescribeIndexFields with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployed:DescribeIndexFields', describeIndexFields_deployed - Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

$sel:fieldNames:DescribeIndexFields', describeIndexFields_fieldNames - A list of the index fields you want to describe. If not specified, information is returned for all configured index fields.

$sel:domainName:DescribeIndexFields', describeIndexFields_domainName - The name of the domain you want to describe.

data DescribeIndexFieldsResponse Source #

The result of a DescribeIndexFields request. Contains the index fields configured for the domain specified in the request.

See: newDescribeIndexFieldsResponse smart constructor.

Instances

Instances details
Eq DescribeIndexFieldsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Read DescribeIndexFieldsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Show DescribeIndexFieldsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Generic DescribeIndexFieldsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

Associated Types

type Rep DescribeIndexFieldsResponse :: Type -> Type #

NFData DescribeIndexFieldsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

type Rep DescribeIndexFieldsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DescribeIndexFields

type Rep DescribeIndexFieldsResponse = D1 ('MetaData "DescribeIndexFieldsResponse" "Amazonka.CloudSearch.DescribeIndexFields" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DescribeIndexFieldsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "indexFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [IndexFieldStatus])))

newDescribeIndexFieldsResponse Source #

Create a value of DescribeIndexFieldsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeIndexFieldsResponse', describeIndexFieldsResponse_httpStatus - The response's http status code.

$sel:indexFields:DescribeIndexFieldsResponse', describeIndexFieldsResponse_indexFields - The index fields configured for the domain.

DeleteSuggester

data DeleteSuggester Source #

Container for the parameters to the DeleteSuggester operation. Specifies the name of the domain you want to update and name of the suggester you want to delete.

See: newDeleteSuggester smart constructor.

Constructors

DeleteSuggester' Text Text 

Instances

Instances details
Eq DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Read DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Show DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Generic DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Associated Types

type Rep DeleteSuggester :: Type -> Type #

NFData DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Methods

rnf :: DeleteSuggester -> () #

Hashable DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

AWSRequest DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Associated Types

type AWSResponse DeleteSuggester #

ToHeaders DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

ToPath DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

ToQuery DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

type Rep DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

type Rep DeleteSuggester = D1 ('MetaData "DeleteSuggester" "Amazonka.CloudSearch.DeleteSuggester" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteSuggester'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "suggesterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteSuggester Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

newDeleteSuggester Source #

Create a value of DeleteSuggester with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DeleteSuggester', deleteSuggester_domainName - Undocumented member.

$sel:suggesterName:DeleteSuggester', deleteSuggester_suggesterName - Specifies the name of the suggester you want to delete.

data DeleteSuggesterResponse Source #

The result of a DeleteSuggester request. Contains the status of the deleted suggester.

See: newDeleteSuggesterResponse smart constructor.

Instances

Instances details
Eq DeleteSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Read DeleteSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Show DeleteSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Generic DeleteSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Associated Types

type Rep DeleteSuggesterResponse :: Type -> Type #

NFData DeleteSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

Methods

rnf :: DeleteSuggesterResponse -> () #

type Rep DeleteSuggesterResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteSuggester

type Rep DeleteSuggesterResponse = D1 ('MetaData "DeleteSuggesterResponse" "Amazonka.CloudSearch.DeleteSuggester" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteSuggesterResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "suggester") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 SuggesterStatus)))

newDeleteSuggesterResponse Source #

Create a value of DeleteSuggesterResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DeleteSuggesterResponse', deleteSuggesterResponse_httpStatus - The response's http status code.

$sel:suggester:DeleteSuggesterResponse', deleteSuggesterResponse_suggester - The status of the suggester being deleted.

DefineAnalysisScheme

data DefineAnalysisScheme Source #

Container for the parameters to the DefineAnalysisScheme operation. Specifies the name of the domain you want to update and the analysis scheme configuration.

See: newDefineAnalysisScheme smart constructor.

Instances

Instances details
Eq DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Read DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Show DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Generic DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Associated Types

type Rep DefineAnalysisScheme :: Type -> Type #

NFData DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Methods

rnf :: DefineAnalysisScheme -> () #

Hashable DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

AWSRequest DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Associated Types

type AWSResponse DefineAnalysisScheme #

ToHeaders DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

ToPath DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

ToQuery DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

type Rep DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

type Rep DefineAnalysisScheme = D1 ('MetaData "DefineAnalysisScheme" "Amazonka.CloudSearch.DefineAnalysisScheme" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineAnalysisScheme'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "analysisScheme") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AnalysisScheme)))
type AWSResponse DefineAnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

newDefineAnalysisScheme Source #

Create a value of DefineAnalysisScheme with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DefineAnalysisScheme', defineAnalysisScheme_domainName - Undocumented member.

$sel:analysisScheme:DefineAnalysisScheme', defineAnalysisScheme_analysisScheme - Undocumented member.

data DefineAnalysisSchemeResponse Source #

The result of a DefineAnalysisScheme request. Contains the status of the newly-configured analysis scheme.

See: newDefineAnalysisSchemeResponse smart constructor.

Instances

Instances details
Eq DefineAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Read DefineAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Show DefineAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Generic DefineAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

Associated Types

type Rep DefineAnalysisSchemeResponse :: Type -> Type #

NFData DefineAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

type Rep DefineAnalysisSchemeResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineAnalysisScheme

type Rep DefineAnalysisSchemeResponse = D1 ('MetaData "DefineAnalysisSchemeResponse" "Amazonka.CloudSearch.DefineAnalysisScheme" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineAnalysisSchemeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "analysisScheme") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AnalysisSchemeStatus)))

newDefineAnalysisSchemeResponse Source #

Create a value of DefineAnalysisSchemeResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DefineAnalysisSchemeResponse', defineAnalysisSchemeResponse_httpStatus - The response's http status code.

$sel:analysisScheme:DefineAnalysisScheme', defineAnalysisSchemeResponse_analysisScheme - Undocumented member.

IndexDocuments

data IndexDocuments Source #

Container for the parameters to the IndexDocuments operation. Specifies the name of the domain you want to re-index.

See: newIndexDocuments smart constructor.

Constructors

IndexDocuments' Text 

Instances

Instances details
Eq IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Read IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Show IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Generic IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Associated Types

type Rep IndexDocuments :: Type -> Type #

NFData IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Methods

rnf :: IndexDocuments -> () #

Hashable IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

AWSRequest IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Associated Types

type AWSResponse IndexDocuments #

ToHeaders IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

ToPath IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

ToQuery IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

type Rep IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

type Rep IndexDocuments = D1 ('MetaData "IndexDocuments" "Amazonka.CloudSearch.IndexDocuments" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IndexDocuments'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse IndexDocuments Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

newIndexDocuments Source #

Create a value of IndexDocuments with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:IndexDocuments', indexDocuments_domainName - Undocumented member.

data IndexDocumentsResponse Source #

The result of an IndexDocuments request. Contains the status of the indexing operation, including the fields being indexed.

See: newIndexDocumentsResponse smart constructor.

Instances

Instances details
Eq IndexDocumentsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Read IndexDocumentsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Show IndexDocumentsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Generic IndexDocumentsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Associated Types

type Rep IndexDocumentsResponse :: Type -> Type #

NFData IndexDocumentsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

Methods

rnf :: IndexDocumentsResponse -> () #

type Rep IndexDocumentsResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.IndexDocuments

type Rep IndexDocumentsResponse = D1 ('MetaData "IndexDocumentsResponse" "Amazonka.CloudSearch.IndexDocuments" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IndexDocumentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fieldNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newIndexDocumentsResponse Source #

Create a value of IndexDocumentsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:fieldNames:IndexDocumentsResponse', indexDocumentsResponse_fieldNames - The names of the fields that are currently being indexed.

$sel:httpStatus:IndexDocumentsResponse', indexDocumentsResponse_httpStatus - The response's http status code.

DeleteIndexField

data DeleteIndexField Source #

Container for the parameters to the DeleteIndexField operation. Specifies the name of the domain you want to update and the name of the index field you want to delete.

See: newDeleteIndexField smart constructor.

Instances

Instances details
Eq DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Read DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Show DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Generic DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Associated Types

type Rep DeleteIndexField :: Type -> Type #

NFData DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Methods

rnf :: DeleteIndexField -> () #

Hashable DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

AWSRequest DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Associated Types

type AWSResponse DeleteIndexField #

ToHeaders DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

ToPath DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

ToQuery DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

type Rep DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

type Rep DeleteIndexField = D1 ('MetaData "DeleteIndexField" "Amazonka.CloudSearch.DeleteIndexField" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteIndexField'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "indexFieldName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

newDeleteIndexField Source #

Create a value of DeleteIndexField with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DeleteIndexField', deleteIndexField_domainName - Undocumented member.

$sel:indexFieldName:DeleteIndexField', deleteIndexField_indexFieldName - The name of the index field your want to remove from the domain's indexing options.

data DeleteIndexFieldResponse Source #

The result of a DeleteIndexField request.

See: newDeleteIndexFieldResponse smart constructor.

Instances

Instances details
Eq DeleteIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Read DeleteIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Show DeleteIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Generic DeleteIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

Associated Types

type Rep DeleteIndexFieldResponse :: Type -> Type #

NFData DeleteIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

type Rep DeleteIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteIndexField

type Rep DeleteIndexFieldResponse = D1 ('MetaData "DeleteIndexFieldResponse" "Amazonka.CloudSearch.DeleteIndexField" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteIndexFieldResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "indexField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 IndexFieldStatus)))

newDeleteIndexFieldResponse Source #

Create a value of DeleteIndexFieldResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DeleteIndexFieldResponse', deleteIndexFieldResponse_httpStatus - The response's http status code.

$sel:indexField:DeleteIndexFieldResponse', deleteIndexFieldResponse_indexField - The status of the index field being deleted.

UpdateServiceAccessPolicies

data UpdateServiceAccessPolicies Source #

Container for the parameters to the UpdateServiceAccessPolicies operation. Specifies the name of the domain you want to update and the access rules you want to configure.

See: newUpdateServiceAccessPolicies smart constructor.

Instances

Instances details
Eq UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Read UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Show UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Generic UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Associated Types

type Rep UpdateServiceAccessPolicies :: Type -> Type #

NFData UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Hashable UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

AWSRequest UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

ToHeaders UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

ToPath UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

ToQuery UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

type Rep UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

type Rep UpdateServiceAccessPolicies = D1 ('MetaData "UpdateServiceAccessPolicies" "Amazonka.CloudSearch.UpdateServiceAccessPolicies" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateServiceAccessPolicies'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "accessPolicies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse UpdateServiceAccessPolicies Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

newUpdateServiceAccessPolicies Source #

Create a value of UpdateServiceAccessPolicies with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:UpdateServiceAccessPolicies', updateServiceAccessPolicies_domainName - Undocumented member.

$sel:accessPolicies:UpdateServiceAccessPolicies', updateServiceAccessPolicies_accessPolicies - The access rules you want to configure. These rules replace any existing rules.

data UpdateServiceAccessPoliciesResponse Source #

The result of an UpdateServiceAccessPolicies request. Contains the new access policies.

See: newUpdateServiceAccessPoliciesResponse smart constructor.

Instances

Instances details
Eq UpdateServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Read UpdateServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Show UpdateServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

Generic UpdateServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

NFData UpdateServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

type Rep UpdateServiceAccessPoliciesResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateServiceAccessPolicies

type Rep UpdateServiceAccessPoliciesResponse = D1 ('MetaData "UpdateServiceAccessPoliciesResponse" "Amazonka.CloudSearch.UpdateServiceAccessPolicies" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateServiceAccessPoliciesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "accessPolicies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AccessPoliciesStatus)))

newUpdateServiceAccessPoliciesResponse Source #

Create a value of UpdateServiceAccessPoliciesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:UpdateServiceAccessPoliciesResponse', updateServiceAccessPoliciesResponse_httpStatus - The response's http status code.

$sel:accessPolicies:UpdateServiceAccessPolicies', updateServiceAccessPoliciesResponse_accessPolicies - The access rules configured for the domain.

UpdateScalingParameters

data UpdateScalingParameters Source #

Container for the parameters to the UpdateScalingParameters operation. Specifies the name of the domain you want to update and the scaling parameters you want to configure.

See: newUpdateScalingParameters smart constructor.

Instances

Instances details
Eq UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Read UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Show UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Generic UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Associated Types

type Rep UpdateScalingParameters :: Type -> Type #

NFData UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Methods

rnf :: UpdateScalingParameters -> () #

Hashable UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

AWSRequest UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

ToHeaders UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

ToPath UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

ToQuery UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

type Rep UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

type Rep UpdateScalingParameters = D1 ('MetaData "UpdateScalingParameters" "Amazonka.CloudSearch.UpdateScalingParameters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateScalingParameters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "scalingParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ScalingParameters)))
type AWSResponse UpdateScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

newUpdateScalingParameters Source #

Create a value of UpdateScalingParameters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:UpdateScalingParameters', updateScalingParameters_domainName - Undocumented member.

$sel:scalingParameters:UpdateScalingParameters', updateScalingParameters_scalingParameters - Undocumented member.

data UpdateScalingParametersResponse Source #

The result of a UpdateScalingParameters request. Contains the status of the newly-configured scaling parameters.

See: newUpdateScalingParametersResponse smart constructor.

Instances

Instances details
Eq UpdateScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Read UpdateScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Show UpdateScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Generic UpdateScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

Associated Types

type Rep UpdateScalingParametersResponse :: Type -> Type #

NFData UpdateScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

type Rep UpdateScalingParametersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.UpdateScalingParameters

type Rep UpdateScalingParametersResponse = D1 ('MetaData "UpdateScalingParametersResponse" "Amazonka.CloudSearch.UpdateScalingParameters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "UpdateScalingParametersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "scalingParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ScalingParametersStatus)))

newUpdateScalingParametersResponse Source #

Create a value of UpdateScalingParametersResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:UpdateScalingParametersResponse', updateScalingParametersResponse_httpStatus - The response's http status code.

$sel:scalingParameters:UpdateScalingParameters', updateScalingParametersResponse_scalingParameters - Undocumented member.

BuildSuggesters

data BuildSuggesters Source #

Container for the parameters to the BuildSuggester operation. Specifies the name of the domain you want to update.

See: newBuildSuggesters smart constructor.

Constructors

BuildSuggesters' Text 

Instances

Instances details
Eq BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Read BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Show BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Generic BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Associated Types

type Rep BuildSuggesters :: Type -> Type #

NFData BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Methods

rnf :: BuildSuggesters -> () #

Hashable BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

AWSRequest BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Associated Types

type AWSResponse BuildSuggesters #

ToHeaders BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

ToPath BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

ToQuery BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

type Rep BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

type Rep BuildSuggesters = D1 ('MetaData "BuildSuggesters" "Amazonka.CloudSearch.BuildSuggesters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "BuildSuggesters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse BuildSuggesters Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

newBuildSuggesters Source #

Create a value of BuildSuggesters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:BuildSuggesters', buildSuggesters_domainName - Undocumented member.

data BuildSuggestersResponse Source #

The result of a BuildSuggester request. Contains a list of the fields used for suggestions.

See: newBuildSuggestersResponse smart constructor.

Instances

Instances details
Eq BuildSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Read BuildSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Show BuildSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Generic BuildSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Associated Types

type Rep BuildSuggestersResponse :: Type -> Type #

NFData BuildSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

Methods

rnf :: BuildSuggestersResponse -> () #

type Rep BuildSuggestersResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.BuildSuggesters

type Rep BuildSuggestersResponse = D1 ('MetaData "BuildSuggestersResponse" "Amazonka.CloudSearch.BuildSuggesters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "BuildSuggestersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fieldNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newBuildSuggestersResponse Source #

Create a value of BuildSuggestersResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:fieldNames:BuildSuggestersResponse', buildSuggestersResponse_fieldNames - Undocumented member.

$sel:httpStatus:BuildSuggestersResponse', buildSuggestersResponse_httpStatus - The response's http status code.

DeleteDomain

data DeleteDomain Source #

Container for the parameters to the DeleteDomain operation. Specifies the name of the domain you want to delete.

See: newDeleteDomain smart constructor.

Constructors

DeleteDomain' Text 

Instances

Instances details
Eq DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Read DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Show DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Generic DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Associated Types

type Rep DeleteDomain :: Type -> Type #

NFData DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Methods

rnf :: DeleteDomain -> () #

Hashable DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

AWSRequest DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Associated Types

type AWSResponse DeleteDomain #

ToHeaders DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

ToPath DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

ToQuery DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

type Rep DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

type Rep DeleteDomain = D1 ('MetaData "DeleteDomain" "Amazonka.CloudSearch.DeleteDomain" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteDomain'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteDomain Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

newDeleteDomain Source #

Create a value of DeleteDomain with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DeleteDomain', deleteDomain_domainName - The name of the domain you want to permanently delete.

data DeleteDomainResponse Source #

The result of a DeleteDomain request. Contains the status of a newly deleted domain, or no status if the domain has already been completely deleted.

See: newDeleteDomainResponse smart constructor.

Instances

Instances details
Eq DeleteDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Read DeleteDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Show DeleteDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Generic DeleteDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Associated Types

type Rep DeleteDomainResponse :: Type -> Type #

NFData DeleteDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

Methods

rnf :: DeleteDomainResponse -> () #

type Rep DeleteDomainResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DeleteDomain

type Rep DeleteDomainResponse = D1 ('MetaData "DeleteDomainResponse" "Amazonka.CloudSearch.DeleteDomain" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DeleteDomainResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DomainStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteDomainResponse Source #

Create a value of DeleteDomainResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainStatus:DeleteDomainResponse', deleteDomainResponse_domainStatus - Undocumented member.

$sel:httpStatus:DeleteDomainResponse', deleteDomainResponse_httpStatus - The response's http status code.

DefineIndexField

data DefineIndexField Source #

Container for the parameters to the DefineIndexField operation. Specifies the name of the domain you want to update and the index field configuration.

See: newDefineIndexField smart constructor.

Instances

Instances details
Eq DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Read DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Show DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Generic DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Associated Types

type Rep DefineIndexField :: Type -> Type #

NFData DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Methods

rnf :: DefineIndexField -> () #

Hashable DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

AWSRequest DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Associated Types

type AWSResponse DefineIndexField #

ToHeaders DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

ToPath DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

ToQuery DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

type Rep DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

type Rep DefineIndexField = D1 ('MetaData "DefineIndexField" "Amazonka.CloudSearch.DefineIndexField" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineIndexField'" 'PrefixI 'True) (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "indexField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 IndexField)))
type AWSResponse DefineIndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

newDefineIndexField Source #

Create a value of DefineIndexField with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:domainName:DefineIndexField', defineIndexField_domainName - Undocumented member.

$sel:indexField:DefineIndexField', defineIndexField_indexField - The index field and field options you want to configure.

data DefineIndexFieldResponse Source #

The result of a DefineIndexField request. Contains the status of the newly-configured index field.

See: newDefineIndexFieldResponse smart constructor.

Instances

Instances details
Eq DefineIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Read DefineIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Show DefineIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Generic DefineIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

Associated Types

type Rep DefineIndexFieldResponse :: Type -> Type #

NFData DefineIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

type Rep DefineIndexFieldResponse Source # 
Instance details

Defined in Amazonka.CloudSearch.DefineIndexField

type Rep DefineIndexFieldResponse = D1 ('MetaData "DefineIndexFieldResponse" "Amazonka.CloudSearch.DefineIndexField" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DefineIndexFieldResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "indexField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 IndexFieldStatus)))

newDefineIndexFieldResponse Source #

Create a value of DefineIndexFieldResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DefineIndexFieldResponse', defineIndexFieldResponse_httpStatus - The response's http status code.

$sel:indexField:DefineIndexField', defineIndexFieldResponse_indexField - Undocumented member.

Types

AlgorithmicStemming

newtype AlgorithmicStemming Source #

Instances

Instances details
Eq AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

Ord AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

Read AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

Show AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

Generic AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

Associated Types

type Rep AlgorithmicStemming :: Type -> Type #

NFData AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

Methods

rnf :: AlgorithmicStemming -> () #

Hashable AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToJSON AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToJSONKey AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

FromJSON AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

FromJSONKey AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToLog AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToHeader AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToQuery AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

FromXML AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToXML AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToByteString AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

FromText AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

ToText AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

type Rep AlgorithmicStemming Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AlgorithmicStemming

type Rep AlgorithmicStemming = D1 ('MetaData "AlgorithmicStemming" "Amazonka.CloudSearch.Types.AlgorithmicStemming" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "AlgorithmicStemming'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromAlgorithmicStemming") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

AnalysisSchemeLanguage

newtype AnalysisSchemeLanguage Source #

An IETF RFC 4646 language code or mul for multiple languages.

Bundled Patterns

pattern AnalysisSchemeLanguage_Ar :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Bg :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Ca :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Cs :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Da :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_De :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_El :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_En :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Es :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Eu :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Fa :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Fi :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Fr :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Ga :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Gl :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_He :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Hi :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Hu :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Hy :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Id :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_It :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Ja :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Ko :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Lv :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Mul :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Nl :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_No :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Pt :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Ro :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Ru :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Sv :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Th :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Tr :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Zh_Hans :: AnalysisSchemeLanguage 
pattern AnalysisSchemeLanguage_Zh_Hant :: AnalysisSchemeLanguage 

Instances

Instances details
Eq AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

Ord AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

Read AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

Show AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

Generic AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

Associated Types

type Rep AnalysisSchemeLanguage :: Type -> Type #

NFData AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

Methods

rnf :: AnalysisSchemeLanguage -> () #

Hashable AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToJSON AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToJSONKey AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

FromJSON AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

FromJSONKey AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToLog AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToHeader AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToQuery AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

FromXML AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToXML AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToByteString AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

FromText AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

ToText AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

type Rep AnalysisSchemeLanguage Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeLanguage

type Rep AnalysisSchemeLanguage = D1 ('MetaData "AnalysisSchemeLanguage" "Amazonka.CloudSearch.Types.AnalysisSchemeLanguage" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "AnalysisSchemeLanguage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromAnalysisSchemeLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

IndexFieldType

newtype IndexFieldType Source #

The type of field. The valid options for a field depend on the field type. For more information about the supported field types, see Configuring Index Fields in the Amazon CloudSearch Developer Guide.

Constructors

IndexFieldType' 

Instances

Instances details
Eq IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Ord IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Read IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Show IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Generic IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Associated Types

type Rep IndexFieldType :: Type -> Type #

NFData IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Methods

rnf :: IndexFieldType -> () #

Hashable IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToJSON IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToJSONKey IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

FromJSON IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

FromJSONKey IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToLog IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToHeader IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToQuery IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

FromXML IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToXML IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

Methods

toXML :: IndexFieldType -> XML #

ToByteString IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

FromText IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

ToText IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

type Rep IndexFieldType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldType

type Rep IndexFieldType = D1 ('MetaData "IndexFieldType" "Amazonka.CloudSearch.Types.IndexFieldType" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "IndexFieldType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromIndexFieldType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

OptionState

newtype OptionState Source #

The state of processing a change to an option. One of:

  • RequiresIndexDocuments: The option's latest value will not be deployed until IndexDocuments has been called and indexing is complete.
  • Processing: The option's latest value is in the process of being activated.
  • Active: The option's latest value is fully deployed.
  • FailedToValidate: The option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.

Constructors

OptionState' 

Instances

Instances details
Eq OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Ord OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Read OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Show OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Generic OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Associated Types

type Rep OptionState :: Type -> Type #

NFData OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Methods

rnf :: OptionState -> () #

Hashable OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToJSON OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToJSONKey OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

FromJSON OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

FromJSONKey OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToLog OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToHeader OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToQuery OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

FromXML OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToXML OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Methods

toXML :: OptionState -> XML #

ToByteString OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

FromText OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

ToText OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

Methods

toText :: OptionState -> Text #

type Rep OptionState Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionState

type Rep OptionState = D1 ('MetaData "OptionState" "Amazonka.CloudSearch.Types.OptionState" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "OptionState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromOptionState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

PartitionInstanceType

newtype PartitionInstanceType Source #

The instance type (such as search.m1.small) on which an index partition is hosted.

Instances

Instances details
Eq PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

Ord PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

Read PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

Show PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

Generic PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

Associated Types

type Rep PartitionInstanceType :: Type -> Type #

NFData PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

Methods

rnf :: PartitionInstanceType -> () #

Hashable PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToJSON PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToJSONKey PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

FromJSON PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

FromJSONKey PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToLog PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToHeader PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToQuery PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

FromXML PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToXML PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToByteString PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

FromText PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

ToText PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

type Rep PartitionInstanceType Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.PartitionInstanceType

type Rep PartitionInstanceType = D1 ('MetaData "PartitionInstanceType" "Amazonka.CloudSearch.Types.PartitionInstanceType" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "PartitionInstanceType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromPartitionInstanceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

SuggesterFuzzyMatching

newtype SuggesterFuzzyMatching Source #

Instances

Instances details
Eq SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

Ord SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

Read SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

Show SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

Generic SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

Associated Types

type Rep SuggesterFuzzyMatching :: Type -> Type #

NFData SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

Methods

rnf :: SuggesterFuzzyMatching -> () #

Hashable SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToJSON SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToJSONKey SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

FromJSON SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

FromJSONKey SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToLog SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToHeader SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToQuery SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

FromXML SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToXML SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToByteString SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

FromText SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

ToText SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

type Rep SuggesterFuzzyMatching Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterFuzzyMatching

type Rep SuggesterFuzzyMatching = D1 ('MetaData "SuggesterFuzzyMatching" "Amazonka.CloudSearch.Types.SuggesterFuzzyMatching" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "SuggesterFuzzyMatching'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromSuggesterFuzzyMatching") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TLSSecurityPolicy

newtype TLSSecurityPolicy Source #

The minimum required TLS version.

Instances

Instances details
Eq TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

Ord TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

Read TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

Show TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

Generic TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

Associated Types

type Rep TLSSecurityPolicy :: Type -> Type #

NFData TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

Methods

rnf :: TLSSecurityPolicy -> () #

Hashable TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToJSON TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToJSONKey TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

FromJSON TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

FromJSONKey TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToLog TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToHeader TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToQuery TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

FromXML TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToXML TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToByteString TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

FromText TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

ToText TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

type Rep TLSSecurityPolicy Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TLSSecurityPolicy

type Rep TLSSecurityPolicy = D1 ('MetaData "TLSSecurityPolicy" "Amazonka.CloudSearch.Types.TLSSecurityPolicy" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'True) (C1 ('MetaCons "TLSSecurityPolicy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTLSSecurityPolicy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

AccessPoliciesStatus

data AccessPoliciesStatus Source #

The configured access rules for the domain's document and search endpoints, and the current status of those rules.

See: newAccessPoliciesStatus smart constructor.

Instances

Instances details
Eq AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

Read AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

Show AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

Generic AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

Associated Types

type Rep AccessPoliciesStatus :: Type -> Type #

NFData AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

Methods

rnf :: AccessPoliciesStatus -> () #

Hashable AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

FromXML AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

type Rep AccessPoliciesStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AccessPoliciesStatus

type Rep AccessPoliciesStatus = D1 ('MetaData "AccessPoliciesStatus" "Amazonka.CloudSearch.Types.AccessPoliciesStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "AccessPoliciesStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newAccessPoliciesStatus Source #

Create a value of AccessPoliciesStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:AccessPoliciesStatus', accessPoliciesStatus_options - Undocumented member.

$sel:status:AccessPoliciesStatus', accessPoliciesStatus_status - Undocumented member.

AnalysisOptions

data AnalysisOptions Source #

Synonyms, stopwords, and stemming options for an analysis scheme. Includes tokenization dictionary for Japanese.

See: newAnalysisOptions smart constructor.

Instances

Instances details
Eq AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

Read AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

Show AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

Generic AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

Associated Types

type Rep AnalysisOptions :: Type -> Type #

NFData AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

Methods

rnf :: AnalysisOptions -> () #

Hashable AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

ToQuery AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

FromXML AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

type Rep AnalysisOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisOptions

type Rep AnalysisOptions = D1 ('MetaData "AnalysisOptions" "Amazonka.CloudSearch.Types.AnalysisOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "AnalysisOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "algorithmicStemming") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AlgorithmicStemming)) :*: S1 ('MetaSel ('Just "stopwords") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "japaneseTokenizationDictionary") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "synonyms") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "stemmingDictionary") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newAnalysisOptions :: AnalysisOptions Source #

Create a value of AnalysisOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:algorithmicStemming:AnalysisOptions', analysisOptions_algorithmicStemming - The level of algorithmic stemming to perform: none, minimal, light, or full. The available levels vary depending on the language. For more information, see Language Specific Text Processing Settings in the Amazon CloudSearch Developer Guide

$sel:stopwords:AnalysisOptions', analysisOptions_stopwords - A JSON array of terms to ignore during indexing and searching. For example, ["a", "an", "the", "of"]. The stopwords dictionary must explicitly list each word you want to ignore. Wildcards and regular expressions are not supported.

$sel:japaneseTokenizationDictionary:AnalysisOptions', analysisOptions_japaneseTokenizationDictionary - A JSON array that contains a collection of terms, tokens, readings and part of speech for Japanese Tokenizaiton. The Japanese tokenization dictionary enables you to override the default tokenization for selected terms. This is only valid for Japanese language fields.

$sel:synonyms:AnalysisOptions', analysisOptions_synonyms - A JSON object that defines synonym groups and aliases. A synonym group is an array of arrays, where each sub-array is a group of terms where each term in the group is considered a synonym of every other term in the group. The aliases value is an object that contains a collection of string:value pairs where the string specifies a term and the array of values specifies each of the aliases for that term. An alias is considered a synonym of the specified term, but the term is not considered a synonym of the alias. For more information about specifying synonyms, see Synonyms in the Amazon CloudSearch Developer Guide.

$sel:stemmingDictionary:AnalysisOptions', analysisOptions_stemmingDictionary - A JSON object that contains a collection of string:value pairs that each map a term to its stem. For example, {"term1": "stem1", "term2": "stem2", "term3": "stem3"}. The stemming dictionary is applied in addition to any algorithmic stemming. This enables you to override the results of the algorithmic stemming to correct specific cases of overstemming or understemming. The maximum size of a stemming dictionary is 500 KB.

AnalysisScheme

data AnalysisScheme Source #

Configuration information for an analysis scheme. Each analysis scheme has a unique name and specifies the language of the text to be processed. The following options can be configured for an analysis scheme: Synonyms, Stopwords, StemmingDictionary, JapaneseTokenizationDictionary and AlgorithmicStemming.

See: newAnalysisScheme smart constructor.

Instances

Instances details
Eq AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

Read AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

Show AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

Generic AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

Associated Types

type Rep AnalysisScheme :: Type -> Type #

NFData AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

Methods

rnf :: AnalysisScheme -> () #

Hashable AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

ToQuery AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

FromXML AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

type Rep AnalysisScheme Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisScheme

type Rep AnalysisScheme = D1 ('MetaData "AnalysisScheme" "Amazonka.CloudSearch.Types.AnalysisScheme" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "AnalysisScheme'" 'PrefixI 'True) (S1 ('MetaSel ('Just "analysisOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AnalysisOptions)) :*: (S1 ('MetaSel ('Just "analysisSchemeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "analysisSchemeLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AnalysisSchemeLanguage))))

newAnalysisScheme Source #

Create a value of AnalysisScheme with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:analysisOptions:AnalysisScheme', analysisScheme_analysisOptions - Undocumented member.

$sel:analysisSchemeName:AnalysisScheme', analysisScheme_analysisSchemeName - Undocumented member.

$sel:analysisSchemeLanguage:AnalysisScheme', analysisScheme_analysisSchemeLanguage - Undocumented member.

AnalysisSchemeStatus

data AnalysisSchemeStatus Source #

The status and configuration of an AnalysisScheme.

See: newAnalysisSchemeStatus smart constructor.

Instances

Instances details
Eq AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

Read AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

Show AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

Generic AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

Associated Types

type Rep AnalysisSchemeStatus :: Type -> Type #

NFData AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

Methods

rnf :: AnalysisSchemeStatus -> () #

Hashable AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

FromXML AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

type Rep AnalysisSchemeStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AnalysisSchemeStatus

type Rep AnalysisSchemeStatus = D1 ('MetaData "AnalysisSchemeStatus" "Amazonka.CloudSearch.Types.AnalysisSchemeStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "AnalysisSchemeStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AnalysisScheme) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newAnalysisSchemeStatus Source #

Create a value of AnalysisSchemeStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:AnalysisSchemeStatus', analysisSchemeStatus_options - Undocumented member.

$sel:status:AnalysisSchemeStatus', analysisSchemeStatus_status - Undocumented member.

AvailabilityOptionsStatus

data AvailabilityOptionsStatus Source #

The status and configuration of the domain's availability options.

See: newAvailabilityOptionsStatus smart constructor.

Instances

Instances details
Eq AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

Read AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

Show AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

Generic AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

Associated Types

type Rep AvailabilityOptionsStatus :: Type -> Type #

NFData AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

Hashable AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

FromXML AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

type Rep AvailabilityOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.AvailabilityOptionsStatus

type Rep AvailabilityOptionsStatus = D1 ('MetaData "AvailabilityOptionsStatus" "Amazonka.CloudSearch.Types.AvailabilityOptionsStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "AvailabilityOptionsStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newAvailabilityOptionsStatus Source #

Create a value of AvailabilityOptionsStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:AvailabilityOptionsStatus', availabilityOptionsStatus_options - The availability options configured for the domain.

$sel:status:AvailabilityOptionsStatus', availabilityOptionsStatus_status - Undocumented member.

DateArrayOptions

data DateArrayOptions Source #

Options for a field that contains an array of dates. Present if IndexFieldType specifies the field is of type date-array. All options are enabled by default.

See: newDateArrayOptions smart constructor.

Instances

Instances details
Eq DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

Read DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

Show DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

Generic DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

Associated Types

type Rep DateArrayOptions :: Type -> Type #

NFData DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

Methods

rnf :: DateArrayOptions -> () #

Hashable DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

ToQuery DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

FromXML DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

type Rep DateArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateArrayOptions

type Rep DateArrayOptions = D1 ('MetaData "DateArrayOptions" "Amazonka.CloudSearch.Types.DateArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DateArrayOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newDateArrayOptions :: DateArrayOptions Source #

Create a value of DateArrayOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceFields:DateArrayOptions', dateArrayOptions_sourceFields - A list of source fields to map to the field.

$sel:returnEnabled:DateArrayOptions', dateArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:DateArrayOptions', dateArrayOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:DateArrayOptions', dateArrayOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:defaultValue:DateArrayOptions', dateArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

DateOptions

data DateOptions Source #

Options for a date field. Dates and times are specified in UTC (Coordinated Universal Time) according to IETF RFC3339: yyyy-mm-ddT00:00:00Z. Present if IndexFieldType specifies the field is of type date. All options are enabled by default.

See: newDateOptions smart constructor.

Instances

Instances details
Eq DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

Read DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

Show DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

Generic DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

Associated Types

type Rep DateOptions :: Type -> Type #

NFData DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

Methods

rnf :: DateOptions -> () #

Hashable DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

ToQuery DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

FromXML DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

type Rep DateOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DateOptions

type Rep DateOptions = D1 ('MetaData "DateOptions" "Amazonka.CloudSearch.Types.DateOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DateOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "sortEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newDateOptions :: DateOptions Source #

Create a value of DateOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceField:DateOptions', dateOptions_sourceField - Undocumented member.

$sel:returnEnabled:DateOptions', dateOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:DateOptions', dateOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:DateOptions', dateOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:sortEnabled:DateOptions', dateOptions_sortEnabled - Whether the field can be used to sort the search results.

$sel:defaultValue:DateOptions', dateOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

DocumentSuggesterOptions

data DocumentSuggesterOptions Source #

Options for a search suggester.

See: newDocumentSuggesterOptions smart constructor.

Instances

Instances details
Eq DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

Read DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

Show DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

Generic DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

Associated Types

type Rep DocumentSuggesterOptions :: Type -> Type #

NFData DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

Hashable DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

ToQuery DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

FromXML DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

type Rep DocumentSuggesterOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DocumentSuggesterOptions

type Rep DocumentSuggesterOptions = D1 ('MetaData "DocumentSuggesterOptions" "Amazonka.CloudSearch.Types.DocumentSuggesterOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DocumentSuggesterOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "sortExpression") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "fuzzyMatching") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SuggesterFuzzyMatching)) :*: S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDocumentSuggesterOptions Source #

Create a value of DocumentSuggesterOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sortExpression:DocumentSuggesterOptions', documentSuggesterOptions_sortExpression - An expression that computes a score for each suggestion to control how they are sorted. The scores are rounded to the nearest integer, with a floor of 0 and a ceiling of 2^31-1. A document's relevance score is not computed for suggestions, so sort expressions cannot reference the _score value. To sort suggestions using a numeric field or existing expression, simply specify the name of the field or expression. If no expression is configured for the suggester, the suggestions are sorted with the closest matches listed first.

$sel:fuzzyMatching:DocumentSuggesterOptions', documentSuggesterOptions_fuzzyMatching - The level of fuzziness allowed when suggesting matches for a string: none, low, or high. With none, the specified string is treated as an exact prefix. With low, suggestions must differ from the specified string by no more than one character. With high, suggestions can differ by up to two characters. The default is none.

$sel:sourceField:DocumentSuggesterOptions', documentSuggesterOptions_sourceField - The name of the index field you want to use for suggestions.

DomainEndpointOptions

data DomainEndpointOptions Source #

The domain's endpoint options.

See: newDomainEndpointOptions smart constructor.

Instances

Instances details
Eq DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

Read DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

Show DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

Generic DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

Associated Types

type Rep DomainEndpointOptions :: Type -> Type #

NFData DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

Methods

rnf :: DomainEndpointOptions -> () #

Hashable DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

ToQuery DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

FromXML DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

type Rep DomainEndpointOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptions

type Rep DomainEndpointOptions = D1 ('MetaData "DomainEndpointOptions" "Amazonka.CloudSearch.Types.DomainEndpointOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DomainEndpointOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "enforceHTTPS") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "tLSSecurityPolicy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TLSSecurityPolicy))))

newDomainEndpointOptions :: DomainEndpointOptions Source #

Create a value of DomainEndpointOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:enforceHTTPS:DomainEndpointOptions', domainEndpointOptions_enforceHTTPS - Whether the domain is HTTPS only enabled.

$sel:tLSSecurityPolicy:DomainEndpointOptions', domainEndpointOptions_tLSSecurityPolicy - The minimum required TLS version

DomainEndpointOptionsStatus

data DomainEndpointOptionsStatus Source #

The configuration and status of the domain's endpoint options.

See: newDomainEndpointOptionsStatus smart constructor.

Instances

Instances details
Eq DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

Read DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

Show DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

Generic DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

Associated Types

type Rep DomainEndpointOptionsStatus :: Type -> Type #

NFData DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

Hashable DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

FromXML DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

type Rep DomainEndpointOptionsStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus

type Rep DomainEndpointOptionsStatus = D1 ('MetaData "DomainEndpointOptionsStatus" "Amazonka.CloudSearch.Types.DomainEndpointOptionsStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DomainEndpointOptionsStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DomainEndpointOptions) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newDomainEndpointOptionsStatus Source #

Create a value of DomainEndpointOptionsStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:DomainEndpointOptionsStatus', domainEndpointOptionsStatus_options - The domain endpoint options configured for the domain.

$sel:status:DomainEndpointOptionsStatus', domainEndpointOptionsStatus_status - The status of the configured domain endpoint options.

DomainStatus

data DomainStatus Source #

The current status of the search domain.

See: newDomainStatus smart constructor.

Instances

Instances details
Eq DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

Read DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

Show DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

Generic DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

Associated Types

type Rep DomainStatus :: Type -> Type #

NFData DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

Methods

rnf :: DomainStatus -> () #

Hashable DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

FromXML DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

type Rep DomainStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DomainStatus

type Rep DomainStatus = D1 ('MetaData "DomainStatus" "Amazonka.CloudSearch.Types.DomainStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DomainStatus'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "searchInstanceCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "searchInstanceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "docService") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceEndpoint)))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "searchService") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceEndpoint))))) :*: ((S1 ('MetaSel ('Just "limits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Limits)) :*: (S1 ('MetaSel ('Just "searchPartitionCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "deleted") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: ((S1 ('MetaSel ('Just "processing") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "domainId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "requiresIndexDocuments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))))))

newDomainStatus Source #

Create a value of DomainStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:searchInstanceCount:DomainStatus', domainStatus_searchInstanceCount - The number of search instances that are available to process search requests.

$sel:searchInstanceType:DomainStatus', domainStatus_searchInstanceType - The instance type that is being used to process search requests.

$sel:docService:DomainStatus', domainStatus_docService - The service endpoint for updating documents in a search domain.

$sel:arn:DomainStatus', domainStatus_arn - Undocumented member.

$sel:created:DomainStatus', domainStatus_created - True if the search domain is created. It can take several minutes to initialize a domain when CreateDomain is called. Newly created search domains are returned from DescribeDomains with a false value for Created until domain creation is complete.

$sel:searchService:DomainStatus', domainStatus_searchService - The service endpoint for requesting search results from a search domain.

$sel:limits:DomainStatus', domainStatus_limits - Undocumented member.

$sel:searchPartitionCount:DomainStatus', domainStatus_searchPartitionCount - The number of partitions across which the search index is spread.

$sel:deleted:DomainStatus', domainStatus_deleted - True if the search domain has been deleted. The system must clean up resources dedicated to the search domain when DeleteDomain is called. Newly deleted search domains are returned from DescribeDomains with a true value for IsDeleted for several minutes until resource cleanup is complete.

$sel:processing:DomainStatus', domainStatus_processing - True if processing is being done to activate the current domain configuration.

$sel:domainId:DomainStatus', domainStatus_domainId - Undocumented member.

$sel:domainName:DomainStatus', domainStatus_domainName - Undocumented member.

$sel:requiresIndexDocuments:DomainStatus', domainStatus_requiresIndexDocuments - True if IndexDocuments needs to be called to activate the current domain configuration.

DoubleArrayOptions

data DoubleArrayOptions Source #

Options for a field that contains an array of double-precision 64-bit floating point values. Present if IndexFieldType specifies the field is of type double-array. All options are enabled by default.

See: newDoubleArrayOptions smart constructor.

Instances

Instances details
Eq DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

Read DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

Show DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

Generic DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

Associated Types

type Rep DoubleArrayOptions :: Type -> Type #

NFData DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

Methods

rnf :: DoubleArrayOptions -> () #

Hashable DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

ToQuery DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

FromXML DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

type Rep DoubleArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleArrayOptions

type Rep DoubleArrayOptions = D1 ('MetaData "DoubleArrayOptions" "Amazonka.CloudSearch.Types.DoubleArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DoubleArrayOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))))

newDoubleArrayOptions :: DoubleArrayOptions Source #

Create a value of DoubleArrayOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceFields:DoubleArrayOptions', doubleArrayOptions_sourceFields - A list of source fields to map to the field.

$sel:returnEnabled:DoubleArrayOptions', doubleArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:DoubleArrayOptions', doubleArrayOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:DoubleArrayOptions', doubleArrayOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:defaultValue:DoubleArrayOptions', doubleArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

DoubleOptions

data DoubleOptions Source #

Options for a double-precision 64-bit floating point field. Present if IndexFieldType specifies the field is of type double. All options are enabled by default.

See: newDoubleOptions smart constructor.

Instances

Instances details
Eq DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

Read DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

Show DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

Generic DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

Associated Types

type Rep DoubleOptions :: Type -> Type #

NFData DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

Methods

rnf :: DoubleOptions -> () #

Hashable DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

ToQuery DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

FromXML DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

type Rep DoubleOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.DoubleOptions

type Rep DoubleOptions = D1 ('MetaData "DoubleOptions" "Amazonka.CloudSearch.Types.DoubleOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "DoubleOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "sortEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))))

newDoubleOptions :: DoubleOptions Source #

Create a value of DoubleOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceField:DoubleOptions', doubleOptions_sourceField - The name of the source field to map to the field.

$sel:returnEnabled:DoubleOptions', doubleOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:DoubleOptions', doubleOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:DoubleOptions', doubleOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:sortEnabled:DoubleOptions', doubleOptions_sortEnabled - Whether the field can be used to sort the search results.

$sel:defaultValue:DoubleOptions', doubleOptions_defaultValue - A value to use for the field if the field isn't specified for a document. This can be important if you are using the field in an expression and that field is not present in every document.

Expression

data Expression Source #

A named expression that can be evaluated at search time. Can be used to sort the search results, define other expressions, or return computed information in the search results.

See: newExpression smart constructor.

Constructors

Expression' Text Text 

Instances

Instances details
Eq Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

Read Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

Show Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

Generic Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

Associated Types

type Rep Expression :: Type -> Type #

NFData Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

Methods

rnf :: Expression -> () #

Hashable Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

ToQuery Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

FromXML Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

type Rep Expression Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Expression

type Rep Expression = D1 ('MetaData "Expression" "Amazonka.CloudSearch.Types.Expression" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "Expression'" 'PrefixI 'True) (S1 ('MetaSel ('Just "expressionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "expressionValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newExpression Source #

Create a value of Expression with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:expressionName:Expression', expression_expressionName - Undocumented member.

$sel:expressionValue:Expression', expression_expressionValue - Undocumented member.

ExpressionStatus

data ExpressionStatus Source #

The value of an Expression and its current status.

See: newExpressionStatus smart constructor.

Instances

Instances details
Eq ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

Read ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

Show ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

Generic ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

Associated Types

type Rep ExpressionStatus :: Type -> Type #

NFData ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

Methods

rnf :: ExpressionStatus -> () #

Hashable ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

FromXML ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

type Rep ExpressionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ExpressionStatus

type Rep ExpressionStatus = D1 ('MetaData "ExpressionStatus" "Amazonka.CloudSearch.Types.ExpressionStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "ExpressionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Expression) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newExpressionStatus Source #

Create a value of ExpressionStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:ExpressionStatus', expressionStatus_options - The expression that is evaluated for sorting while processing a search request.

$sel:status:ExpressionStatus', expressionStatus_status - Undocumented member.

IndexField

data IndexField Source #

Configuration information for a field in the index, including its name, type, and options. The supported options depend on the IndexFieldType.

See: newIndexField smart constructor.

Instances

Instances details
Eq IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

Read IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

Show IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

Generic IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

Associated Types

type Rep IndexField :: Type -> Type #

NFData IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

Methods

rnf :: IndexField -> () #

Hashable IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

ToQuery IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

FromXML IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

type Rep IndexField Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexField

type Rep IndexField = D1 ('MetaData "IndexField" "Amazonka.CloudSearch.Types.IndexField" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IndexField'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "doubleArrayOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DoubleArrayOptions)) :*: (S1 ('MetaSel ('Just "dateOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DateOptions)) :*: S1 ('MetaSel ('Just "textArrayOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TextArrayOptions)))) :*: (S1 ('MetaSel ('Just "doubleOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DoubleOptions)) :*: (S1 ('MetaSel ('Just "textOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TextOptions)) :*: S1 ('MetaSel ('Just "latLonOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LatLonOptions))))) :*: ((S1 ('MetaSel ('Just "literalArrayOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LiteralArrayOptions)) :*: (S1 ('MetaSel ('Just "intArrayOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IntArrayOptions)) :*: S1 ('MetaSel ('Just "dateArrayOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DateArrayOptions)))) :*: ((S1 ('MetaSel ('Just "intOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IntOptions)) :*: S1 ('MetaSel ('Just "literalOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LiteralOptions))) :*: (S1 ('MetaSel ('Just "indexFieldName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "indexFieldType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 IndexFieldType))))))

newIndexField Source #

Create a value of IndexField with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:doubleArrayOptions:IndexField', indexField_doubleArrayOptions - Undocumented member.

$sel:dateOptions:IndexField', indexField_dateOptions - Undocumented member.

$sel:textArrayOptions:IndexField', indexField_textArrayOptions - Undocumented member.

$sel:doubleOptions:IndexField', indexField_doubleOptions - Undocumented member.

$sel:textOptions:IndexField', indexField_textOptions - Undocumented member.

$sel:latLonOptions:IndexField', indexField_latLonOptions - Undocumented member.

$sel:literalArrayOptions:IndexField', indexField_literalArrayOptions - Undocumented member.

$sel:intArrayOptions:IndexField', indexField_intArrayOptions - Undocumented member.

$sel:dateArrayOptions:IndexField', indexField_dateArrayOptions - Undocumented member.

$sel:intOptions:IndexField', indexField_intOptions - Undocumented member.

$sel:literalOptions:IndexField', indexField_literalOptions - Undocumented member.

$sel:indexFieldName:IndexField', indexField_indexFieldName - A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields. A dynamic field's name defines a pattern that begins or ends with a wildcard. Any document fields that don't map to a regular index field but do match a dynamic field's pattern are configured with the dynamic field's indexing options.

Regular field names begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore). Dynamic field names must begin or end with a wildcard (*). The wildcard can also be the only character in a dynamic field name. Multiple wildcards, and wildcards embedded within a string are not supported.

The name score is reserved and cannot be used as a field name. To reference a document's ID, you can use the name _id.

$sel:indexFieldType:IndexField', indexField_indexFieldType - Undocumented member.

IndexFieldStatus

data IndexFieldStatus Source #

The value of an IndexField and its current status.

See: newIndexFieldStatus smart constructor.

Instances

Instances details
Eq IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

Read IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

Show IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

Generic IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

Associated Types

type Rep IndexFieldStatus :: Type -> Type #

NFData IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

Methods

rnf :: IndexFieldStatus -> () #

Hashable IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

FromXML IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

type Rep IndexFieldStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IndexFieldStatus

type Rep IndexFieldStatus = D1 ('MetaData "IndexFieldStatus" "Amazonka.CloudSearch.Types.IndexFieldStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IndexFieldStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 IndexField) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newIndexFieldStatus Source #

Create a value of IndexFieldStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:IndexFieldStatus', indexFieldStatus_options - Undocumented member.

$sel:status:IndexFieldStatus', indexFieldStatus_status - Undocumented member.

IntArrayOptions

data IntArrayOptions Source #

Options for a field that contains an array of 64-bit signed integers. Present if IndexFieldType specifies the field is of type int-array. All options are enabled by default.

See: newIntArrayOptions smart constructor.

Instances

Instances details
Eq IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Read IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Show IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Generic IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Associated Types

type Rep IntArrayOptions :: Type -> Type #

NFData IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Methods

rnf :: IntArrayOptions -> () #

Hashable IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

ToQuery IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

FromXML IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

type Rep IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

type Rep IntArrayOptions = D1 ('MetaData "IntArrayOptions" "Amazonka.CloudSearch.Types.IntArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IntArrayOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))))

newIntArrayOptions :: IntArrayOptions Source #

Create a value of IntArrayOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceFields:IntArrayOptions', intArrayOptions_sourceFields - A list of source fields to map to the field.

$sel:returnEnabled:IntArrayOptions', intArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:IntArrayOptions', intArrayOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:IntArrayOptions', intArrayOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:defaultValue:IntArrayOptions', intArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

IntOptions

data IntOptions Source #

Options for a 64-bit signed integer field. Present if IndexFieldType specifies the field is of type int. All options are enabled by default.

See: newIntOptions smart constructor.

Instances

Instances details
Eq IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

Read IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

Show IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

Generic IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

Associated Types

type Rep IntOptions :: Type -> Type #

NFData IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

Methods

rnf :: IntOptions -> () #

Hashable IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

ToQuery IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

FromXML IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

type Rep IntOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntOptions

type Rep IntOptions = D1 ('MetaData "IntOptions" "Amazonka.CloudSearch.Types.IntOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IntOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "sortEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))))

newIntOptions :: IntOptions Source #

Create a value of IntOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceField:IntOptions', intOptions_sourceField - The name of the source field to map to the field.

$sel:returnEnabled:IntOptions', intOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:IntOptions', intOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:IntOptions', intOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:sortEnabled:IntOptions', intOptions_sortEnabled - Whether the field can be used to sort the search results.

$sel:defaultValue:IntOptions', intOptions_defaultValue - A value to use for the field if the field isn't specified for a document. This can be important if you are using the field in an expression and that field is not present in every document.

LatLonOptions

data LatLonOptions Source #

Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if IndexFieldType specifies the field is of type latlon. All options are enabled by default.

See: newLatLonOptions smart constructor.

Instances

Instances details
Eq LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

Read LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

Show LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

Generic LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

Associated Types

type Rep LatLonOptions :: Type -> Type #

NFData LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

Methods

rnf :: LatLonOptions -> () #

Hashable LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

ToQuery LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

FromXML LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

type Rep LatLonOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LatLonOptions

type Rep LatLonOptions = D1 ('MetaData "LatLonOptions" "Amazonka.CloudSearch.Types.LatLonOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "LatLonOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "sortEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newLatLonOptions :: LatLonOptions Source #

Create a value of LatLonOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceField:LatLonOptions', latLonOptions_sourceField - Undocumented member.

$sel:returnEnabled:LatLonOptions', latLonOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:LatLonOptions', latLonOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:LatLonOptions', latLonOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:sortEnabled:LatLonOptions', latLonOptions_sortEnabled - Whether the field can be used to sort the search results.

$sel:defaultValue:LatLonOptions', latLonOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

Limits

data Limits Source #

See: newLimits smart constructor.

Constructors

Limits' Natural Natural 

Instances

Instances details
Eq Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

Methods

(==) :: Limits -> Limits -> Bool #

(/=) :: Limits -> Limits -> Bool #

Read Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

Show Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

Generic Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

Associated Types

type Rep Limits :: Type -> Type #

Methods

from :: Limits -> Rep Limits x #

to :: Rep Limits x -> Limits #

NFData Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

Methods

rnf :: Limits -> () #

Hashable Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

Methods

hashWithSalt :: Int -> Limits -> Int #

hash :: Limits -> Int #

FromXML Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

type Rep Limits Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Limits

type Rep Limits = D1 ('MetaData "Limits" "Amazonka.CloudSearch.Types.Limits" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "Limits'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maximumReplicationCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: S1 ('MetaSel ('Just "maximumPartitionCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))

newLimits Source #

Create a value of Limits with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maximumReplicationCount:Limits', limits_maximumReplicationCount - Undocumented member.

$sel:maximumPartitionCount:Limits', limits_maximumPartitionCount - Undocumented member.

LiteralArrayOptions

data LiteralArrayOptions Source #

Options for a field that contains an array of literal strings. Present if IndexFieldType specifies the field is of type literal-array. All options are enabled by default.

See: newLiteralArrayOptions smart constructor.

Instances

Instances details
Eq LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Read LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Show LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Generic LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Associated Types

type Rep LiteralArrayOptions :: Type -> Type #

NFData LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Methods

rnf :: LiteralArrayOptions -> () #

Hashable LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

ToQuery LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

FromXML LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

type Rep LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

type Rep LiteralArrayOptions = D1 ('MetaData "LiteralArrayOptions" "Amazonka.CloudSearch.Types.LiteralArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "LiteralArrayOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newLiteralArrayOptions :: LiteralArrayOptions Source #

Create a value of LiteralArrayOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceFields:LiteralArrayOptions', literalArrayOptions_sourceFields - A list of source fields to map to the field.

$sel:returnEnabled:LiteralArrayOptions', literalArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:LiteralArrayOptions', literalArrayOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:LiteralArrayOptions', literalArrayOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:defaultValue:LiteralArrayOptions', literalArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

LiteralOptions

data LiteralOptions Source #

Options for literal field. Present if IndexFieldType specifies the field is of type literal. All options are enabled by default.

See: newLiteralOptions smart constructor.

Instances

Instances details
Eq LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

Read LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

Show LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

Generic LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

Associated Types

type Rep LiteralOptions :: Type -> Type #

NFData LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

Methods

rnf :: LiteralOptions -> () #

Hashable LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

ToQuery LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

FromXML LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

type Rep LiteralOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralOptions

type Rep LiteralOptions = D1 ('MetaData "LiteralOptions" "Amazonka.CloudSearch.Types.LiteralOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "LiteralOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "sortEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newLiteralOptions :: LiteralOptions Source #

Create a value of LiteralOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceField:LiteralOptions', literalOptions_sourceField - Undocumented member.

$sel:returnEnabled:LiteralOptions', literalOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:LiteralOptions', literalOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:LiteralOptions', literalOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:sortEnabled:LiteralOptions', literalOptions_sortEnabled - Whether the field can be used to sort the search results.

$sel:defaultValue:LiteralOptions', literalOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

OptionStatus

data OptionStatus Source #

The status of domain configuration option.

See: newOptionStatus smart constructor.

Instances

Instances details
Eq OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

Read OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

Show OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

Generic OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

Associated Types

type Rep OptionStatus :: Type -> Type #

NFData OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

Methods

rnf :: OptionStatus -> () #

Hashable OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

FromXML OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

type Rep OptionStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.OptionStatus

type Rep OptionStatus = D1 ('MetaData "OptionStatus" "Amazonka.CloudSearch.Types.OptionStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "OptionStatus'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "pendingDeletion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "updateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "creationDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ISO8601) :*: (S1 ('MetaSel ('Just "updateDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ISO8601) :*: S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionState)))))

newOptionStatus Source #

Create a value of OptionStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:pendingDeletion:OptionStatus', optionStatus_pendingDeletion - Indicates that the option will be deleted once processing is complete.

$sel:updateVersion:OptionStatus', optionStatus_updateVersion - A unique integer that indicates when this option was last updated.

$sel:creationDate:OptionStatus', optionStatus_creationDate - A timestamp for when this option was created.

$sel:updateDate:OptionStatus', optionStatus_updateDate - A timestamp for when this option was last updated.

$sel:state:OptionStatus', optionStatus_state - The state of processing a change to an option. Possible values:

  • RequiresIndexDocuments: the option's latest value will not be deployed until IndexDocuments has been called and indexing is complete.
  • Processing: the option's latest value is in the process of being activated.
  • Active: the option's latest value is completely deployed.
  • FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.

ScalingParameters

data ScalingParameters Source #

The desired instance type and desired number of replicas of each index partition.

See: newScalingParameters smart constructor.

Instances

Instances details
Eq ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

Read ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

Show ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

Generic ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

Associated Types

type Rep ScalingParameters :: Type -> Type #

NFData ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

Methods

rnf :: ScalingParameters -> () #

Hashable ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

ToQuery ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

FromXML ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

type Rep ScalingParameters Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParameters

type Rep ScalingParameters = D1 ('MetaData "ScalingParameters" "Amazonka.CloudSearch.Types.ScalingParameters" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "ScalingParameters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "desiredInstanceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PartitionInstanceType)) :*: (S1 ('MetaSel ('Just "desiredReplicationCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "desiredPartitionCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newScalingParameters :: ScalingParameters Source #

Create a value of ScalingParameters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:desiredInstanceType:ScalingParameters', scalingParameters_desiredInstanceType - The instance type that you want to preconfigure for your domain. For example, search.m1.small.

$sel:desiredReplicationCount:ScalingParameters', scalingParameters_desiredReplicationCount - The number of replicas you want to preconfigure for each index partition.

$sel:desiredPartitionCount:ScalingParameters', scalingParameters_desiredPartitionCount - The number of partitions you want to preconfigure for your domain. Only valid when you select m2.2xlarge as the desired instance type.

ScalingParametersStatus

data ScalingParametersStatus Source #

The status and configuration of a search domain's scaling parameters.

See: newScalingParametersStatus smart constructor.

Instances

Instances details
Eq ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

Read ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

Show ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

Generic ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

Associated Types

type Rep ScalingParametersStatus :: Type -> Type #

NFData ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

Methods

rnf :: ScalingParametersStatus -> () #

Hashable ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

FromXML ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

type Rep ScalingParametersStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ScalingParametersStatus

type Rep ScalingParametersStatus = D1 ('MetaData "ScalingParametersStatus" "Amazonka.CloudSearch.Types.ScalingParametersStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "ScalingParametersStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ScalingParameters) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newScalingParametersStatus Source #

Create a value of ScalingParametersStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:ScalingParametersStatus', scalingParametersStatus_options - Undocumented member.

$sel:status:ScalingParametersStatus', scalingParametersStatus_status - Undocumented member.

ServiceEndpoint

data ServiceEndpoint Source #

The endpoint to which service requests can be submitted.

See: newServiceEndpoint smart constructor.

Constructors

ServiceEndpoint' (Maybe Text) 

Instances

Instances details
Eq ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

Read ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

Show ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

Generic ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

Associated Types

type Rep ServiceEndpoint :: Type -> Type #

NFData ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

Methods

rnf :: ServiceEndpoint -> () #

Hashable ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

FromXML ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

type Rep ServiceEndpoint Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.ServiceEndpoint

type Rep ServiceEndpoint = D1 ('MetaData "ServiceEndpoint" "Amazonka.CloudSearch.Types.ServiceEndpoint" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "ServiceEndpoint'" 'PrefixI 'True) (S1 ('MetaSel ('Just "endpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newServiceEndpoint :: ServiceEndpoint Source #

Create a value of ServiceEndpoint with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:endpoint:ServiceEndpoint', serviceEndpoint_endpoint - Undocumented member.

Suggester

data Suggester Source #

Configuration information for a search suggester. Each suggester has a unique name and specifies the text field you want to use for suggestions. The following options can be configured for a suggester: FuzzyMatching, SortExpression.

See: newSuggester smart constructor.

Instances

Instances details
Eq Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

Read Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

Show Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

Generic Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

Associated Types

type Rep Suggester :: Type -> Type #

NFData Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

Methods

rnf :: Suggester -> () #

Hashable Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

ToQuery Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

FromXML Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

type Rep Suggester Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.Suggester

type Rep Suggester = D1 ('MetaData "Suggester" "Amazonka.CloudSearch.Types.Suggester" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "Suggester'" 'PrefixI 'True) (S1 ('MetaSel ('Just "suggesterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "documentSuggesterOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DocumentSuggesterOptions)))

newSuggester Source #

Create a value of Suggester with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:suggesterName:Suggester', suggester_suggesterName - Undocumented member.

$sel:documentSuggesterOptions:Suggester', suggester_documentSuggesterOptions - Undocumented member.

SuggesterStatus

data SuggesterStatus Source #

The value of a Suggester and its current status.

See: newSuggesterStatus smart constructor.

Instances

Instances details
Eq SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

Read SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

Show SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

Generic SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

Associated Types

type Rep SuggesterStatus :: Type -> Type #

NFData SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

Methods

rnf :: SuggesterStatus -> () #

Hashable SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

FromXML SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

type Rep SuggesterStatus Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.SuggesterStatus

type Rep SuggesterStatus = D1 ('MetaData "SuggesterStatus" "Amazonka.CloudSearch.Types.SuggesterStatus" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "SuggesterStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Suggester) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newSuggesterStatus Source #

Create a value of SuggesterStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:SuggesterStatus', suggesterStatus_options - Undocumented member.

$sel:status:SuggesterStatus', suggesterStatus_status - Undocumented member.

TextArrayOptions

data TextArrayOptions Source #

Options for a field that contains an array of text strings. Present if IndexFieldType specifies the field is of type text-array. A text-array field is always searchable. All options are enabled by default.

See: newTextArrayOptions smart constructor.

Instances

Instances details
Eq TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

Read TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

Show TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

Generic TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

Associated Types

type Rep TextArrayOptions :: Type -> Type #

NFData TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

Methods

rnf :: TextArrayOptions -> () #

Hashable TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

ToQuery TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

FromXML TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

type Rep TextArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextArrayOptions

type Rep TextArrayOptions = D1 ('MetaData "TextArrayOptions" "Amazonka.CloudSearch.Types.TextArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "TextArrayOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "analysisScheme") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "highlightEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newTextArrayOptions :: TextArrayOptions Source #

Create a value of TextArrayOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceFields:TextArrayOptions', textArrayOptions_sourceFields - A list of source fields to map to the field.

$sel:returnEnabled:TextArrayOptions', textArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:analysisScheme:TextArrayOptions', textArrayOptions_analysisScheme - The name of an analysis scheme for a text-array field.

$sel:highlightEnabled:TextArrayOptions', textArrayOptions_highlightEnabled - Whether highlights can be returned for the field.

$sel:defaultValue:TextArrayOptions', textArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

TextOptions

data TextOptions Source #

Options for text field. Present if IndexFieldType specifies the field is of type text. A text field is always searchable. All options are enabled by default.

See: newTextOptions smart constructor.

Instances

Instances details
Eq TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

Read TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

Show TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

Generic TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

Associated Types

type Rep TextOptions :: Type -> Type #

NFData TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

Methods

rnf :: TextOptions -> () #

Hashable TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

ToQuery TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

FromXML TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

type Rep TextOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.TextOptions

type Rep TextOptions = D1 ('MetaData "TextOptions" "Amazonka.CloudSearch.Types.TextOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "TextOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "analysisScheme") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "highlightEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "sortEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newTextOptions :: TextOptions Source #

Create a value of TextOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceField:TextOptions', textOptions_sourceField - Undocumented member.

$sel:returnEnabled:TextOptions', textOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:analysisScheme:TextOptions', textOptions_analysisScheme - The name of an analysis scheme for a text field.

$sel:highlightEnabled:TextOptions', textOptions_highlightEnabled - Whether highlights can be returned for the field.

$sel:sortEnabled:TextOptions', textOptions_sortEnabled - Whether the field can be used to sort the search results.

$sel:defaultValue:TextOptions', textOptions_defaultValue - A value to use for the field if the field isn't specified for a document.