libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector
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.FraudDetector

Contents

Description

Derived from API version 2019-11-15 of the AWS service descriptions, licensed under Apache 2.0.

This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the Amazon Fraud Detector User Guide.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2019-11-15 of the Amazon Fraud Detector 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 FraudDetector.

ValidationException

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

An exception indicating a specified value is not allowed.

AccessDeniedException

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

An exception indicating Amazon Fraud Detector does not have the needed permissions. This can occur if you submit a request, such as PutExternalModel, that specifies a role that is not in your account.

ResourceUnavailableException

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

An exception indicating that the attached customer-owned (external) model threw an exception when Amazon Fraud Detector invoked the model.

ConflictException

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

An exception indicating there was a conflict during a delete operation.

ThrottlingException

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

An exception indicating a throttling error.

InternalServerException

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

An exception indicating an internal server error.

ResourceNotFoundException

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

An exception indicating the specified resource was not found.

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.

CreateDetectorVersion

data CreateDetectorVersion Source #

See: newCreateDetectorVersion smart constructor.

Instances

Instances details
Eq CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Read CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Show CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Generic CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Associated Types

type Rep CreateDetectorVersion :: Type -> Type #

NFData CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Methods

rnf :: CreateDetectorVersion -> () #

Hashable CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

ToJSON CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

AWSRequest CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Associated Types

type AWSResponse CreateDetectorVersion #

ToHeaders CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

ToPath CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

ToQuery CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

type Rep CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

type Rep CreateDetectorVersion = D1 ('MetaData "CreateDetectorVersion" "Amazonka.FraudDetector.CreateDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateDetectorVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "ruleExecutionMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RuleExecutionMode)) :*: (S1 ('MetaSel ('Just "modelVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelVersion])) :*: S1 ('MetaSel ('Just "externalModelEndpoints") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))) :*: ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Rule])))))
type AWSResponse CreateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

newCreateDetectorVersion Source #

Create a value of CreateDetectorVersion 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:ruleExecutionMode:CreateDetectorVersion', createDetectorVersion_ruleExecutionMode - The rule execution mode for the rules included in the detector version.

You can define and edit the rule mode at the detector version level, when it is in draft status.

If you specify FIRST_MATCHED, Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.

If you specifiy ALL_MATCHED, Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules.

The default behavior is FIRST_MATCHED.

$sel:modelVersions:CreateDetectorVersion', createDetectorVersion_modelVersions - The model versions to include in the detector version.

$sel:externalModelEndpoints:CreateDetectorVersion', createDetectorVersion_externalModelEndpoints - The Amazon Sagemaker model endpoints to include in the detector version.

$sel:description:CreateDetectorVersion', createDetectorVersion_description - The description of the detector version.

$sel:tags:CreateDetectorVersion', createDetectorVersion_tags - A collection of key and value pairs.

$sel:detectorId:CreateDetectorVersion', createDetectorVersion_detectorId - The ID of the detector under which you want to create a new version.

$sel:rules:CreateDetectorVersion', createDetectorVersion_rules - The rules to include in the detector version.

data CreateDetectorVersionResponse Source #

See: newCreateDetectorVersionResponse smart constructor.

Instances

Instances details
Eq CreateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Read CreateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Show CreateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Generic CreateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

Associated Types

type Rep CreateDetectorVersionResponse :: Type -> Type #

NFData CreateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

type Rep CreateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateDetectorVersion

type Rep CreateDetectorVersionResponse = D1 ('MetaData "CreateDetectorVersionResponse" "Amazonka.FraudDetector.CreateDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateDetectorVersionResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectorVersionStatus)) :*: S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newCreateDetectorVersionResponse Source #

Create a value of CreateDetectorVersionResponse 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:status:CreateDetectorVersionResponse', createDetectorVersionResponse_status - The status of the detector version.

$sel:detectorVersionId:CreateDetectorVersionResponse', createDetectorVersionResponse_detectorVersionId - The ID for the created detector.

$sel:detectorId:CreateDetectorVersion', createDetectorVersionResponse_detectorId - The ID for the created version's parent detector.

$sel:httpStatus:CreateDetectorVersionResponse', createDetectorVersionResponse_httpStatus - The response's http status code.

BatchGetVariable

data BatchGetVariable Source #

See: newBatchGetVariable smart constructor.

Instances

Instances details
Eq BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Read BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Show BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Generic BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Associated Types

type Rep BatchGetVariable :: Type -> Type #

NFData BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Methods

rnf :: BatchGetVariable -> () #

Hashable BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

ToJSON BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

AWSRequest BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Associated Types

type AWSResponse BatchGetVariable #

ToHeaders BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

ToPath BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

ToQuery BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

type Rep BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

type Rep BatchGetVariable = D1 ('MetaData "BatchGetVariable" "Amazonka.FraudDetector.BatchGetVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchGetVariable'" 'PrefixI 'True) (S1 ('MetaSel ('Just "names") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))
type AWSResponse BatchGetVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

newBatchGetVariable Source #

Create a value of BatchGetVariable 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:names:BatchGetVariable', batchGetVariable_names - The list of variable names to get.

data BatchGetVariableResponse Source #

See: newBatchGetVariableResponse smart constructor.

Instances

Instances details
Eq BatchGetVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Read BatchGetVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Show BatchGetVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Generic BatchGetVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

Associated Types

type Rep BatchGetVariableResponse :: Type -> Type #

NFData BatchGetVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

type Rep BatchGetVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchGetVariable

type Rep BatchGetVariableResponse = D1 ('MetaData "BatchGetVariableResponse" "Amazonka.FraudDetector.BatchGetVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchGetVariableResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "variables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Variable])) :*: (S1 ('MetaSel ('Just "errors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [BatchGetVariableError])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newBatchGetVariableResponse Source #

Create a value of BatchGetVariableResponse 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:variables:BatchGetVariableResponse', batchGetVariableResponse_variables - The returned variables.

$sel:errors:BatchGetVariableResponse', batchGetVariableResponse_errors - The errors from the request.

$sel:httpStatus:BatchGetVariableResponse', batchGetVariableResponse_httpStatus - The response's http status code.

UpdateModelVersion

data UpdateModelVersion Source #

See: newUpdateModelVersion smart constructor.

Instances

Instances details
Eq UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Read UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Show UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Generic UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Associated Types

type Rep UpdateModelVersion :: Type -> Type #

NFData UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Methods

rnf :: UpdateModelVersion -> () #

Hashable UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

ToJSON UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

AWSRequest UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Associated Types

type AWSResponse UpdateModelVersion #

ToHeaders UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

ToPath UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

ToQuery UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

type Rep UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

type Rep UpdateModelVersion = D1 ('MetaData "UpdateModelVersion" "Amazonka.FraudDetector.UpdateModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateModelVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "externalEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExternalEventsDetail)) :*: (S1 ('MetaSel ('Just "ingestedEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IngestedEventsDetail)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])))) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum) :*: S1 ('MetaSel ('Just "majorVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse UpdateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

newUpdateModelVersion Source #

Create a value of UpdateModelVersion 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:externalEventsDetail:UpdateModelVersion', updateModelVersion_externalEventsDetail - The details of the external events data used for training the model version. Required if trainingDataSource is EXTERNAL_EVENTS.

$sel:ingestedEventsDetail:UpdateModelVersion', updateModelVersion_ingestedEventsDetail - The details of the ingested event used for training the model version. Required if your trainingDataSource is INGESTED_EVENTS.

$sel:tags:UpdateModelVersion', updateModelVersion_tags - A collection of key and value pairs.

$sel:modelId:UpdateModelVersion', updateModelVersion_modelId - The model ID.

$sel:modelType:UpdateModelVersion', updateModelVersion_modelType - The model type.

$sel:majorVersionNumber:UpdateModelVersion', updateModelVersion_majorVersionNumber - The major version number.

data UpdateModelVersionResponse Source #

See: newUpdateModelVersionResponse smart constructor.

Instances

Instances details
Eq UpdateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Read UpdateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Show UpdateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Generic UpdateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

Associated Types

type Rep UpdateModelVersionResponse :: Type -> Type #

NFData UpdateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

type Rep UpdateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersion

type Rep UpdateModelVersionResponse = D1 ('MetaData "UpdateModelVersionResponse" "Amazonka.FraudDetector.UpdateModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateModelVersionResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelTypeEnum))) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newUpdateModelVersionResponse Source #

Create a value of UpdateModelVersionResponse 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:status:UpdateModelVersionResponse', updateModelVersionResponse_status - The status of the updated model version.

$sel:modelType:UpdateModelVersion', updateModelVersionResponse_modelType - The model type.

$sel:modelId:UpdateModelVersion', updateModelVersionResponse_modelId - The model ID.

$sel:modelVersionNumber:UpdateModelVersionResponse', updateModelVersionResponse_modelVersionNumber - The model version number of the model version updated.

$sel:httpStatus:UpdateModelVersionResponse', updateModelVersionResponse_httpStatus - The response's http status code.

DeleteModelVersion

data DeleteModelVersion Source #

See: newDeleteModelVersion smart constructor.

Instances

Instances details
Eq DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Read DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Show DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Generic DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Associated Types

type Rep DeleteModelVersion :: Type -> Type #

NFData DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Methods

rnf :: DeleteModelVersion -> () #

Hashable DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

ToJSON DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

AWSRequest DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Associated Types

type AWSResponse DeleteModelVersion #

ToHeaders DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

ToPath DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

ToQuery DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

type Rep DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

type Rep DeleteModelVersion = D1 ('MetaData "DeleteModelVersion" "Amazonka.FraudDetector.DeleteModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteModelVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum) :*: S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DeleteModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

newDeleteModelVersion Source #

Create a value of DeleteModelVersion 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:modelId:DeleteModelVersion', deleteModelVersion_modelId - The model ID of the model version to delete.

$sel:modelType:DeleteModelVersion', deleteModelVersion_modelType - The model type of the model version to delete.

$sel:modelVersionNumber:DeleteModelVersion', deleteModelVersion_modelVersionNumber - The model version number of the model version to delete.

data DeleteModelVersionResponse Source #

See: newDeleteModelVersionResponse smart constructor.

Instances

Instances details
Eq DeleteModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Read DeleteModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Show DeleteModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Generic DeleteModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

Associated Types

type Rep DeleteModelVersionResponse :: Type -> Type #

NFData DeleteModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

type Rep DeleteModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModelVersion

type Rep DeleteModelVersionResponse = D1 ('MetaData "DeleteModelVersionResponse" "Amazonka.FraudDetector.DeleteModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteModelVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteModelVersionResponse Source #

Create a value of DeleteModelVersionResponse 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:DeleteModelVersionResponse', deleteModelVersionResponse_httpStatus - The response's http status code.

UpdateDetectorVersionMetadata

data UpdateDetectorVersionMetadata Source #

See: newUpdateDetectorVersionMetadata smart constructor.

Instances

Instances details
Eq UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Read UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Show UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Generic UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Associated Types

type Rep UpdateDetectorVersionMetadata :: Type -> Type #

NFData UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Hashable UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

ToJSON UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

AWSRequest UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

ToHeaders UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

ToPath UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

ToQuery UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

type Rep UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

type Rep UpdateDetectorVersionMetadata = D1 ('MetaData "UpdateDetectorVersionMetadata" "Amazonka.FraudDetector.UpdateDetectorVersionMetadata" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateDetectorVersionMetadata'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse UpdateDetectorVersionMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

data UpdateDetectorVersionMetadataResponse Source #

Instances

Instances details
Eq UpdateDetectorVersionMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Read UpdateDetectorVersionMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Show UpdateDetectorVersionMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

Generic UpdateDetectorVersionMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

NFData UpdateDetectorVersionMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

type Rep UpdateDetectorVersionMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionMetadata

type Rep UpdateDetectorVersionMetadataResponse = D1 ('MetaData "UpdateDetectorVersionMetadataResponse" "Amazonka.FraudDetector.UpdateDetectorVersionMetadata" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateDetectorVersionMetadataResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateDetectorVersionMetadataResponse Source #

Create a value of UpdateDetectorVersionMetadataResponse 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:UpdateDetectorVersionMetadataResponse', updateDetectorVersionMetadataResponse_httpStatus - The response's http status code.

DeleteBatchImportJob

data DeleteBatchImportJob Source #

See: newDeleteBatchImportJob smart constructor.

Instances

Instances details
Eq DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Read DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Show DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Generic DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Associated Types

type Rep DeleteBatchImportJob :: Type -> Type #

NFData DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Methods

rnf :: DeleteBatchImportJob -> () #

Hashable DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

ToJSON DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

AWSRequest DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Associated Types

type AWSResponse DeleteBatchImportJob #

ToHeaders DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

ToPath DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

ToQuery DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

type Rep DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

type Rep DeleteBatchImportJob = D1 ('MetaData "DeleteBatchImportJob" "Amazonka.FraudDetector.DeleteBatchImportJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteBatchImportJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

newDeleteBatchImportJob Source #

Create a value of DeleteBatchImportJob 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:jobId:DeleteBatchImportJob', deleteBatchImportJob_jobId - The ID of the batch import job to delete.

data DeleteBatchImportJobResponse Source #

See: newDeleteBatchImportJobResponse smart constructor.

Instances

Instances details
Eq DeleteBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Read DeleteBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Show DeleteBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Generic DeleteBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

Associated Types

type Rep DeleteBatchImportJobResponse :: Type -> Type #

NFData DeleteBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

type Rep DeleteBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchImportJob

type Rep DeleteBatchImportJobResponse = D1 ('MetaData "DeleteBatchImportJobResponse" "Amazonka.FraudDetector.DeleteBatchImportJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteBatchImportJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteBatchImportJobResponse Source #

Create a value of DeleteBatchImportJobResponse 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:DeleteBatchImportJobResponse', deleteBatchImportJobResponse_httpStatus - The response's http status code.

DeleteRule

data DeleteRule Source #

See: newDeleteRule smart constructor.

Constructors

DeleteRule' Rule 

Instances

Instances details
Eq DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Read DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Show DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Generic DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Associated Types

type Rep DeleteRule :: Type -> Type #

NFData DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Methods

rnf :: DeleteRule -> () #

Hashable DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

ToJSON DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

AWSRequest DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Associated Types

type AWSResponse DeleteRule #

ToHeaders DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Methods

toHeaders :: DeleteRule -> [Header] #

ToPath DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

ToQuery DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

type Rep DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

type Rep DeleteRule = D1 ('MetaData "DeleteRule" "Amazonka.FraudDetector.DeleteRule" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteRule'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Rule)))
type AWSResponse DeleteRule Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

newDeleteRule Source #

Create a value of DeleteRule 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:rule:DeleteRule', deleteRule_rule - Undocumented member.

data DeleteRuleResponse Source #

See: newDeleteRuleResponse smart constructor.

Constructors

DeleteRuleResponse' Int 

Instances

Instances details
Eq DeleteRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Read DeleteRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Show DeleteRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Generic DeleteRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Associated Types

type Rep DeleteRuleResponse :: Type -> Type #

NFData DeleteRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

Methods

rnf :: DeleteRuleResponse -> () #

type Rep DeleteRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteRule

type Rep DeleteRuleResponse = D1 ('MetaData "DeleteRuleResponse" "Amazonka.FraudDetector.DeleteRule" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteRuleResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteRuleResponse Source #

Create a value of DeleteRuleResponse 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:DeleteRuleResponse', deleteRuleResponse_httpStatus - The response's http status code.

PutLabel

data PutLabel Source #

See: newPutLabel smart constructor.

Constructors

PutLabel' (Maybe Text) (Maybe [Tag]) Text 

Instances

Instances details
Eq PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Read PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Show PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Generic PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Associated Types

type Rep PutLabel :: Type -> Type #

Methods

from :: PutLabel -> Rep PutLabel x #

to :: Rep PutLabel x -> PutLabel #

NFData PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Methods

rnf :: PutLabel -> () #

Hashable PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Methods

hashWithSalt :: Int -> PutLabel -> Int #

hash :: PutLabel -> Int #

ToJSON PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

AWSRequest PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Associated Types

type AWSResponse PutLabel #

ToHeaders PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Methods

toHeaders :: PutLabel -> [Header] #

ToPath PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

ToQuery PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

type Rep PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

type Rep PutLabel = D1 ('MetaData "PutLabel" "Amazonka.FraudDetector.PutLabel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutLabel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse PutLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

newPutLabel Source #

Create a value of PutLabel 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:description:PutLabel', putLabel_description - The label description.

$sel:tags:PutLabel', putLabel_tags -

$sel:name:PutLabel', putLabel_name - The label name.

data PutLabelResponse Source #

See: newPutLabelResponse smart constructor.

Constructors

PutLabelResponse' Int 

Instances

Instances details
Eq PutLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Read PutLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Show PutLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Generic PutLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Associated Types

type Rep PutLabelResponse :: Type -> Type #

NFData PutLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

Methods

rnf :: PutLabelResponse -> () #

type Rep PutLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutLabel

type Rep PutLabelResponse = D1 ('MetaData "PutLabelResponse" "Amazonka.FraudDetector.PutLabel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutLabelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutLabelResponse Source #

Create a value of PutLabelResponse 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:PutLabelResponse', putLabelResponse_httpStatus - The response's http status code.

GetExternalModels

data GetExternalModels Source #

See: newGetExternalModels smart constructor.

Instances

Instances details
Eq GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Read GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Show GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Generic GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Associated Types

type Rep GetExternalModels :: Type -> Type #

NFData GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Methods

rnf :: GetExternalModels -> () #

Hashable GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

ToJSON GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

AWSRequest GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Associated Types

type AWSResponse GetExternalModels #

ToHeaders GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

ToPath GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

ToQuery GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

type Rep GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

type Rep GetExternalModels = D1 ('MetaData "GetExternalModels" "Amazonka.FraudDetector.GetExternalModels" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetExternalModels'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetExternalModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

newGetExternalModels :: GetExternalModels Source #

Create a value of GetExternalModels 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:modelEndpoint:GetExternalModels', getExternalModels_modelEndpoint - The Amazon SageMaker model endpoint.

$sel:nextToken:GetExternalModels', getExternalModels_nextToken - The next page token for the request.

$sel:maxResults:GetExternalModels', getExternalModels_maxResults - The maximum number of objects to return for the request.

data GetExternalModelsResponse Source #

See: newGetExternalModelsResponse smart constructor.

Instances

Instances details
Eq GetExternalModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Read GetExternalModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Show GetExternalModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Generic GetExternalModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

Associated Types

type Rep GetExternalModelsResponse :: Type -> Type #

NFData GetExternalModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

type Rep GetExternalModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetExternalModels

type Rep GetExternalModelsResponse = D1 ('MetaData "GetExternalModelsResponse" "Amazonka.FraudDetector.GetExternalModels" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetExternalModelsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "externalModels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ExternalModel])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetExternalModelsResponse Source #

Create a value of GetExternalModelsResponse 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:nextToken:GetExternalModels', getExternalModelsResponse_nextToken - The next page token to be used in subsequent requests.

$sel:externalModels:GetExternalModelsResponse', getExternalModelsResponse_externalModels - Gets the Amazon SageMaker models.

$sel:httpStatus:GetExternalModelsResponse', getExternalModelsResponse_httpStatus - The response's http status code.

GetDetectors

data GetDetectors Source #

See: newGetDetectors smart constructor.

Instances

Instances details
Eq GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Read GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Show GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Generic GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Associated Types

type Rep GetDetectors :: Type -> Type #

NFData GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Methods

rnf :: GetDetectors -> () #

Hashable GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

ToJSON GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

AWSRequest GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Associated Types

type AWSResponse GetDetectors #

ToHeaders GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

ToPath GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

ToQuery GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

type Rep GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

type Rep GetDetectors = D1 ('MetaData "GetDetectors" "Amazonka.FraudDetector.GetDetectors" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetDetectors'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetDetectors Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

newGetDetectors :: GetDetectors Source #

Create a value of GetDetectors 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:nextToken:GetDetectors', getDetectors_nextToken - The next token for the subsequent request.

$sel:detectorId:GetDetectors', getDetectors_detectorId - The detector ID.

$sel:maxResults:GetDetectors', getDetectors_maxResults - The maximum number of objects to return for the request.

data GetDetectorsResponse Source #

See: newGetDetectorsResponse smart constructor.

Instances

Instances details
Eq GetDetectorsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Read GetDetectorsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Show GetDetectorsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Generic GetDetectorsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Associated Types

type Rep GetDetectorsResponse :: Type -> Type #

NFData GetDetectorsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

Methods

rnf :: GetDetectorsResponse -> () #

type Rep GetDetectorsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectors

type Rep GetDetectorsResponse = D1 ('MetaData "GetDetectorsResponse" "Amazonka.FraudDetector.GetDetectors" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetDetectorsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "detectors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Detector])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetDetectorsResponse Source #

Create a value of GetDetectorsResponse 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:nextToken:GetDetectors', getDetectorsResponse_nextToken - The next page token.

$sel:detectors:GetDetectorsResponse', getDetectorsResponse_detectors - The detectors.

$sel:httpStatus:GetDetectorsResponse', getDetectorsResponse_httpStatus - The response's http status code.

DeleteLabel

data DeleteLabel Source #

See: newDeleteLabel smart constructor.

Constructors

DeleteLabel' Text 

Instances

Instances details
Eq DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Read DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Show DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Generic DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Associated Types

type Rep DeleteLabel :: Type -> Type #

NFData DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Methods

rnf :: DeleteLabel -> () #

Hashable DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

ToJSON DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

AWSRequest DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Associated Types

type AWSResponse DeleteLabel #

ToHeaders DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Methods

toHeaders :: DeleteLabel -> [Header] #

ToPath DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

ToQuery DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

type Rep DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

type Rep DeleteLabel = D1 ('MetaData "DeleteLabel" "Amazonka.FraudDetector.DeleteLabel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteLabel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

newDeleteLabel Source #

Create a value of DeleteLabel 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:name:DeleteLabel', deleteLabel_name - The name of the label to delete.

data DeleteLabelResponse Source #

See: newDeleteLabelResponse smart constructor.

Instances

Instances details
Eq DeleteLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Read DeleteLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Show DeleteLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Generic DeleteLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Associated Types

type Rep DeleteLabelResponse :: Type -> Type #

NFData DeleteLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

Methods

rnf :: DeleteLabelResponse -> () #

type Rep DeleteLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteLabel

type Rep DeleteLabelResponse = D1 ('MetaData "DeleteLabelResponse" "Amazonka.FraudDetector.DeleteLabel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteLabelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteLabelResponse Source #

Create a value of DeleteLabelResponse 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:DeleteLabelResponse', deleteLabelResponse_httpStatus - The response's http status code.

DeleteVariable

data DeleteVariable Source #

See: newDeleteVariable smart constructor.

Constructors

DeleteVariable' Text 

Instances

Instances details
Eq DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Read DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Show DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Generic DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Associated Types

type Rep DeleteVariable :: Type -> Type #

NFData DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Methods

rnf :: DeleteVariable -> () #

Hashable DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

ToJSON DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

AWSRequest DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Associated Types

type AWSResponse DeleteVariable #

ToHeaders DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

ToPath DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

ToQuery DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

type Rep DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

type Rep DeleteVariable = D1 ('MetaData "DeleteVariable" "Amazonka.FraudDetector.DeleteVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteVariable'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

newDeleteVariable Source #

Create a value of DeleteVariable 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:name:DeleteVariable', deleteVariable_name - The name of the variable to delete.

data DeleteVariableResponse Source #

See: newDeleteVariableResponse smart constructor.

Instances

Instances details
Eq DeleteVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Read DeleteVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Show DeleteVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Generic DeleteVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Associated Types

type Rep DeleteVariableResponse :: Type -> Type #

NFData DeleteVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

Methods

rnf :: DeleteVariableResponse -> () #

type Rep DeleteVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteVariable

type Rep DeleteVariableResponse = D1 ('MetaData "DeleteVariableResponse" "Amazonka.FraudDetector.DeleteVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteVariableResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteVariableResponse Source #

Create a value of DeleteVariableResponse 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:DeleteVariableResponse', deleteVariableResponse_httpStatus - The response's http status code.

UpdateVariable

data UpdateVariable Source #

See: newUpdateVariable smart constructor.

Instances

Instances details
Eq UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Read UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Show UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Generic UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Associated Types

type Rep UpdateVariable :: Type -> Type #

NFData UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Methods

rnf :: UpdateVariable -> () #

Hashable UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

ToJSON UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

AWSRequest UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Associated Types

type AWSResponse UpdateVariable #

ToHeaders UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

ToPath UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

ToQuery UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

type Rep UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

type Rep UpdateVariable = D1 ('MetaData "UpdateVariable" "Amazonka.FraudDetector.UpdateVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateVariable'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "variableType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse UpdateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

newUpdateVariable Source #

Create a value of UpdateVariable 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:defaultValue:UpdateVariable', updateVariable_defaultValue - The new default value of the variable.

$sel:variableType:UpdateVariable', updateVariable_variableType - The variable type. For more information see Variable types.

$sel:description:UpdateVariable', updateVariable_description - The new description.

$sel:name:UpdateVariable', updateVariable_name - The name of the variable.

data UpdateVariableResponse Source #

See: newUpdateVariableResponse smart constructor.

Instances

Instances details
Eq UpdateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Read UpdateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Show UpdateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Generic UpdateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Associated Types

type Rep UpdateVariableResponse :: Type -> Type #

NFData UpdateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

Methods

rnf :: UpdateVariableResponse -> () #

type Rep UpdateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateVariable

type Rep UpdateVariableResponse = D1 ('MetaData "UpdateVariableResponse" "Amazonka.FraudDetector.UpdateVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateVariableResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateVariableResponse Source #

Create a value of UpdateVariableResponse 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:UpdateVariableResponse', updateVariableResponse_httpStatus - The response's http status code.

CreateVariable

data CreateVariable Source #

See: newCreateVariable smart constructor.

Instances

Instances details
Eq CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Read CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Show CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Generic CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Associated Types

type Rep CreateVariable :: Type -> Type #

NFData CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Methods

rnf :: CreateVariable -> () #

Hashable CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

ToJSON CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

AWSRequest CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Associated Types

type AWSResponse CreateVariable #

ToHeaders CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

ToPath CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

ToQuery CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

type Rep CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

type Rep CreateVariable = D1 ('MetaData "CreateVariable" "Amazonka.FraudDetector.CreateVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateVariable'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "variableType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "dataType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DataType)) :*: (S1 ('MetaSel ('Just "dataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DataSource) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse CreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

newCreateVariable Source #

Create a value of CreateVariable 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:variableType:CreateVariable', createVariable_variableType - The variable type. For more information see Variable types.

Valid Values: AUTH_CODE | AVS | BILLING_ADDRESS_L1 | BILLING_ADDRESS_L2 | BILLING_CITY | BILLING_COUNTRY | BILLING_NAME | BILLING_PHONE | BILLING_STATE | BILLING_ZIP | CARD_BIN | CATEGORICAL | CURRENCY_CODE | EMAIL_ADDRESS | FINGERPRINT | FRAUD_LABEL | FREE_FORM_TEXT | IP_ADDRESS | NUMERIC | ORDER_ID | PAYMENT_TYPE | PHONE_NUMBER | PRICE | PRODUCT_CATEGORY | SHIPPING_ADDRESS_L1 | SHIPPING_ADDRESS_L2 | SHIPPING_CITY | SHIPPING_COUNTRY | SHIPPING_NAME | SHIPPING_PHONE | SHIPPING_STATE | SHIPPING_ZIP | USERAGENT

$sel:description:CreateVariable', createVariable_description - The description.

$sel:tags:CreateVariable', createVariable_tags - A collection of key and value pairs.

$sel:name:CreateVariable', createVariable_name - The name of the variable.

$sel:dataType:CreateVariable', createVariable_dataType - The data type.

$sel:dataSource:CreateVariable', createVariable_dataSource - The source of the data.

$sel:defaultValue:CreateVariable', createVariable_defaultValue - The default value for the variable when no value is received.

data CreateVariableResponse Source #

See: newCreateVariableResponse smart constructor.

Instances

Instances details
Eq CreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Read CreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Show CreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Generic CreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Associated Types

type Rep CreateVariableResponse :: Type -> Type #

NFData CreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

Methods

rnf :: CreateVariableResponse -> () #

type Rep CreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateVariable

type Rep CreateVariableResponse = D1 ('MetaData "CreateVariableResponse" "Amazonka.FraudDetector.CreateVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateVariableResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateVariableResponse Source #

Create a value of CreateVariableResponse 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:CreateVariableResponse', createVariableResponse_httpStatus - The response's http status code.

CreateBatchImportJob

data CreateBatchImportJob Source #

See: newCreateBatchImportJob smart constructor.

Instances

Instances details
Eq CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Read CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Show CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Generic CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Associated Types

type Rep CreateBatchImportJob :: Type -> Type #

NFData CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Methods

rnf :: CreateBatchImportJob -> () #

Hashable CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

ToJSON CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

AWSRequest CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Associated Types

type AWSResponse CreateBatchImportJob #

ToHeaders CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

ToPath CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

ToQuery CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

type Rep CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

type Rep CreateBatchImportJob = D1 ('MetaData "CreateBatchImportJob" "Amazonka.FraudDetector.CreateBatchImportJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateBatchImportJob'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "inputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "outputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "iamRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse CreateBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

newCreateBatchImportJob Source #

Create a value of CreateBatchImportJob 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:tags:CreateBatchImportJob', createBatchImportJob_tags - A collection of key-value pairs associated with this request.

$sel:jobId:CreateBatchImportJob', createBatchImportJob_jobId - The ID of the batch import job. The ID cannot be of a past job, unless the job exists in CREATE_FAILED state.

$sel:inputPath:CreateBatchImportJob', createBatchImportJob_inputPath - The URI that points to the Amazon S3 location of your data file.

$sel:outputPath:CreateBatchImportJob', createBatchImportJob_outputPath - The URI that points to the Amazon S3 location for storing your results.

$sel:eventTypeName:CreateBatchImportJob', createBatchImportJob_eventTypeName - The name of the event type.

$sel:iamRoleArn:CreateBatchImportJob', createBatchImportJob_iamRoleArn - The ARN of the IAM role created for Amazon S3 bucket that holds your data file. The IAM role must have read and write permissions to both input and output S3 buckets.

data CreateBatchImportJobResponse Source #

See: newCreateBatchImportJobResponse smart constructor.

Instances

Instances details
Eq CreateBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Read CreateBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Show CreateBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Generic CreateBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

Associated Types

type Rep CreateBatchImportJobResponse :: Type -> Type #

NFData CreateBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

type Rep CreateBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchImportJob

type Rep CreateBatchImportJobResponse = D1 ('MetaData "CreateBatchImportJobResponse" "Amazonka.FraudDetector.CreateBatchImportJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateBatchImportJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateBatchImportJobResponse Source #

Create a value of CreateBatchImportJobResponse 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:CreateBatchImportJobResponse', createBatchImportJobResponse_httpStatus - The response's http status code.

CreateRule

data CreateRule Source #

See: newCreateRule smart constructor.

Instances

Instances details
Eq CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Show CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Generic CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Associated Types

type Rep CreateRule :: Type -> Type #

NFData CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Methods

rnf :: CreateRule -> () #

Hashable CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

ToJSON CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

AWSRequest CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Associated Types

type AWSResponse CreateRule #

ToHeaders CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Methods

toHeaders :: CreateRule -> [Header] #

ToPath CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

ToQuery CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

type Rep CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

type AWSResponse CreateRule Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

newCreateRule Source #

Create a value of CreateRule 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:description:CreateRule', createRule_description - The rule description.

$sel:tags:CreateRule', createRule_tags - A collection of key and value pairs.

$sel:ruleId:CreateRule', createRule_ruleId - The rule ID.

$sel:detectorId:CreateRule', createRule_detectorId - The detector ID for the rule's parent detector.

$sel:expression:CreateRule', createRule_expression - The rule expression.

$sel:language:CreateRule', createRule_language - The language of the rule.

$sel:outcomes:CreateRule', createRule_outcomes - The outcome or outcomes returned when the rule expression matches.

data CreateRuleResponse Source #

See: newCreateRuleResponse smart constructor.

Instances

Instances details
Eq CreateRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Read CreateRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Show CreateRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Generic CreateRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Associated Types

type Rep CreateRuleResponse :: Type -> Type #

NFData CreateRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

Methods

rnf :: CreateRuleResponse -> () #

type Rep CreateRuleResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateRule

type Rep CreateRuleResponse = D1 ('MetaData "CreateRuleResponse" "Amazonka.FraudDetector.CreateRule" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateRuleResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Rule)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateRuleResponse Source #

Create a value of CreateRuleResponse 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:rule:CreateRuleResponse', createRuleResponse_rule - The created rule.

$sel:httpStatus:CreateRuleResponse', createRuleResponse_httpStatus - The response's http status code.

ListTagsForResource

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

ToJSON ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.FraudDetector.ListTagsForResource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "resourceARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

newListTagsForResource Source #

Create a value of ListTagsForResource 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:nextToken:ListTagsForResource', listTagsForResource_nextToken - The next token from the previous results.

$sel:maxResults:ListTagsForResource', listTagsForResource_maxResults - The maximum number of objects to return for the request.

$sel:resourceARN:ListTagsForResource', listTagsForResource_resourceARN - The ARN that specifies the resource whose tags you want to list.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Read ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.FraudDetector.ListTagsForResource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListTagsForResourceResponse Source #

Create a value of ListTagsForResourceResponse 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:nextToken:ListTagsForResource', listTagsForResourceResponse_nextToken - The next token for subsequent requests.

$sel:tags:ListTagsForResourceResponse', listTagsForResourceResponse_tags - A collection of key and value pairs.

$sel:httpStatus:ListTagsForResourceResponse', listTagsForResourceResponse_httpStatus - The response's http status code.

GetModels

data GetModels Source #

See: newGetModels smart constructor.

Instances

Instances details
Eq GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Read GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Show GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Generic GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Associated Types

type Rep GetModels :: Type -> Type #

NFData GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Methods

rnf :: GetModels -> () #

Hashable GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

ToJSON GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

AWSRequest GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Associated Types

type AWSResponse GetModels #

ToHeaders GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Methods

toHeaders :: GetModels -> [Header] #

ToPath GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

ToQuery GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

type Rep GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

type Rep GetModels = D1 ('MetaData "GetModels" "Amazonka.FraudDetector.GetModels" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetModels'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelTypeEnum)) :*: S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetModels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

newGetModels :: GetModels Source #

Create a value of GetModels 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:modelType:GetModels', getModels_modelType - The model type.

$sel:modelId:GetModels', getModels_modelId - The model ID.

$sel:nextToken:GetModels', getModels_nextToken - The next token for the subsequent request.

$sel:maxResults:GetModels', getModels_maxResults - The maximum number of objects to return for the request.

data GetModelsResponse Source #

See: newGetModelsResponse smart constructor.

Instances

Instances details
Eq GetModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Read GetModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Show GetModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Generic GetModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Associated Types

type Rep GetModelsResponse :: Type -> Type #

NFData GetModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

Methods

rnf :: GetModelsResponse -> () #

type Rep GetModelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModels

type Rep GetModelsResponse = D1 ('MetaData "GetModelsResponse" "Amazonka.FraudDetector.GetModels" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetModelsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "models") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Model])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetModelsResponse Source #

Create a value of GetModelsResponse 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:models:GetModelsResponse', getModelsResponse_models - The array of models.

$sel:nextToken:GetModels', getModelsResponse_nextToken - The next page token to be used in subsequent requests.

$sel:httpStatus:GetModelsResponse', getModelsResponse_httpStatus - The response's http status code.

UpdateRuleVersion

data UpdateRuleVersion Source #

See: newUpdateRuleVersion smart constructor.

Instances

Instances details
Eq UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Show UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Generic UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Associated Types

type Rep UpdateRuleVersion :: Type -> Type #

NFData UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Methods

rnf :: UpdateRuleVersion -> () #

Hashable UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

ToJSON UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

AWSRequest UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Associated Types

type AWSResponse UpdateRuleVersion #

ToHeaders UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

ToPath UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

ToQuery UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

type Rep UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

type Rep UpdateRuleVersion = D1 ('MetaData "UpdateRuleVersion" "Amazonka.FraudDetector.UpdateRuleVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateRuleVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "rule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Rule))) :*: (S1 ('MetaSel ('Just "expression") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text)) :*: (S1 ('MetaSel ('Just "language") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Language) :*: S1 ('MetaSel ('Just "outcomes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))))
type AWSResponse UpdateRuleVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

data UpdateRuleVersionResponse Source #

See: newUpdateRuleVersionResponse smart constructor.

Instances

Instances details
Eq UpdateRuleVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Read UpdateRuleVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Show UpdateRuleVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Generic UpdateRuleVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

Associated Types

type Rep UpdateRuleVersionResponse :: Type -> Type #

NFData UpdateRuleVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

type Rep UpdateRuleVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleVersion

type Rep UpdateRuleVersionResponse = D1 ('MetaData "UpdateRuleVersionResponse" "Amazonka.FraudDetector.UpdateRuleVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateRuleVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Rule)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateRuleVersionResponse Source #

Create a value of UpdateRuleVersionResponse 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:rule:UpdateRuleVersion', updateRuleVersionResponse_rule - The new rule version that was created.

$sel:httpStatus:UpdateRuleVersionResponse', updateRuleVersionResponse_httpStatus - The response's http status code.

DeleteEvent

data DeleteEvent Source #

See: newDeleteEvent smart constructor.

Constructors

DeleteEvent' (Maybe Bool) Text Text 

Instances

Instances details
Eq DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Read DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Show DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Generic DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Associated Types

type Rep DeleteEvent :: Type -> Type #

NFData DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Methods

rnf :: DeleteEvent -> () #

Hashable DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

ToJSON DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

AWSRequest DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Associated Types

type AWSResponse DeleteEvent #

ToHeaders DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Methods

toHeaders :: DeleteEvent -> [Header] #

ToPath DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

ToQuery DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

type Rep DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

type Rep DeleteEvent = D1 ('MetaData "DeleteEvent" "Amazonka.FraudDetector.DeleteEvent" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEvent'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deleteAuditHistory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "eventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DeleteEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

newDeleteEvent Source #

Create a value of DeleteEvent 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:deleteAuditHistory:DeleteEvent', deleteEvent_deleteAuditHistory - Specifies whether or not to delete any predictions associated with the event.

$sel:eventId:DeleteEvent', deleteEvent_eventId - The ID of the event to delete.

$sel:eventTypeName:DeleteEvent', deleteEvent_eventTypeName - The name of the event type.

data DeleteEventResponse Source #

See: newDeleteEventResponse smart constructor.

Instances

Instances details
Eq DeleteEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Read DeleteEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Show DeleteEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Generic DeleteEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Associated Types

type Rep DeleteEventResponse :: Type -> Type #

NFData DeleteEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

Methods

rnf :: DeleteEventResponse -> () #

type Rep DeleteEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEvent

type Rep DeleteEventResponse = D1 ('MetaData "DeleteEventResponse" "Amazonka.FraudDetector.DeleteEvent" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEventResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEventResponse Source #

Create a value of DeleteEventResponse 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:DeleteEventResponse', deleteEventResponse_httpStatus - The response's http status code.

CancelBatchPredictionJob

data CancelBatchPredictionJob Source #

See: newCancelBatchPredictionJob smart constructor.

Instances

Instances details
Eq CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Read CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Show CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Generic CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Associated Types

type Rep CancelBatchPredictionJob :: Type -> Type #

NFData CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Hashable CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

ToJSON CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

AWSRequest CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

ToHeaders CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

ToPath CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

ToQuery CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

type Rep CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

type Rep CancelBatchPredictionJob = D1 ('MetaData "CancelBatchPredictionJob" "Amazonka.FraudDetector.CancelBatchPredictionJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CancelBatchPredictionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse CancelBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

newCancelBatchPredictionJob Source #

Create a value of CancelBatchPredictionJob 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:jobId:CancelBatchPredictionJob', cancelBatchPredictionJob_jobId - The ID of the batch prediction job to cancel.

data CancelBatchPredictionJobResponse Source #

See: newCancelBatchPredictionJobResponse smart constructor.

Instances

Instances details
Eq CancelBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Read CancelBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Show CancelBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Generic CancelBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

Associated Types

type Rep CancelBatchPredictionJobResponse :: Type -> Type #

NFData CancelBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

type Rep CancelBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchPredictionJob

type Rep CancelBatchPredictionJobResponse = D1 ('MetaData "CancelBatchPredictionJobResponse" "Amazonka.FraudDetector.CancelBatchPredictionJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CancelBatchPredictionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCancelBatchPredictionJobResponse Source #

Create a value of CancelBatchPredictionJobResponse 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:CancelBatchPredictionJobResponse', cancelBatchPredictionJobResponse_httpStatus - The response's http status code.

UpdateModelVersionStatus

data UpdateModelVersionStatus Source #

See: newUpdateModelVersionStatus smart constructor.

Instances

Instances details
Eq UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Read UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Show UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Generic UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Associated Types

type Rep UpdateModelVersionStatus :: Type -> Type #

NFData UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Hashable UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

ToJSON UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

AWSRequest UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

ToHeaders UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

ToPath UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

ToQuery UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

type Rep UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

type Rep UpdateModelVersionStatus = D1 ('MetaData "UpdateModelVersionStatus" "Amazonka.FraudDetector.UpdateModelVersionStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateModelVersionStatus'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum)) :*: (S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelVersionStatus))))
type AWSResponse UpdateModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

data UpdateModelVersionStatusResponse Source #

See: newUpdateModelVersionStatusResponse smart constructor.

Instances

Instances details
Eq UpdateModelVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Read UpdateModelVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Show UpdateModelVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Generic UpdateModelVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

Associated Types

type Rep UpdateModelVersionStatusResponse :: Type -> Type #

NFData UpdateModelVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

type Rep UpdateModelVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModelVersionStatus

type Rep UpdateModelVersionStatusResponse = D1 ('MetaData "UpdateModelVersionStatusResponse" "Amazonka.FraudDetector.UpdateModelVersionStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateModelVersionStatusResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateModelVersionStatusResponse Source #

Create a value of UpdateModelVersionStatusResponse 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:UpdateModelVersionStatusResponse', updateModelVersionStatusResponse_httpStatus - The response's http status code.

GetBatchPredictionJobs

data GetBatchPredictionJobs Source #

See: newGetBatchPredictionJobs smart constructor.

Instances

Instances details
Eq GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Read GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Show GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Generic GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Associated Types

type Rep GetBatchPredictionJobs :: Type -> Type #

NFData GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Methods

rnf :: GetBatchPredictionJobs -> () #

Hashable GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

ToJSON GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

AWSRequest GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Associated Types

type AWSResponse GetBatchPredictionJobs #

ToHeaders GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

ToPath GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

ToQuery GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

type Rep GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

type Rep GetBatchPredictionJobs = D1 ('MetaData "GetBatchPredictionJobs" "Amazonka.FraudDetector.GetBatchPredictionJobs" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetBatchPredictionJobs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetBatchPredictionJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

newGetBatchPredictionJobs :: GetBatchPredictionJobs Source #

Create a value of GetBatchPredictionJobs 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:jobId:GetBatchPredictionJobs', getBatchPredictionJobs_jobId - The batch prediction job for which to get the details.

$sel:nextToken:GetBatchPredictionJobs', getBatchPredictionJobs_nextToken - The next token from the previous request.

$sel:maxResults:GetBatchPredictionJobs', getBatchPredictionJobs_maxResults - The maximum number of objects to return for the request.

data GetBatchPredictionJobsResponse Source #

See: newGetBatchPredictionJobsResponse smart constructor.

Instances

Instances details
Eq GetBatchPredictionJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Read GetBatchPredictionJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Show GetBatchPredictionJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Generic GetBatchPredictionJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

Associated Types

type Rep GetBatchPredictionJobsResponse :: Type -> Type #

NFData GetBatchPredictionJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

type Rep GetBatchPredictionJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchPredictionJobs

type Rep GetBatchPredictionJobsResponse = D1 ('MetaData "GetBatchPredictionJobsResponse" "Amazonka.FraudDetector.GetBatchPredictionJobs" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetBatchPredictionJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "batchPredictions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [BatchPrediction])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetBatchPredictionJobsResponse Source #

Create a value of GetBatchPredictionJobsResponse 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:batchPredictions:GetBatchPredictionJobsResponse', getBatchPredictionJobsResponse_batchPredictions - An array containing the details of each batch prediction job.

$sel:nextToken:GetBatchPredictionJobs', getBatchPredictionJobsResponse_nextToken - The next token for the subsequent request.

$sel:httpStatus:GetBatchPredictionJobsResponse', getBatchPredictionJobsResponse_httpStatus - The response's http status code.

CreateModel

data CreateModel Source #

See: newCreateModel smart constructor.

Instances

Instances details
Eq CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Read CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Show CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Generic CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Associated Types

type Rep CreateModel :: Type -> Type #

NFData CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Methods

rnf :: CreateModel -> () #

Hashable CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

ToJSON CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

AWSRequest CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Associated Types

type AWSResponse CreateModel #

ToHeaders CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Methods

toHeaders :: CreateModel -> [Header] #

ToPath CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

ToQuery CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

type Rep CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

type Rep CreateModel = D1 ('MetaData "CreateModel" "Amazonka.FraudDetector.CreateModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateModel'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse CreateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

newCreateModel Source #

Create a value of CreateModel 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:description:CreateModel', createModel_description - The model description.

$sel:tags:CreateModel', createModel_tags - A collection of key and value pairs.

$sel:modelId:CreateModel', createModel_modelId - The model ID.

$sel:modelType:CreateModel', createModel_modelType - The model type.

$sel:eventTypeName:CreateModel', createModel_eventTypeName - The name of the event type.

data CreateModelResponse Source #

See: newCreateModelResponse smart constructor.

Instances

Instances details
Eq CreateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Read CreateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Show CreateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Generic CreateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Associated Types

type Rep CreateModelResponse :: Type -> Type #

NFData CreateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

Methods

rnf :: CreateModelResponse -> () #

type Rep CreateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModel

type Rep CreateModelResponse = D1 ('MetaData "CreateModelResponse" "Amazonka.FraudDetector.CreateModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateModelResponse Source #

Create a value of CreateModelResponse 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:CreateModelResponse', createModelResponse_httpStatus - The response's http status code.

GetLabels

data GetLabels Source #

See: newGetLabels smart constructor.

Instances

Instances details
Eq GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Read GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Show GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Generic GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Associated Types

type Rep GetLabels :: Type -> Type #

NFData GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Methods

rnf :: GetLabels -> () #

Hashable GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

ToJSON GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

AWSRequest GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Associated Types

type AWSResponse GetLabels #

ToHeaders GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Methods

toHeaders :: GetLabels -> [Header] #

ToPath GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

ToQuery GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

type Rep GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

type Rep GetLabels = D1 ('MetaData "GetLabels" "Amazonka.FraudDetector.GetLabels" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetLabels'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetLabels Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

newGetLabels :: GetLabels Source #

Create a value of GetLabels 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:nextToken:GetLabels', getLabels_nextToken - The next token for the subsequent request.

$sel:name:GetLabels', getLabels_name - The name of the label or labels to get.

$sel:maxResults:GetLabels', getLabels_maxResults - The maximum number of objects to return for the request.

data GetLabelsResponse Source #

See: newGetLabelsResponse smart constructor.

Instances

Instances details
Eq GetLabelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Read GetLabelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Show GetLabelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Generic GetLabelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Associated Types

type Rep GetLabelsResponse :: Type -> Type #

NFData GetLabelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

Methods

rnf :: GetLabelsResponse -> () #

type Rep GetLabelsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetLabels

type Rep GetLabelsResponse = D1 ('MetaData "GetLabelsResponse" "Amazonka.FraudDetector.GetLabels" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetLabelsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "labels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Label])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetLabelsResponse Source #

Create a value of GetLabelsResponse 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:nextToken:GetLabels', getLabelsResponse_nextToken - The next page token.

$sel:labels:GetLabelsResponse', getLabelsResponse_labels - An array of labels.

$sel:httpStatus:GetLabelsResponse', getLabelsResponse_httpStatus - The response's http status code.

GetModelVersion

data GetModelVersion Source #

See: newGetModelVersion smart constructor.

Instances

Instances details
Eq GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Read GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Show GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Generic GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Associated Types

type Rep GetModelVersion :: Type -> Type #

NFData GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Methods

rnf :: GetModelVersion -> () #

Hashable GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

ToJSON GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

AWSRequest GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Associated Types

type AWSResponse GetModelVersion #

ToHeaders GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

ToPath GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

ToQuery GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

type Rep GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

type Rep GetModelVersion = D1 ('MetaData "GetModelVersion" "Amazonka.FraudDetector.GetModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetModelVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum) :*: S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse GetModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

newGetModelVersion Source #

Create a value of GetModelVersion 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:modelId:GetModelVersion', getModelVersion_modelId - The model ID.

$sel:modelType:GetModelVersion', getModelVersion_modelType - The model type.

$sel:modelVersionNumber:GetModelVersion', getModelVersion_modelVersionNumber - The model version number.

data GetModelVersionResponse Source #

See: newGetModelVersionResponse smart constructor.

Instances

Instances details
Eq GetModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Read GetModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Show GetModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Generic GetModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Associated Types

type Rep GetModelVersionResponse :: Type -> Type #

NFData GetModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

Methods

rnf :: GetModelVersionResponse -> () #

type Rep GetModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetModelVersion

type Rep GetModelVersionResponse = D1 ('MetaData "GetModelVersionResponse" "Amazonka.FraudDetector.GetModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetModelVersionResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelTypeEnum))) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "trainingDataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TrainingDataSourceEnum))))) :*: ((S1 ('MetaSel ('Just "externalEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExternalEventsDetail)) :*: S1 ('MetaSel ('Just "ingestedEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IngestedEventsDetail))) :*: (S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "trainingDataSchema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TrainingDataSchema)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

newGetModelVersionResponse Source #

Create a value of GetModelVersionResponse 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:status:GetModelVersionResponse', getModelVersionResponse_status - The model version status.

Possible values are:

  • TRAINING_IN_PROGRESS
  • TRAINING_COMPLETE
  • ACTIVATE_REQUESTED
  • ACTIVATE_IN_PROGRESS
  • ACTIVE
  • INACTIVATE_REQUESTED
  • INACTIVATE_IN_PROGRESS
  • INACTIVE
  • ERROR

$sel:modelType:GetModelVersion', getModelVersionResponse_modelType - The model type.

$sel:modelId:GetModelVersion', getModelVersionResponse_modelId - The model ID.

$sel:arn:GetModelVersionResponse', getModelVersionResponse_arn - The model version ARN.

$sel:trainingDataSource:GetModelVersionResponse', getModelVersionResponse_trainingDataSource - The training data source.

$sel:externalEventsDetail:GetModelVersionResponse', getModelVersionResponse_externalEventsDetail - The details of the external events data used for training the model version. This will be populated if the trainingDataSource is EXTERNAL_EVENTS

$sel:ingestedEventsDetail:GetModelVersionResponse', getModelVersionResponse_ingestedEventsDetail - The details of the ingested events data used for training the model version. This will be populated if the trainingDataSource is INGESTED_EVENTS.

$sel:modelVersionNumber:GetModelVersion', getModelVersionResponse_modelVersionNumber - The model version number.

$sel:trainingDataSchema:GetModelVersionResponse', getModelVersionResponse_trainingDataSchema - The training data schema.

$sel:httpStatus:GetModelVersionResponse', getModelVersionResponse_httpStatus - The response's http status code.

PutExternalModel

data PutExternalModel Source #

See: newPutExternalModel smart constructor.

Instances

Instances details
Eq PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Read PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Show PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Generic PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Associated Types

type Rep PutExternalModel :: Type -> Type #

NFData PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Methods

rnf :: PutExternalModel -> () #

Hashable PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

ToJSON PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

AWSRequest PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Associated Types

type AWSResponse PutExternalModel #

ToHeaders PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

ToPath PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

ToQuery PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

type Rep PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

type Rep PutExternalModel = D1 ('MetaData "PutExternalModel" "Amazonka.FraudDetector.PutExternalModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutExternalModel'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: (S1 ('MetaSel ('Just "modelEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelSource))) :*: ((S1 ('MetaSel ('Just "invokeModelEndpointRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "inputConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelInputConfiguration)) :*: (S1 ('MetaSel ('Just "outputConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelOutputConfiguration) :*: S1 ('MetaSel ('Just "modelEndpointStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelEndpointStatus)))))
type AWSResponse PutExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

data PutExternalModelResponse Source #

See: newPutExternalModelResponse smart constructor.

Instances

Instances details
Eq PutExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Read PutExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Show PutExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Generic PutExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

Associated Types

type Rep PutExternalModelResponse :: Type -> Type #

NFData PutExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

type Rep PutExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutExternalModel

type Rep PutExternalModelResponse = D1 ('MetaData "PutExternalModelResponse" "Amazonka.FraudDetector.PutExternalModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutExternalModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutExternalModelResponse Source #

Create a value of PutExternalModelResponse 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:PutExternalModelResponse', putExternalModelResponse_httpStatus - The response's http status code.

DeleteExternalModel

data DeleteExternalModel Source #

See: newDeleteExternalModel smart constructor.

Instances

Instances details
Eq DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Read DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Show DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Generic DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Associated Types

type Rep DeleteExternalModel :: Type -> Type #

NFData DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Methods

rnf :: DeleteExternalModel -> () #

Hashable DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

ToJSON DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

AWSRequest DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Associated Types

type AWSResponse DeleteExternalModel #

ToHeaders DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

ToPath DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

ToQuery DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

type Rep DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

type Rep DeleteExternalModel = D1 ('MetaData "DeleteExternalModel" "Amazonka.FraudDetector.DeleteExternalModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteExternalModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

newDeleteExternalModel Source #

Create a value of DeleteExternalModel 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:modelEndpoint:DeleteExternalModel', deleteExternalModel_modelEndpoint - The endpoint of the Amazon Sagemaker model to delete.

data DeleteExternalModelResponse Source #

See: newDeleteExternalModelResponse smart constructor.

Instances

Instances details
Eq DeleteExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Read DeleteExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Show DeleteExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Generic DeleteExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

Associated Types

type Rep DeleteExternalModelResponse :: Type -> Type #

NFData DeleteExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

type Rep DeleteExternalModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteExternalModel

type Rep DeleteExternalModelResponse = D1 ('MetaData "DeleteExternalModelResponse" "Amazonka.FraudDetector.DeleteExternalModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteExternalModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteExternalModelResponse Source #

Create a value of DeleteExternalModelResponse 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:DeleteExternalModelResponse', deleteExternalModelResponse_httpStatus - The response's http status code.

GetEntityTypes

data GetEntityTypes Source #

See: newGetEntityTypes smart constructor.

Instances

Instances details
Eq GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Read GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Show GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Generic GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Associated Types

type Rep GetEntityTypes :: Type -> Type #

NFData GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Methods

rnf :: GetEntityTypes -> () #

Hashable GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

ToJSON GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

AWSRequest GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Associated Types

type AWSResponse GetEntityTypes #

ToHeaders GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

ToPath GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

ToQuery GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

type Rep GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

type Rep GetEntityTypes = D1 ('MetaData "GetEntityTypes" "Amazonka.FraudDetector.GetEntityTypes" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEntityTypes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetEntityTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

newGetEntityTypes :: GetEntityTypes Source #

Create a value of GetEntityTypes 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:nextToken:GetEntityTypes', getEntityTypes_nextToken - The next token for the subsequent request.

$sel:name:GetEntityTypes', getEntityTypes_name - The name.

$sel:maxResults:GetEntityTypes', getEntityTypes_maxResults - The maximum number of objects to return for the request.

data GetEntityTypesResponse Source #

See: newGetEntityTypesResponse smart constructor.

Instances

Instances details
Eq GetEntityTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Read GetEntityTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Show GetEntityTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Generic GetEntityTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Associated Types

type Rep GetEntityTypesResponse :: Type -> Type #

NFData GetEntityTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

Methods

rnf :: GetEntityTypesResponse -> () #

type Rep GetEntityTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEntityTypes

type Rep GetEntityTypesResponse = D1 ('MetaData "GetEntityTypesResponse" "Amazonka.FraudDetector.GetEntityTypes" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEntityTypesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "entityTypes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EntityType])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetEntityTypesResponse Source #

Create a value of GetEntityTypesResponse 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:entityTypes:GetEntityTypesResponse', getEntityTypesResponse_entityTypes - An array of entity types.

$sel:nextToken:GetEntityTypes', getEntityTypesResponse_nextToken - The next page token.

$sel:httpStatus:GetEntityTypesResponse', getEntityTypesResponse_httpStatus - The response's http status code.

DeleteModel

data DeleteModel Source #

See: newDeleteModel smart constructor.

Instances

Instances details
Eq DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Read DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Show DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Generic DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Associated Types

type Rep DeleteModel :: Type -> Type #

NFData DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Methods

rnf :: DeleteModel -> () #

Hashable DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

ToJSON DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

AWSRequest DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Associated Types

type AWSResponse DeleteModel #

ToHeaders DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Methods

toHeaders :: DeleteModel -> [Header] #

ToPath DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

ToQuery DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

type Rep DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

type Rep DeleteModel = D1 ('MetaData "DeleteModel" "Amazonka.FraudDetector.DeleteModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum)))
type AWSResponse DeleteModel Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

newDeleteModel Source #

Create a value of DeleteModel 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:modelId:DeleteModel', deleteModel_modelId - The model ID of the model to delete.

$sel:modelType:DeleteModel', deleteModel_modelType - The model type of the model to delete.

data DeleteModelResponse Source #

See: newDeleteModelResponse smart constructor.

Instances

Instances details
Eq DeleteModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Read DeleteModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Show DeleteModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Generic DeleteModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Associated Types

type Rep DeleteModelResponse :: Type -> Type #

NFData DeleteModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

Methods

rnf :: DeleteModelResponse -> () #

type Rep DeleteModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteModel

type Rep DeleteModelResponse = D1 ('MetaData "DeleteModelResponse" "Amazonka.FraudDetector.DeleteModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteModelResponse Source #

Create a value of DeleteModelResponse 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:DeleteModelResponse', deleteModelResponse_httpStatus - The response's http status code.

UpdateModel

data UpdateModel Source #

See: newUpdateModel smart constructor.

Instances

Instances details
Eq UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Read UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Show UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Generic UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Associated Types

type Rep UpdateModel :: Type -> Type #

NFData UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Methods

rnf :: UpdateModel -> () #

Hashable UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

ToJSON UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

AWSRequest UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Associated Types

type AWSResponse UpdateModel #

ToHeaders UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Methods

toHeaders :: UpdateModel -> [Header] #

ToPath UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

ToQuery UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

type Rep UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

type Rep UpdateModel = D1 ('MetaData "UpdateModel" "Amazonka.FraudDetector.UpdateModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum))))
type AWSResponse UpdateModel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

newUpdateModel Source #

Create a value of UpdateModel 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:description:UpdateModel', updateModel_description - The new model description.

$sel:modelId:UpdateModel', updateModel_modelId - The model ID.

$sel:modelType:UpdateModel', updateModel_modelType - The model type.

data UpdateModelResponse Source #

See: newUpdateModelResponse smart constructor.

Instances

Instances details
Eq UpdateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Read UpdateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Show UpdateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Generic UpdateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Associated Types

type Rep UpdateModelResponse :: Type -> Type #

NFData UpdateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

Methods

rnf :: UpdateModelResponse -> () #

type Rep UpdateModelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateModel

type Rep UpdateModelResponse = D1 ('MetaData "UpdateModelResponse" "Amazonka.FraudDetector.UpdateModel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateModelResponse Source #

Create a value of UpdateModelResponse 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:UpdateModelResponse', updateModelResponse_httpStatus - The response's http status code.

CreateModelVersion

data CreateModelVersion Source #

See: newCreateModelVersion smart constructor.

Instances

Instances details
Eq CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Read CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Show CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Generic CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Associated Types

type Rep CreateModelVersion :: Type -> Type #

NFData CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Methods

rnf :: CreateModelVersion -> () #

Hashable CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

ToJSON CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

AWSRequest CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Associated Types

type AWSResponse CreateModelVersion #

ToHeaders CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

ToPath CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

ToQuery CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

type Rep CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

type Rep CreateModelVersion = D1 ('MetaData "CreateModelVersion" "Amazonka.FraudDetector.CreateModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateModelVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "externalEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExternalEventsDetail)) :*: (S1 ('MetaSel ('Just "ingestedEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IngestedEventsDetail)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])))) :*: ((S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum)) :*: (S1 ('MetaSel ('Just "trainingDataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TrainingDataSourceEnum) :*: S1 ('MetaSel ('Just "trainingDataSchema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TrainingDataSchema)))))
type AWSResponse CreateModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

newCreateModelVersion Source #

Create a value of CreateModelVersion 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:externalEventsDetail:CreateModelVersion', createModelVersion_externalEventsDetail - Details of the external events data used for model version training. Required if trainingDataSource is EXTERNAL_EVENTS.

$sel:ingestedEventsDetail:CreateModelVersion', createModelVersion_ingestedEventsDetail - Details of the ingested events data used for model version training. Required if trainingDataSource is INGESTED_EVENTS.

$sel:tags:CreateModelVersion', createModelVersion_tags - A collection of key and value pairs.

$sel:modelId:CreateModelVersion', createModelVersion_modelId - The model ID.

$sel:modelType:CreateModelVersion', createModelVersion_modelType - The model type.

$sel:trainingDataSource:CreateModelVersion', createModelVersion_trainingDataSource - The training data source location in Amazon S3.

$sel:trainingDataSchema:CreateModelVersion', createModelVersion_trainingDataSchema - The training data schema.

data CreateModelVersionResponse Source #

See: newCreateModelVersionResponse smart constructor.

Instances

Instances details
Eq CreateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Read CreateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Show CreateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Generic CreateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

Associated Types

type Rep CreateModelVersionResponse :: Type -> Type #

NFData CreateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

type Rep CreateModelVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateModelVersion

type Rep CreateModelVersionResponse = D1 ('MetaData "CreateModelVersionResponse" "Amazonka.FraudDetector.CreateModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateModelVersionResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelTypeEnum))) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newCreateModelVersionResponse Source #

Create a value of CreateModelVersionResponse 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:status:CreateModelVersionResponse', createModelVersionResponse_status - The model version status.

$sel:modelType:CreateModelVersion', createModelVersionResponse_modelType - The model type.

$sel:modelId:CreateModelVersion', createModelVersionResponse_modelId - The model ID.

$sel:modelVersionNumber:CreateModelVersionResponse', createModelVersionResponse_modelVersionNumber - The model version number of the model version created.

$sel:httpStatus:CreateModelVersionResponse', createModelVersionResponse_httpStatus - The response's http status code.

DeleteEventsByEventType

data DeleteEventsByEventType Source #

See: newDeleteEventsByEventType smart constructor.

Instances

Instances details
Eq DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Read DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Show DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Generic DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Associated Types

type Rep DeleteEventsByEventType :: Type -> Type #

NFData DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Methods

rnf :: DeleteEventsByEventType -> () #

Hashable DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

ToJSON DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

AWSRequest DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

ToHeaders DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

ToPath DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

ToQuery DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

type Rep DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

type Rep DeleteEventsByEventType = D1 ('MetaData "DeleteEventsByEventType" "Amazonka.FraudDetector.DeleteEventsByEventType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEventsByEventType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteEventsByEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

newDeleteEventsByEventType Source #

Create a value of DeleteEventsByEventType 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:eventTypeName:DeleteEventsByEventType', deleteEventsByEventType_eventTypeName - The name of the event type.

data DeleteEventsByEventTypeResponse Source #

See: newDeleteEventsByEventTypeResponse smart constructor.

Instances

Instances details
Eq DeleteEventsByEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Read DeleteEventsByEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Show DeleteEventsByEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Generic DeleteEventsByEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

Associated Types

type Rep DeleteEventsByEventTypeResponse :: Type -> Type #

NFData DeleteEventsByEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

type Rep DeleteEventsByEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventsByEventType

type Rep DeleteEventsByEventTypeResponse = D1 ('MetaData "DeleteEventsByEventTypeResponse" "Amazonka.FraudDetector.DeleteEventsByEventType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEventsByEventTypeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "eventsDeletionStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDeleteEventsByEventTypeResponse Source #

Create a value of DeleteEventsByEventTypeResponse 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:eventTypeName:DeleteEventsByEventType', deleteEventsByEventTypeResponse_eventTypeName - Name of event type for which to delete the events.

$sel:eventsDeletionStatus:DeleteEventsByEventTypeResponse', deleteEventsByEventTypeResponse_eventsDeletionStatus - The status of the delete request.

$sel:httpStatus:DeleteEventsByEventTypeResponse', deleteEventsByEventTypeResponse_httpStatus - The response's http status code.

PutKMSEncryptionKey

data PutKMSEncryptionKey Source #

See: newPutKMSEncryptionKey smart constructor.

Instances

Instances details
Eq PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Read PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Show PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Generic PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Associated Types

type Rep PutKMSEncryptionKey :: Type -> Type #

NFData PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Methods

rnf :: PutKMSEncryptionKey -> () #

Hashable PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

ToJSON PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

AWSRequest PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Associated Types

type AWSResponse PutKMSEncryptionKey #

ToHeaders PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

ToPath PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

ToQuery PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

type Rep PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

type Rep PutKMSEncryptionKey = D1 ('MetaData "PutKMSEncryptionKey" "Amazonka.FraudDetector.PutKMSEncryptionKey" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutKMSEncryptionKey'" 'PrefixI 'True) (S1 ('MetaSel ('Just "kmsEncryptionKeyArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse PutKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

newPutKMSEncryptionKey Source #

Create a value of PutKMSEncryptionKey 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:kmsEncryptionKeyArn:PutKMSEncryptionKey', putKMSEncryptionKey_kmsEncryptionKeyArn - The KMS encryption key ARN.

data PutKMSEncryptionKeyResponse Source #

See: newPutKMSEncryptionKeyResponse smart constructor.

Instances

Instances details
Eq PutKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Read PutKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Show PutKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Generic PutKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

Associated Types

type Rep PutKMSEncryptionKeyResponse :: Type -> Type #

NFData PutKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

type Rep PutKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutKMSEncryptionKey

type Rep PutKMSEncryptionKeyResponse = D1 ('MetaData "PutKMSEncryptionKeyResponse" "Amazonka.FraudDetector.PutKMSEncryptionKey" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutKMSEncryptionKeyResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutKMSEncryptionKeyResponse Source #

Create a value of PutKMSEncryptionKeyResponse 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:PutKMSEncryptionKeyResponse', putKMSEncryptionKeyResponse_httpStatus - The response's http status code.

DescribeDetector

data DescribeDetector Source #

See: newDescribeDetector smart constructor.

Instances

Instances details
Eq DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Read DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Show DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Generic DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Associated Types

type Rep DescribeDetector :: Type -> Type #

NFData DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Methods

rnf :: DescribeDetector -> () #

Hashable DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

ToJSON DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

AWSRequest DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Associated Types

type AWSResponse DescribeDetector #

ToHeaders DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

ToPath DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

ToQuery DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

type Rep DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

type Rep DescribeDetector = D1 ('MetaData "DescribeDetector" "Amazonka.FraudDetector.DescribeDetector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DescribeDetector'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

newDescribeDetector Source #

Create a value of DescribeDetector 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:nextToken:DescribeDetector', describeDetector_nextToken - The next token from the previous response.

$sel:maxResults:DescribeDetector', describeDetector_maxResults - The maximum number of results to return for the request.

$sel:detectorId:DescribeDetector', describeDetector_detectorId - The detector ID.

data DescribeDetectorResponse Source #

See: newDescribeDetectorResponse smart constructor.

Instances

Instances details
Eq DescribeDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Read DescribeDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Show DescribeDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Generic DescribeDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

Associated Types

type Rep DescribeDetectorResponse :: Type -> Type #

NFData DescribeDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

type Rep DescribeDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeDetector

type Rep DescribeDetectorResponse = D1 ('MetaData "DescribeDetectorResponse" "Amazonka.FraudDetector.DescribeDetector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DescribeDetectorResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "detectorVersionSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [DetectorVersionSummary])) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newDescribeDetectorResponse Source #

Create a value of DescribeDetectorResponse 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:detectorVersionSummaries:DescribeDetectorResponse', describeDetectorResponse_detectorVersionSummaries - The status and description for each detector version.

$sel:arn:DescribeDetectorResponse', describeDetectorResponse_arn - The detector ARN.

$sel:nextToken:DescribeDetector', describeDetectorResponse_nextToken - The next token to be used for subsequent requests.

$sel:detectorId:DescribeDetector', describeDetectorResponse_detectorId - The detector ID.

$sel:httpStatus:DescribeDetectorResponse', describeDetectorResponse_httpStatus - The response's http status code.

GetOutcomes

data GetOutcomes Source #

See: newGetOutcomes smart constructor.

Instances

Instances details
Eq GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Read GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Show GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Generic GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Associated Types

type Rep GetOutcomes :: Type -> Type #

NFData GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Methods

rnf :: GetOutcomes -> () #

Hashable GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

ToJSON GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

AWSRequest GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Associated Types

type AWSResponse GetOutcomes #

ToHeaders GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Methods

toHeaders :: GetOutcomes -> [Header] #

ToPath GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

ToQuery GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

type Rep GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

type Rep GetOutcomes = D1 ('MetaData "GetOutcomes" "Amazonka.FraudDetector.GetOutcomes" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetOutcomes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetOutcomes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

newGetOutcomes :: GetOutcomes Source #

Create a value of GetOutcomes 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:nextToken:GetOutcomes', getOutcomes_nextToken - The next page token for the request.

$sel:name:GetOutcomes', getOutcomes_name - The name of the outcome or outcomes to get.

$sel:maxResults:GetOutcomes', getOutcomes_maxResults - The maximum number of objects to return for the request.

data GetOutcomesResponse Source #

See: newGetOutcomesResponse smart constructor.

Instances

Instances details
Eq GetOutcomesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Read GetOutcomesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Show GetOutcomesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Generic GetOutcomesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Associated Types

type Rep GetOutcomesResponse :: Type -> Type #

NFData GetOutcomesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

Methods

rnf :: GetOutcomesResponse -> () #

type Rep GetOutcomesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetOutcomes

type Rep GetOutcomesResponse = D1 ('MetaData "GetOutcomesResponse" "Amazonka.FraudDetector.GetOutcomes" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetOutcomesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "outcomes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Outcome])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetOutcomesResponse Source #

Create a value of GetOutcomesResponse 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:outcomes:GetOutcomesResponse', getOutcomesResponse_outcomes - The outcomes.

$sel:nextToken:GetOutcomes', getOutcomesResponse_nextToken - The next page token for subsequent requests.

$sel:httpStatus:GetOutcomesResponse', getOutcomesResponse_httpStatus - The response's http status code.

GetEventPrediction

data GetEventPrediction Source #

See: newGetEventPrediction smart constructor.

Instances

Instances details
Eq GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Show GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Generic GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Associated Types

type Rep GetEventPrediction :: Type -> Type #

NFData GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Methods

rnf :: GetEventPrediction -> () #

Hashable GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

ToJSON GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

AWSRequest GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Associated Types

type AWSResponse GetEventPrediction #

ToHeaders GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

ToPath GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

ToQuery GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

type Rep GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

type Rep GetEventPrediction = D1 ('MetaData "GetEventPrediction" "Amazonka.FraudDetector.GetEventPrediction" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEventPrediction'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "externalModelEndpointDataBlobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text ModelEndpointDataBlob))))) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: ((S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "entities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Entity])) :*: (S1 ('MetaSel ('Just "eventTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text (Sensitive Text)))))))
type AWSResponse GetEventPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

newGetEventPrediction Source #

Create a value of GetEventPrediction 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:detectorVersionId:GetEventPrediction', getEventPrediction_detectorVersionId - The detector version ID.

$sel:externalModelEndpointDataBlobs:GetEventPrediction', getEventPrediction_externalModelEndpointDataBlobs - The Amazon SageMaker model endpoint input data blobs.

$sel:detectorId:GetEventPrediction', getEventPrediction_detectorId - The detector ID.

$sel:eventId:GetEventPrediction', getEventPrediction_eventId - The unique ID used to identify the event.

$sel:eventTypeName:GetEventPrediction', getEventPrediction_eventTypeName - The event type associated with the detector specified for the prediction.

$sel:entities:GetEventPrediction', getEventPrediction_entities - The entity type (associated with the detector's event type) and specific entity ID representing who performed the event. If an entity id is not available, use "UNKNOWN."

$sel:eventTimestamp:GetEventPrediction', getEventPrediction_eventTimestamp - Timestamp that defines when the event under evaluation occurred. The timestamp must be specified using ISO 8601 standard in UTC.

$sel:eventVariables:GetEventPrediction', getEventPrediction_eventVariables - Names of the event type's variables you defined in Amazon Fraud Detector to represent data elements and their corresponding values for the event you are sending for evaluation.

You must provide at least one eventVariable

To ensure most accurate fraud prediction and to simplify your data preparation, Amazon Fraud Detector will replace all missing variables or values as follows:

For Amazon Fraud Detector trained models:

If a null value is provided explicitly for a variable or if a variable is missing, model will replace the null value or the missing variable (no variable name in the eventVariables map) with calculated default mean/medians for numeric variables and with special values for categorical variables.

For imported SageMaker models:

If a null value is provided explicitly for a variable, the model and rules will use “null” as the value. If a variable is not provided (no variable name in the eventVariables map), model and rules will use the default value that is provided for the variable.

data GetEventPredictionResponse Source #

See: newGetEventPredictionResponse smart constructor.

Instances

Instances details
Eq GetEventPredictionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Read GetEventPredictionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Show GetEventPredictionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Generic GetEventPredictionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

Associated Types

type Rep GetEventPredictionResponse :: Type -> Type #

NFData GetEventPredictionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

type Rep GetEventPredictionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventPrediction

type Rep GetEventPredictionResponse = D1 ('MetaData "GetEventPredictionResponse" "Amazonka.FraudDetector.GetEventPrediction" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEventPredictionResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "modelScores") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelScores])) :*: S1 ('MetaSel ('Just "externalModelOutputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ExternalModelOutputs]))) :*: (S1 ('MetaSel ('Just "ruleResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [RuleResult])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetEventPredictionResponse Source #

Create a value of GetEventPredictionResponse 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:modelScores:GetEventPredictionResponse', getEventPredictionResponse_modelScores - The model scores. Amazon Fraud Detector generates model scores between 0 and 1000, where 0 is low fraud risk and 1000 is high fraud risk. Model scores are directly related to the false positive rate (FPR). For example, a score of 600 corresponds to an estimated 10% false positive rate whereas a score of 900 corresponds to an estimated 2% false positive rate.

$sel:externalModelOutputs:GetEventPredictionResponse', getEventPredictionResponse_externalModelOutputs - The model scores for Amazon SageMaker models.

$sel:ruleResults:GetEventPredictionResponse', getEventPredictionResponse_ruleResults - The results from the rules.

$sel:httpStatus:GetEventPredictionResponse', getEventPredictionResponse_httpStatus - The response's http status code.

DeleteBatchPredictionJob

data DeleteBatchPredictionJob Source #

See: newDeleteBatchPredictionJob smart constructor.

Instances

Instances details
Eq DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Read DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Show DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Generic DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Associated Types

type Rep DeleteBatchPredictionJob :: Type -> Type #

NFData DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Hashable DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

ToJSON DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

AWSRequest DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

ToHeaders DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

ToPath DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

ToQuery DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

type Rep DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

type Rep DeleteBatchPredictionJob = D1 ('MetaData "DeleteBatchPredictionJob" "Amazonka.FraudDetector.DeleteBatchPredictionJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteBatchPredictionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

newDeleteBatchPredictionJob Source #

Create a value of DeleteBatchPredictionJob 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:jobId:DeleteBatchPredictionJob', deleteBatchPredictionJob_jobId - The ID of the batch prediction job to delete.

data DeleteBatchPredictionJobResponse Source #

See: newDeleteBatchPredictionJobResponse smart constructor.

Instances

Instances details
Eq DeleteBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Read DeleteBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Show DeleteBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Generic DeleteBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

Associated Types

type Rep DeleteBatchPredictionJobResponse :: Type -> Type #

NFData DeleteBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

type Rep DeleteBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteBatchPredictionJob

type Rep DeleteBatchPredictionJobResponse = D1 ('MetaData "DeleteBatchPredictionJobResponse" "Amazonka.FraudDetector.DeleteBatchPredictionJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteBatchPredictionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteBatchPredictionJobResponse Source #

Create a value of DeleteBatchPredictionJobResponse 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:DeleteBatchPredictionJobResponse', deleteBatchPredictionJobResponse_httpStatus - The response's http status code.

GetEvent

data GetEvent Source #

See: newGetEvent smart constructor.

Constructors

GetEvent' Text Text 

Instances

Instances details
Eq GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Read GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Show GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Generic GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Associated Types

type Rep GetEvent :: Type -> Type #

Methods

from :: GetEvent -> Rep GetEvent x #

to :: Rep GetEvent x -> GetEvent #

NFData GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Methods

rnf :: GetEvent -> () #

Hashable GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Methods

hashWithSalt :: Int -> GetEvent -> Int #

hash :: GetEvent -> Int #

ToJSON GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

AWSRequest GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Associated Types

type AWSResponse GetEvent #

ToHeaders GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Methods

toHeaders :: GetEvent -> [Header] #

ToPath GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

ToQuery GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

type Rep GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

type Rep GetEvent = D1 ('MetaData "GetEvent" "Amazonka.FraudDetector.GetEvent" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEvent'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

newGetEvent Source #

Create a value of GetEvent 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:eventId:GetEvent', getEvent_eventId - The ID of the event to retrieve.

$sel:eventTypeName:GetEvent', getEvent_eventTypeName - The event type of the event to retrieve.

data GetEventResponse Source #

See: newGetEventResponse smart constructor.

Instances

Instances details
Eq GetEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Show GetEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Generic GetEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Associated Types

type Rep GetEventResponse :: Type -> Type #

NFData GetEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

Methods

rnf :: GetEventResponse -> () #

type Rep GetEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEvent

type Rep GetEventResponse = D1 ('MetaData "GetEventResponse" "Amazonka.FraudDetector.GetEvent" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEventResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "event") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Event)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetEventResponse Source #

Create a value of GetEventResponse 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:event:GetEventResponse', getEventResponse_event - The details of the event.

$sel:httpStatus:GetEventResponse', getEventResponse_httpStatus - The response's http status code.

UpdateRuleMetadata

data UpdateRuleMetadata Source #

See: newUpdateRuleMetadata smart constructor.

Instances

Instances details
Eq UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Read UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Show UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Generic UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Associated Types

type Rep UpdateRuleMetadata :: Type -> Type #

NFData UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Methods

rnf :: UpdateRuleMetadata -> () #

Hashable UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

ToJSON UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

AWSRequest UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Associated Types

type AWSResponse UpdateRuleMetadata #

ToHeaders UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

ToPath UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

ToQuery UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

type Rep UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

type Rep UpdateRuleMetadata = D1 ('MetaData "UpdateRuleMetadata" "Amazonka.FraudDetector.UpdateRuleMetadata" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateRuleMetadata'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Rule) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse UpdateRuleMetadata Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

newUpdateRuleMetadata Source #

Create a value of UpdateRuleMetadata 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:rule:UpdateRuleMetadata', updateRuleMetadata_rule - The rule to update.

$sel:description:UpdateRuleMetadata', updateRuleMetadata_description - The rule description.

data UpdateRuleMetadataResponse Source #

See: newUpdateRuleMetadataResponse smart constructor.

Instances

Instances details
Eq UpdateRuleMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Read UpdateRuleMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Show UpdateRuleMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Generic UpdateRuleMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

Associated Types

type Rep UpdateRuleMetadataResponse :: Type -> Type #

NFData UpdateRuleMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

type Rep UpdateRuleMetadataResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateRuleMetadata

type Rep UpdateRuleMetadataResponse = D1 ('MetaData "UpdateRuleMetadataResponse" "Amazonka.FraudDetector.UpdateRuleMetadata" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateRuleMetadataResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateRuleMetadataResponse Source #

Create a value of UpdateRuleMetadataResponse 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:UpdateRuleMetadataResponse', updateRuleMetadataResponse_httpStatus - The response's http status code.

PutEntityType

data PutEntityType Source #

See: newPutEntityType smart constructor.

Constructors

PutEntityType' (Maybe Text) (Maybe [Tag]) Text 

Instances

Instances details
Eq PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Read PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Show PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Generic PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Associated Types

type Rep PutEntityType :: Type -> Type #

NFData PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Methods

rnf :: PutEntityType -> () #

Hashable PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

ToJSON PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

AWSRequest PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Associated Types

type AWSResponse PutEntityType #

ToHeaders PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

ToPath PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

ToQuery PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

type Rep PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

type Rep PutEntityType = D1 ('MetaData "PutEntityType" "Amazonka.FraudDetector.PutEntityType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutEntityType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse PutEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

newPutEntityType Source #

Create a value of PutEntityType 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:description:PutEntityType', putEntityType_description - The description.

$sel:tags:PutEntityType', putEntityType_tags - A collection of key and value pairs.

$sel:name:PutEntityType', putEntityType_name - The name of the entity type.

data PutEntityTypeResponse Source #

See: newPutEntityTypeResponse smart constructor.

Instances

Instances details
Eq PutEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Read PutEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Show PutEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Generic PutEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Associated Types

type Rep PutEntityTypeResponse :: Type -> Type #

NFData PutEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

Methods

rnf :: PutEntityTypeResponse -> () #

type Rep PutEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEntityType

type Rep PutEntityTypeResponse = D1 ('MetaData "PutEntityTypeResponse" "Amazonka.FraudDetector.PutEntityType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutEntityTypeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutEntityTypeResponse Source #

Create a value of PutEntityTypeResponse 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:PutEntityTypeResponse', putEntityTypeResponse_httpStatus - The response's http status code.

CreateBatchPredictionJob

data CreateBatchPredictionJob Source #

See: newCreateBatchPredictionJob smart constructor.

Instances

Instances details
Eq CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Read CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Show CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Generic CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Associated Types

type Rep CreateBatchPredictionJob :: Type -> Type #

NFData CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Hashable CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

ToJSON CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

AWSRequest CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

ToHeaders CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

ToPath CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

ToQuery CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

type Rep CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

type Rep CreateBatchPredictionJob = D1 ('MetaData "CreateBatchPredictionJob" "Amazonka.FraudDetector.CreateBatchPredictionJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateBatchPredictionJob'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "detectorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "inputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: ((S1 ('MetaSel ('Just "outputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "detectorName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "iamRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse CreateBatchPredictionJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

newCreateBatchPredictionJob Source #

Create a value of CreateBatchPredictionJob 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:detectorVersion:CreateBatchPredictionJob', createBatchPredictionJob_detectorVersion - The detector version.

$sel:tags:CreateBatchPredictionJob', createBatchPredictionJob_tags - A collection of key and value pairs.

$sel:jobId:CreateBatchPredictionJob', createBatchPredictionJob_jobId - The ID of the batch prediction job.

$sel:inputPath:CreateBatchPredictionJob', createBatchPredictionJob_inputPath - The Amazon S3 location of your training file.

$sel:outputPath:CreateBatchPredictionJob', createBatchPredictionJob_outputPath - The Amazon S3 location of your output file.

$sel:eventTypeName:CreateBatchPredictionJob', createBatchPredictionJob_eventTypeName - The name of the event type.

$sel:detectorName:CreateBatchPredictionJob', createBatchPredictionJob_detectorName - The name of the detector.

$sel:iamRoleArn:CreateBatchPredictionJob', createBatchPredictionJob_iamRoleArn - The ARN of the IAM role to use for this job request.

data CreateBatchPredictionJobResponse Source #

See: newCreateBatchPredictionJobResponse smart constructor.

Instances

Instances details
Eq CreateBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Read CreateBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Show CreateBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Generic CreateBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

Associated Types

type Rep CreateBatchPredictionJobResponse :: Type -> Type #

NFData CreateBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

type Rep CreateBatchPredictionJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CreateBatchPredictionJob

type Rep CreateBatchPredictionJobResponse = D1 ('MetaData "CreateBatchPredictionJobResponse" "Amazonka.FraudDetector.CreateBatchPredictionJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CreateBatchPredictionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateBatchPredictionJobResponse Source #

Create a value of CreateBatchPredictionJobResponse 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:CreateBatchPredictionJobResponse', createBatchPredictionJobResponse_httpStatus - The response's http status code.

DeleteEntityType

data DeleteEntityType Source #

See: newDeleteEntityType smart constructor.

Constructors

DeleteEntityType' Text 

Instances

Instances details
Eq DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Read DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Show DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Generic DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Associated Types

type Rep DeleteEntityType :: Type -> Type #

NFData DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Methods

rnf :: DeleteEntityType -> () #

Hashable DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

ToJSON DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

AWSRequest DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Associated Types

type AWSResponse DeleteEntityType #

ToHeaders DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

ToPath DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

ToQuery DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

type Rep DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

type Rep DeleteEntityType = D1 ('MetaData "DeleteEntityType" "Amazonka.FraudDetector.DeleteEntityType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEntityType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteEntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

newDeleteEntityType Source #

Create a value of DeleteEntityType 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:name:DeleteEntityType', deleteEntityType_name - The name of the entity type to delete.

data DeleteEntityTypeResponse Source #

See: newDeleteEntityTypeResponse smart constructor.

Instances

Instances details
Eq DeleteEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Read DeleteEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Show DeleteEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Generic DeleteEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

Associated Types

type Rep DeleteEntityTypeResponse :: Type -> Type #

NFData DeleteEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

type Rep DeleteEntityTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEntityType

type Rep DeleteEntityTypeResponse = D1 ('MetaData "DeleteEntityTypeResponse" "Amazonka.FraudDetector.DeleteEntityType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEntityTypeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEntityTypeResponse Source #

Create a value of DeleteEntityTypeResponse 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:DeleteEntityTypeResponse', deleteEntityTypeResponse_httpStatus - The response's http status code.

DeleteEventType

data DeleteEventType Source #

See: newDeleteEventType smart constructor.

Constructors

DeleteEventType' Text 

Instances

Instances details
Eq DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Read DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Show DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Generic DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Associated Types

type Rep DeleteEventType :: Type -> Type #

NFData DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Methods

rnf :: DeleteEventType -> () #

Hashable DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

ToJSON DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

AWSRequest DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Associated Types

type AWSResponse DeleteEventType #

ToHeaders DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

ToPath DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

ToQuery DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

type Rep DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

type Rep DeleteEventType = D1 ('MetaData "DeleteEventType" "Amazonka.FraudDetector.DeleteEventType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEventType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

newDeleteEventType Source #

Create a value of DeleteEventType 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:name:DeleteEventType', deleteEventType_name - The name of the event type to delete.

data DeleteEventTypeResponse Source #

See: newDeleteEventTypeResponse smart constructor.

Instances

Instances details
Eq DeleteEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Read DeleteEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Show DeleteEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Generic DeleteEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Associated Types

type Rep DeleteEventTypeResponse :: Type -> Type #

NFData DeleteEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

Methods

rnf :: DeleteEventTypeResponse -> () #

type Rep DeleteEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteEventType

type Rep DeleteEventTypeResponse = D1 ('MetaData "DeleteEventTypeResponse" "Amazonka.FraudDetector.DeleteEventType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteEventTypeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEventTypeResponse Source #

Create a value of DeleteEventTypeResponse 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:DeleteEventTypeResponse', deleteEventTypeResponse_httpStatus - The response's http status code.

PutEventType

data PutEventType Source #

See: newPutEventType smart constructor.

Instances

Instances details
Eq PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Read PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Show PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Generic PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Associated Types

type Rep PutEventType :: Type -> Type #

NFData PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Methods

rnf :: PutEventType -> () #

Hashable PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

ToJSON PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

AWSRequest PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Associated Types

type AWSResponse PutEventType #

ToHeaders PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

ToPath PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

ToQuery PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

type Rep PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

type Rep PutEventType = D1 ('MetaData "PutEventType" "Amazonka.FraudDetector.PutEventType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutEventType'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "labels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "eventIngestion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EventIngestion)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "eventVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: S1 ('MetaSel ('Just "entityTypes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))))
type AWSResponse PutEventType Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

newPutEventType Source #

Create a value of PutEventType 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:labels:PutEventType', putEventType_labels - The event type labels.

$sel:eventIngestion:PutEventType', putEventType_eventIngestion - Specifies if ingenstion is enabled or disabled.

$sel:description:PutEventType', putEventType_description - The description of the event type.

$sel:tags:PutEventType', putEventType_tags - A collection of key and value pairs.

$sel:name:PutEventType', putEventType_name - The name.

$sel:eventVariables:PutEventType', putEventType_eventVariables - The event type variables.

$sel:entityTypes:PutEventType', putEventType_entityTypes - The entity type for the event type. Example entity types: customer, merchant, account.

data PutEventTypeResponse Source #

See: newPutEventTypeResponse smart constructor.

Instances

Instances details
Eq PutEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Read PutEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Show PutEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Generic PutEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Associated Types

type Rep PutEventTypeResponse :: Type -> Type #

NFData PutEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

Methods

rnf :: PutEventTypeResponse -> () #

type Rep PutEventTypeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutEventType

type Rep PutEventTypeResponse = D1 ('MetaData "PutEventTypeResponse" "Amazonka.FraudDetector.PutEventType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutEventTypeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutEventTypeResponse Source #

Create a value of PutEventTypeResponse 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:PutEventTypeResponse', putEventTypeResponse_httpStatus - The response's http status code.

UpdateDetectorVersionStatus

data UpdateDetectorVersionStatus Source #

See: newUpdateDetectorVersionStatus smart constructor.

Instances

Instances details
Eq UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Read UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Show UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Generic UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Associated Types

type Rep UpdateDetectorVersionStatus :: Type -> Type #

NFData UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Hashable UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

ToJSON UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

AWSRequest UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

ToHeaders UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

ToPath UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

ToQuery UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

type Rep UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

type Rep UpdateDetectorVersionStatus = D1 ('MetaData "UpdateDetectorVersionStatus" "Amazonka.FraudDetector.UpdateDetectorVersionStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateDetectorVersionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DetectorVersionStatus))))
type AWSResponse UpdateDetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

data UpdateDetectorVersionStatusResponse Source #

Instances

Instances details
Eq UpdateDetectorVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Read UpdateDetectorVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Show UpdateDetectorVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

Generic UpdateDetectorVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

NFData UpdateDetectorVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

type Rep UpdateDetectorVersionStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersionStatus

type Rep UpdateDetectorVersionStatusResponse = D1 ('MetaData "UpdateDetectorVersionStatusResponse" "Amazonka.FraudDetector.UpdateDetectorVersionStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateDetectorVersionStatusResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateDetectorVersionStatusResponse Source #

Create a value of UpdateDetectorVersionStatusResponse 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:UpdateDetectorVersionStatusResponse', updateDetectorVersionStatusResponse_httpStatus - The response's http status code.

CancelBatchImportJob

data CancelBatchImportJob Source #

See: newCancelBatchImportJob smart constructor.

Instances

Instances details
Eq CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Read CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Show CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Generic CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Associated Types

type Rep CancelBatchImportJob :: Type -> Type #

NFData CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Methods

rnf :: CancelBatchImportJob -> () #

Hashable CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

ToJSON CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

AWSRequest CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Associated Types

type AWSResponse CancelBatchImportJob #

ToHeaders CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

ToPath CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

ToQuery CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

type Rep CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

type Rep CancelBatchImportJob = D1 ('MetaData "CancelBatchImportJob" "Amazonka.FraudDetector.CancelBatchImportJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CancelBatchImportJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse CancelBatchImportJob Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

newCancelBatchImportJob Source #

Create a value of CancelBatchImportJob 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:jobId:CancelBatchImportJob', cancelBatchImportJob_jobId - The ID of an in-progress batch import job to cancel.

Amazon Fraud Detector will throw an error if the batch import job is in FAILED, CANCELED, or COMPLETED state.

data CancelBatchImportJobResponse Source #

See: newCancelBatchImportJobResponse smart constructor.

Instances

Instances details
Eq CancelBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Read CancelBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Show CancelBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Generic CancelBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

Associated Types

type Rep CancelBatchImportJobResponse :: Type -> Type #

NFData CancelBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

type Rep CancelBatchImportJobResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.CancelBatchImportJob

type Rep CancelBatchImportJobResponse = D1 ('MetaData "CancelBatchImportJobResponse" "Amazonka.FraudDetector.CancelBatchImportJob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "CancelBatchImportJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCancelBatchImportJobResponse Source #

Create a value of CancelBatchImportJobResponse 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:CancelBatchImportJobResponse', cancelBatchImportJobResponse_httpStatus - The response's http status code.

SendEvent

data SendEvent Source #

See: newSendEvent smart constructor.

Instances

Instances details
Eq SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Show SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Generic SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Associated Types

type Rep SendEvent :: Type -> Type #

NFData SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Methods

rnf :: SendEvent -> () #

Hashable SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

ToJSON SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

AWSRequest SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Associated Types

type AWSResponse SendEvent #

ToHeaders SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Methods

toHeaders :: SendEvent -> [Header] #

ToPath SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

ToQuery SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

type Rep SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

type Rep SendEvent = D1 ('MetaData "SendEvent" "Amazonka.FraudDetector.SendEvent" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "SendEvent'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "labelTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "assignedLabel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "eventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: ((S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "eventVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text (Sensitive Text))) :*: S1 ('MetaSel ('Just "entities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Entity])))))
type AWSResponse SendEvent Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

newSendEvent Source #

Create a value of SendEvent 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:labelTimestamp:SendEvent', sendEvent_labelTimestamp - The timestamp associated with the label. Required if specifying assignedLabel.

$sel:assignedLabel:SendEvent', sendEvent_assignedLabel - The label to associate with the event. Required if specifying labelTimestamp.

$sel:eventId:SendEvent', sendEvent_eventId - The event ID to upload.

$sel:eventTypeName:SendEvent', sendEvent_eventTypeName - The event type name of the event.

$sel:eventTimestamp:SendEvent', sendEvent_eventTimestamp - The timestamp that defines when the event under evaluation occurred. The timestamp must be specified using ISO 8601 standard in UTC.

$sel:eventVariables:SendEvent', sendEvent_eventVariables - Names of the event type's variables you defined in Amazon Fraud Detector to represent data elements and their corresponding values for the event you are sending for evaluation.

$sel:entities:SendEvent', sendEvent_entities - An array of entities.

data SendEventResponse Source #

See: newSendEventResponse smart constructor.

Constructors

SendEventResponse' Int 

Instances

Instances details
Eq SendEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Read SendEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Show SendEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Generic SendEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Associated Types

type Rep SendEventResponse :: Type -> Type #

NFData SendEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

Methods

rnf :: SendEventResponse -> () #

type Rep SendEventResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.SendEvent

type Rep SendEventResponse = D1 ('MetaData "SendEventResponse" "Amazonka.FraudDetector.SendEvent" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "SendEventResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newSendEventResponse Source #

Create a value of SendEventResponse 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:SendEventResponse', sendEventResponse_httpStatus - The response's http status code.

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Constructors

TagResource' Text [Tag] 

Instances

Instances details
Eq TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Read TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Show TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Generic TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

NFData TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Methods

rnf :: TagResource -> () #

Hashable TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

ToJSON TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Associated Types

type AWSResponse TagResource #

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.FraudDetector.TagResource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Tag])))
type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

newTagResource Source #

Create a value of TagResource 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:resourceARN:TagResource', tagResource_resourceARN - The resource ARN.

$sel:tags:TagResource', tagResource_tags - The tags to assign to the resource.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

Methods

rnf :: TagResourceResponse -> () #

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.FraudDetector.TagResource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "TagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourceResponse Source #

Create a value of TagResourceResponse 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:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.

GetKMSEncryptionKey

data GetKMSEncryptionKey Source #

See: newGetKMSEncryptionKey smart constructor.

Constructors

GetKMSEncryptionKey' 

Instances

Instances details
Eq GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Read GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Show GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Generic GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Associated Types

type Rep GetKMSEncryptionKey :: Type -> Type #

NFData GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Methods

rnf :: GetKMSEncryptionKey -> () #

Hashable GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

ToJSON GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

AWSRequest GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Associated Types

type AWSResponse GetKMSEncryptionKey #

ToHeaders GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

ToPath GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

ToQuery GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

type Rep GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

type Rep GetKMSEncryptionKey = D1 ('MetaData "GetKMSEncryptionKey" "Amazonka.FraudDetector.GetKMSEncryptionKey" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetKMSEncryptionKey'" 'PrefixI 'False) (U1 :: Type -> Type))
type AWSResponse GetKMSEncryptionKey Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

newGetKMSEncryptionKey :: GetKMSEncryptionKey Source #

Create a value of GetKMSEncryptionKey with all optional fields omitted.

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

data GetKMSEncryptionKeyResponse Source #

See: newGetKMSEncryptionKeyResponse smart constructor.

Instances

Instances details
Eq GetKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Read GetKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Show GetKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Generic GetKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

Associated Types

type Rep GetKMSEncryptionKeyResponse :: Type -> Type #

NFData GetKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

type Rep GetKMSEncryptionKeyResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetKMSEncryptionKey

type Rep GetKMSEncryptionKeyResponse = D1 ('MetaData "GetKMSEncryptionKeyResponse" "Amazonka.FraudDetector.GetKMSEncryptionKey" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetKMSEncryptionKeyResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "kmsKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe KMSKey)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetKMSEncryptionKeyResponse Source #

Create a value of GetKMSEncryptionKeyResponse 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:kmsKey:GetKMSEncryptionKeyResponse', getKMSEncryptionKeyResponse_kmsKey - The KMS encryption key.

$sel:httpStatus:GetKMSEncryptionKeyResponse', getKMSEncryptionKeyResponse_httpStatus - The response's http status code.

UpdateEventLabel

data UpdateEventLabel Source #

See: newUpdateEventLabel smart constructor.

Instances

Instances details
Eq UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Read UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Show UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Generic UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Associated Types

type Rep UpdateEventLabel :: Type -> Type #

NFData UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Methods

rnf :: UpdateEventLabel -> () #

Hashable UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

ToJSON UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

AWSRequest UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Associated Types

type AWSResponse UpdateEventLabel #

ToHeaders UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

ToPath UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

ToQuery UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

type Rep UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

type Rep UpdateEventLabel = D1 ('MetaData "UpdateEventLabel" "Amazonka.FraudDetector.UpdateEventLabel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateEventLabel'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "eventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "assignedLabel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "labelTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse UpdateEventLabel Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

newUpdateEventLabel Source #

Create a value of UpdateEventLabel 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:eventId:UpdateEventLabel', updateEventLabel_eventId - The ID of the event associated with the label to update.

$sel:eventTypeName:UpdateEventLabel', updateEventLabel_eventTypeName - The event type of the event associated with the label to update.

$sel:assignedLabel:UpdateEventLabel', updateEventLabel_assignedLabel - The new label to assign to the event.

$sel:labelTimestamp:UpdateEventLabel', updateEventLabel_labelTimestamp - The timestamp associated with the label. The timestamp must be specified using ISO 8601 standard in UTC.

data UpdateEventLabelResponse Source #

See: newUpdateEventLabelResponse smart constructor.

Instances

Instances details
Eq UpdateEventLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Read UpdateEventLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Show UpdateEventLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Generic UpdateEventLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

Associated Types

type Rep UpdateEventLabelResponse :: Type -> Type #

NFData UpdateEventLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

type Rep UpdateEventLabelResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateEventLabel

type Rep UpdateEventLabelResponse = D1 ('MetaData "UpdateEventLabelResponse" "Amazonka.FraudDetector.UpdateEventLabel" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateEventLabelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateEventLabelResponse Source #

Create a value of UpdateEventLabelResponse 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:UpdateEventLabelResponse', updateEventLabelResponse_httpStatus - The response's http status code.

GetBatchImportJobs

data GetBatchImportJobs Source #

See: newGetBatchImportJobs smart constructor.

Instances

Instances details
Eq GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Read GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Show GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Generic GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Associated Types

type Rep GetBatchImportJobs :: Type -> Type #

NFData GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Methods

rnf :: GetBatchImportJobs -> () #

Hashable GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

ToJSON GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

AWSRequest GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Associated Types

type AWSResponse GetBatchImportJobs #

ToHeaders GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

ToPath GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

ToQuery GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

type Rep GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

type Rep GetBatchImportJobs = D1 ('MetaData "GetBatchImportJobs" "Amazonka.FraudDetector.GetBatchImportJobs" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetBatchImportJobs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetBatchImportJobs Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

newGetBatchImportJobs :: GetBatchImportJobs Source #

Create a value of GetBatchImportJobs 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:jobId:GetBatchImportJobs', getBatchImportJobs_jobId - The ID of the batch import job to get.

$sel:nextToken:GetBatchImportJobs', getBatchImportJobs_nextToken - The next token from the previous request.

$sel:maxResults:GetBatchImportJobs', getBatchImportJobs_maxResults - The maximum number of objects to return for request.

data GetBatchImportJobsResponse Source #

See: newGetBatchImportJobsResponse smart constructor.

Instances

Instances details
Eq GetBatchImportJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Read GetBatchImportJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Show GetBatchImportJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Generic GetBatchImportJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

Associated Types

type Rep GetBatchImportJobsResponse :: Type -> Type #

NFData GetBatchImportJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

type Rep GetBatchImportJobsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetBatchImportJobs

type Rep GetBatchImportJobsResponse = D1 ('MetaData "GetBatchImportJobsResponse" "Amazonka.FraudDetector.GetBatchImportJobs" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetBatchImportJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "batchImports") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [BatchImport])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetBatchImportJobsResponse Source #

Create a value of GetBatchImportJobsResponse 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:nextToken:GetBatchImportJobs', getBatchImportJobsResponse_nextToken - The next token for the subsequent resquest.

$sel:batchImports:GetBatchImportJobsResponse', getBatchImportJobsResponse_batchImports - An array containing the details of each batch import job.

$sel:httpStatus:GetBatchImportJobsResponse', getBatchImportJobsResponse_httpStatus - The response's http status code.

GetDeleteEventsByEventTypeStatus

data GetDeleteEventsByEventTypeStatus Source #

See: newGetDeleteEventsByEventTypeStatus smart constructor.

Instances

Instances details
Eq GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Read GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Show GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Generic GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Associated Types

type Rep GetDeleteEventsByEventTypeStatus :: Type -> Type #

NFData GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Hashable GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

ToJSON GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

AWSRequest GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

ToHeaders GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

ToPath GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

ToQuery GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

type Rep GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

type Rep GetDeleteEventsByEventTypeStatus = D1 ('MetaData "GetDeleteEventsByEventTypeStatus" "Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetDeleteEventsByEventTypeStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetDeleteEventsByEventTypeStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

newGetDeleteEventsByEventTypeStatus Source #

Create a value of GetDeleteEventsByEventTypeStatus 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:eventTypeName:GetDeleteEventsByEventTypeStatus', getDeleteEventsByEventTypeStatus_eventTypeName - Name of event type for which to get the deletion status.

data GetDeleteEventsByEventTypeStatusResponse Source #

Instances

Instances details
Eq GetDeleteEventsByEventTypeStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Read GetDeleteEventsByEventTypeStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Show GetDeleteEventsByEventTypeStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

Generic GetDeleteEventsByEventTypeStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

NFData GetDeleteEventsByEventTypeStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

type Rep GetDeleteEventsByEventTypeStatusResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus

type Rep GetDeleteEventsByEventTypeStatusResponse = D1 ('MetaData "GetDeleteEventsByEventTypeStatusResponse" "Amazonka.FraudDetector.GetDeleteEventsByEventTypeStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetDeleteEventsByEventTypeStatusResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "eventsDeletionStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AsyncJobStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

DeleteOutcome

data DeleteOutcome Source #

See: newDeleteOutcome smart constructor.

Constructors

DeleteOutcome' Text 

Instances

Instances details
Eq DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Read DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Show DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Generic DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Associated Types

type Rep DeleteOutcome :: Type -> Type #

NFData DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Methods

rnf :: DeleteOutcome -> () #

Hashable DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

ToJSON DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

AWSRequest DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Associated Types

type AWSResponse DeleteOutcome #

ToHeaders DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

ToPath DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

ToQuery DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

type Rep DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

type Rep DeleteOutcome = D1 ('MetaData "DeleteOutcome" "Amazonka.FraudDetector.DeleteOutcome" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteOutcome'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

newDeleteOutcome Source #

Create a value of DeleteOutcome 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:name:DeleteOutcome', deleteOutcome_name - The name of the outcome to delete.

data DeleteOutcomeResponse Source #

See: newDeleteOutcomeResponse smart constructor.

Instances

Instances details
Eq DeleteOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Read DeleteOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Show DeleteOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Generic DeleteOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Associated Types

type Rep DeleteOutcomeResponse :: Type -> Type #

NFData DeleteOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

Methods

rnf :: DeleteOutcomeResponse -> () #

type Rep DeleteOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteOutcome

type Rep DeleteOutcomeResponse = D1 ('MetaData "DeleteOutcomeResponse" "Amazonka.FraudDetector.DeleteOutcome" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteOutcomeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteOutcomeResponse Source #

Create a value of DeleteOutcomeResponse 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:DeleteOutcomeResponse', deleteOutcomeResponse_httpStatus - The response's http status code.

GetRules

data GetRules Source #

See: newGetRules smart constructor.

Instances

Instances details
Eq GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Read GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Show GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Generic GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Associated Types

type Rep GetRules :: Type -> Type #

Methods

from :: GetRules -> Rep GetRules x #

to :: Rep GetRules x -> GetRules #

NFData GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Methods

rnf :: GetRules -> () #

Hashable GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Methods

hashWithSalt :: Int -> GetRules -> Int #

hash :: GetRules -> Int #

ToJSON GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

AWSRequest GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Associated Types

type AWSResponse GetRules #

ToHeaders GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Methods

toHeaders :: GetRules -> [Header] #

ToPath GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

ToQuery GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

type Rep GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

type Rep GetRules = D1 ('MetaData "GetRules" "Amazonka.FraudDetector.GetRules" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetRules'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "ruleVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "ruleId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse GetRules Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

newGetRules Source #

Create a value of GetRules 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:ruleVersion:GetRules', getRules_ruleVersion - The rule version.

$sel:ruleId:GetRules', getRules_ruleId - The rule ID.

$sel:nextToken:GetRules', getRules_nextToken - The next page token.

$sel:maxResults:GetRules', getRules_maxResults - The maximum number of rules to return for the request.

$sel:detectorId:GetRules', getRules_detectorId - The detector ID.

data GetRulesResponse Source #

See: newGetRulesResponse smart constructor.

Instances

Instances details
Eq GetRulesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Show GetRulesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Generic GetRulesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Associated Types

type Rep GetRulesResponse :: Type -> Type #

NFData GetRulesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

Methods

rnf :: GetRulesResponse -> () #

type Rep GetRulesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetRules

type Rep GetRulesResponse = D1 ('MetaData "GetRulesResponse" "Amazonka.FraudDetector.GetRules" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetRulesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "ruleDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [RuleDetail])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetRulesResponse Source #

Create a value of GetRulesResponse 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:ruleDetails:GetRulesResponse', getRulesResponse_ruleDetails - The details of the requested rule.

$sel:nextToken:GetRules', getRulesResponse_nextToken - The next page token to be used in subsequent requests.

$sel:httpStatus:GetRulesResponse', getRulesResponse_httpStatus - The response's http status code.

GetVariables

data GetVariables Source #

See: newGetVariables smart constructor.

Instances

Instances details
Eq GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Read GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Show GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Generic GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Associated Types

type Rep GetVariables :: Type -> Type #

NFData GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Methods

rnf :: GetVariables -> () #

Hashable GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

ToJSON GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

AWSRequest GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Associated Types

type AWSResponse GetVariables #

ToHeaders GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

ToPath GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

ToQuery GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

type Rep GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

type Rep GetVariables = D1 ('MetaData "GetVariables" "Amazonka.FraudDetector.GetVariables" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetVariables'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetVariables Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

newGetVariables :: GetVariables Source #

Create a value of GetVariables 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:nextToken:GetVariables', getVariables_nextToken - The next page token of the get variable request.

$sel:name:GetVariables', getVariables_name - The name of the variable.

$sel:maxResults:GetVariables', getVariables_maxResults - The max size per page determined for the get variable request.

data GetVariablesResponse Source #

See: newGetVariablesResponse smart constructor.

Instances

Instances details
Eq GetVariablesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Read GetVariablesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Show GetVariablesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Generic GetVariablesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Associated Types

type Rep GetVariablesResponse :: Type -> Type #

NFData GetVariablesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

Methods

rnf :: GetVariablesResponse -> () #

type Rep GetVariablesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetVariables

type Rep GetVariablesResponse = D1 ('MetaData "GetVariablesResponse" "Amazonka.FraudDetector.GetVariables" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetVariablesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "variables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Variable])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetVariablesResponse Source #

Create a value of GetVariablesResponse 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:variables:GetVariablesResponse', getVariablesResponse_variables - The names of the variables returned.

$sel:nextToken:GetVariables', getVariablesResponse_nextToken - The next page token to be used in subsequent requests.

$sel:httpStatus:GetVariablesResponse', getVariablesResponse_httpStatus - The response's http status code.

UntagResource

data UntagResource Source #

See: newUntagResource smart constructor.

Constructors

UntagResource' Text [Text] 

Instances

Instances details
Eq UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Read UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Show UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Generic UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

NFData UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Methods

rnf :: UntagResource -> () #

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

ToJSON UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Associated Types

type AWSResponse UntagResource #

ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.FraudDetector.UntagResource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))
type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

newUntagResource Source #

Create a value of UntagResource 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:resourceARN:UntagResource', untagResource_resourceARN - The ARN of the resource from which to remove the tag.

$sel:tagKeys:UntagResource', untagResource_tagKeys - The resource ARN.

data UntagResourceResponse Source #

See: newUntagResourceResponse smart constructor.

Instances

Instances details
Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Generic UntagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.FraudDetector.UntagResource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UntagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUntagResourceResponse Source #

Create a value of UntagResourceResponse 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:UntagResourceResponse', untagResourceResponse_httpStatus - The response's http status code.

PutDetector

data PutDetector Source #

See: newPutDetector smart constructor.

Constructors

PutDetector' (Maybe Text) (Maybe [Tag]) Text Text 

Instances

Instances details
Eq PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Read PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Show PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Generic PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Associated Types

type Rep PutDetector :: Type -> Type #

NFData PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Methods

rnf :: PutDetector -> () #

Hashable PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

ToJSON PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

AWSRequest PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Associated Types

type AWSResponse PutDetector #

ToHeaders PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Methods

toHeaders :: PutDetector -> [Header] #

ToPath PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

ToQuery PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

type Rep PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

type Rep PutDetector = D1 ('MetaData "PutDetector" "Amazonka.FraudDetector.PutDetector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutDetector'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse PutDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

newPutDetector Source #

Create a value of PutDetector 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:description:PutDetector', putDetector_description - The description of the detector.

$sel:tags:PutDetector', putDetector_tags - A collection of key and value pairs.

$sel:detectorId:PutDetector', putDetector_detectorId - The detector ID.

$sel:eventTypeName:PutDetector', putDetector_eventTypeName - The name of the event type.

data PutDetectorResponse Source #

See: newPutDetectorResponse smart constructor.

Instances

Instances details
Eq PutDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Read PutDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Show PutDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Generic PutDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Associated Types

type Rep PutDetectorResponse :: Type -> Type #

NFData PutDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

Methods

rnf :: PutDetectorResponse -> () #

type Rep PutDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutDetector

type Rep PutDetectorResponse = D1 ('MetaData "PutDetectorResponse" "Amazonka.FraudDetector.PutDetector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutDetectorResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutDetectorResponse Source #

Create a value of PutDetectorResponse 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:PutDetectorResponse', putDetectorResponse_httpStatus - The response's http status code.

PutOutcome

data PutOutcome Source #

See: newPutOutcome smart constructor.

Constructors

PutOutcome' (Maybe Text) (Maybe [Tag]) Text 

Instances

Instances details
Eq PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Read PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Show PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Generic PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Associated Types

type Rep PutOutcome :: Type -> Type #

NFData PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Methods

rnf :: PutOutcome -> () #

Hashable PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

ToJSON PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

AWSRequest PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Associated Types

type AWSResponse PutOutcome #

ToHeaders PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Methods

toHeaders :: PutOutcome -> [Header] #

ToPath PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

ToQuery PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

type Rep PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

type Rep PutOutcome = D1 ('MetaData "PutOutcome" "Amazonka.FraudDetector.PutOutcome" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutOutcome'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse PutOutcome Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

newPutOutcome Source #

Create a value of PutOutcome 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:description:PutOutcome', putOutcome_description - The outcome description.

$sel:tags:PutOutcome', putOutcome_tags - A collection of key and value pairs.

$sel:name:PutOutcome', putOutcome_name - The name of the outcome.

data PutOutcomeResponse Source #

See: newPutOutcomeResponse smart constructor.

Constructors

PutOutcomeResponse' Int 

Instances

Instances details
Eq PutOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Read PutOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Show PutOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Generic PutOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Associated Types

type Rep PutOutcomeResponse :: Type -> Type #

NFData PutOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

Methods

rnf :: PutOutcomeResponse -> () #

type Rep PutOutcomeResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.PutOutcome

type Rep PutOutcomeResponse = D1 ('MetaData "PutOutcomeResponse" "Amazonka.FraudDetector.PutOutcome" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "PutOutcomeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutOutcomeResponse Source #

Create a value of PutOutcomeResponse 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:PutOutcomeResponse', putOutcomeResponse_httpStatus - The response's http status code.

DeleteDetector

data DeleteDetector Source #

See: newDeleteDetector smart constructor.

Constructors

DeleteDetector' Text 

Instances

Instances details
Eq DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Read DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Show DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Generic DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Associated Types

type Rep DeleteDetector :: Type -> Type #

NFData DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Methods

rnf :: DeleteDetector -> () #

Hashable DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

ToJSON DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

AWSRequest DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Associated Types

type AWSResponse DeleteDetector #

ToHeaders DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

ToPath DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

ToQuery DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

type Rep DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

type Rep DeleteDetector = D1 ('MetaData "DeleteDetector" "Amazonka.FraudDetector.DeleteDetector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteDetector'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteDetector Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

newDeleteDetector Source #

Create a value of DeleteDetector 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:detectorId:DeleteDetector', deleteDetector_detectorId - The ID of the detector to delete.

data DeleteDetectorResponse Source #

See: newDeleteDetectorResponse smart constructor.

Instances

Instances details
Eq DeleteDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Read DeleteDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Show DeleteDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Generic DeleteDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Associated Types

type Rep DeleteDetectorResponse :: Type -> Type #

NFData DeleteDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

Methods

rnf :: DeleteDetectorResponse -> () #

type Rep DeleteDetectorResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetector

type Rep DeleteDetectorResponse = D1 ('MetaData "DeleteDetectorResponse" "Amazonka.FraudDetector.DeleteDetector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteDetectorResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteDetectorResponse Source #

Create a value of DeleteDetectorResponse 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:DeleteDetectorResponse', deleteDetectorResponse_httpStatus - The response's http status code.

DescribeModelVersions

data DescribeModelVersions Source #

See: newDescribeModelVersions smart constructor.

Instances

Instances details
Eq DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Read DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Show DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Generic DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Associated Types

type Rep DescribeModelVersions :: Type -> Type #

NFData DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Methods

rnf :: DescribeModelVersions -> () #

Hashable DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

ToJSON DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

AWSRequest DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Associated Types

type AWSResponse DescribeModelVersions #

ToHeaders DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

ToPath DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

ToQuery DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

type Rep DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

type Rep DescribeModelVersions = D1 ('MetaData "DescribeModelVersions" "Amazonka.FraudDetector.DescribeModelVersions" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DescribeModelVersions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelTypeEnum)) :*: S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))))
type AWSResponse DescribeModelVersions Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

newDescribeModelVersions :: DescribeModelVersions Source #

Create a value of DescribeModelVersions 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:modelType:DescribeModelVersions', describeModelVersions_modelType - The model type.

$sel:modelId:DescribeModelVersions', describeModelVersions_modelId - The model ID.

$sel:nextToken:DescribeModelVersions', describeModelVersions_nextToken - The next token from the previous results.

$sel:modelVersionNumber:DescribeModelVersions', describeModelVersions_modelVersionNumber - The model version number.

$sel:maxResults:DescribeModelVersions', describeModelVersions_maxResults - The maximum number of results to return.

data DescribeModelVersionsResponse Source #

See: newDescribeModelVersionsResponse smart constructor.

Instances

Instances details
Eq DescribeModelVersionsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Read DescribeModelVersionsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Show DescribeModelVersionsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Generic DescribeModelVersionsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

Associated Types

type Rep DescribeModelVersionsResponse :: Type -> Type #

NFData DescribeModelVersionsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

type Rep DescribeModelVersionsResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DescribeModelVersions

type Rep DescribeModelVersionsResponse = D1 ('MetaData "DescribeModelVersionsResponse" "Amazonka.FraudDetector.DescribeModelVersions" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DescribeModelVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelVersionDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelVersionDetail])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeModelVersionsResponse Source #

Create a value of DescribeModelVersionsResponse 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:nextToken:DescribeModelVersions', describeModelVersionsResponse_nextToken - The next token.

$sel:modelVersionDetails:DescribeModelVersionsResponse', describeModelVersionsResponse_modelVersionDetails - The model version details.

$sel:httpStatus:DescribeModelVersionsResponse', describeModelVersionsResponse_httpStatus - The response's http status code.

BatchCreateVariable

data BatchCreateVariable Source #

See: newBatchCreateVariable smart constructor.

Instances

Instances details
Eq BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Read BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Show BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Generic BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Associated Types

type Rep BatchCreateVariable :: Type -> Type #

NFData BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Methods

rnf :: BatchCreateVariable -> () #

Hashable BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

ToJSON BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

AWSRequest BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Associated Types

type AWSResponse BatchCreateVariable #

ToHeaders BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

ToPath BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

ToQuery BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

type Rep BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

type Rep BatchCreateVariable = D1 ('MetaData "BatchCreateVariable" "Amazonka.FraudDetector.BatchCreateVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchCreateVariable'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "variableEntries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty VariableEntry))))
type AWSResponse BatchCreateVariable Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

newBatchCreateVariable Source #

Create a value of BatchCreateVariable 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:tags:BatchCreateVariable', batchCreateVariable_tags - A collection of key and value pairs.

$sel:variableEntries:BatchCreateVariable', batchCreateVariable_variableEntries - The list of variables for the batch create variable request.

data BatchCreateVariableResponse Source #

See: newBatchCreateVariableResponse smart constructor.

Instances

Instances details
Eq BatchCreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Read BatchCreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Show BatchCreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Generic BatchCreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

Associated Types

type Rep BatchCreateVariableResponse :: Type -> Type #

NFData BatchCreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

type Rep BatchCreateVariableResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.BatchCreateVariable

type Rep BatchCreateVariableResponse = D1 ('MetaData "BatchCreateVariableResponse" "Amazonka.FraudDetector.BatchCreateVariable" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchCreateVariableResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "errors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [BatchCreateVariableError])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newBatchCreateVariableResponse Source #

Create a value of BatchCreateVariableResponse 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:errors:BatchCreateVariableResponse', batchCreateVariableResponse_errors - Provides the errors for the BatchCreateVariable request.

$sel:httpStatus:BatchCreateVariableResponse', batchCreateVariableResponse_httpStatus - The response's http status code.

GetDetectorVersion

data GetDetectorVersion Source #

See: newGetDetectorVersion smart constructor.

Instances

Instances details
Eq GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Read GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Show GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Generic GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Associated Types

type Rep GetDetectorVersion :: Type -> Type #

NFData GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Methods

rnf :: GetDetectorVersion -> () #

Hashable GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

ToJSON GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

AWSRequest GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Associated Types

type AWSResponse GetDetectorVersion #

ToHeaders GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

ToPath GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

ToQuery GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

type Rep GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

type Rep GetDetectorVersion = D1 ('MetaData "GetDetectorVersion" "Amazonka.FraudDetector.GetDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetDetectorVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

newGetDetectorVersion Source #

Create a value of GetDetectorVersion 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:detectorId:GetDetectorVersion', getDetectorVersion_detectorId - The detector ID.

$sel:detectorVersionId:GetDetectorVersion', getDetectorVersion_detectorVersionId - The detector version ID.

data GetDetectorVersionResponse Source #

See: newGetDetectorVersionResponse smart constructor.

Instances

Instances details
Eq GetDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Read GetDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Show GetDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Generic GetDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

Associated Types

type Rep GetDetectorVersionResponse :: Type -> Type #

NFData GetDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

type Rep GetDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetDetectorVersion

type Rep GetDetectorVersionResponse = D1 ('MetaData "GetDetectorVersionResponse" "Amazonka.FraudDetector.GetDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetDetectorVersionResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectorVersionStatus)) :*: (S1 ('MetaSel ('Just "ruleExecutionMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RuleExecutionMode)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Rule])) :*: S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelVersion])) :*: S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "externalModelEndpoints") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

newGetDetectorVersionResponse Source #

Create a value of GetDetectorVersionResponse 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:status:GetDetectorVersionResponse', getDetectorVersionResponse_status - The status of the detector version.

$sel:ruleExecutionMode:GetDetectorVersionResponse', getDetectorVersionResponse_ruleExecutionMode - The execution mode of the rule in the dectector

FIRST_MATCHED indicates that Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.

ALL_MATCHED indicates that Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules. You can define and edit the rule mode at the detector version level, when it is in draft status.

$sel:lastUpdatedTime:GetDetectorVersionResponse', getDetectorVersionResponse_lastUpdatedTime - The timestamp when the detector version was last updated.

$sel:arn:GetDetectorVersionResponse', getDetectorVersionResponse_arn - The detector version ARN.

$sel:rules:GetDetectorVersionResponse', getDetectorVersionResponse_rules - The rules included in the detector version.

$sel:detectorVersionId:GetDetectorVersion', getDetectorVersionResponse_detectorVersionId - The detector version ID.

$sel:createdTime:GetDetectorVersionResponse', getDetectorVersionResponse_createdTime - The timestamp when the detector version was created.

$sel:modelVersions:GetDetectorVersionResponse', getDetectorVersionResponse_modelVersions - The model versions included in the detector version.

$sel:detectorId:GetDetectorVersion', getDetectorVersionResponse_detectorId - The detector ID.

$sel:externalModelEndpoints:GetDetectorVersionResponse', getDetectorVersionResponse_externalModelEndpoints - The Amazon SageMaker model endpoints included in the detector version.

$sel:description:GetDetectorVersionResponse', getDetectorVersionResponse_description - The detector version description.

$sel:httpStatus:GetDetectorVersionResponse', getDetectorVersionResponse_httpStatus - The response's http status code.

GetEventTypes

data GetEventTypes Source #

See: newGetEventTypes smart constructor.

Instances

Instances details
Eq GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Read GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Show GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Generic GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Associated Types

type Rep GetEventTypes :: Type -> Type #

NFData GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Methods

rnf :: GetEventTypes -> () #

Hashable GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

ToJSON GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

AWSRequest GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Associated Types

type AWSResponse GetEventTypes #

ToHeaders GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

ToPath GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

ToQuery GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

type Rep GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

type Rep GetEventTypes = D1 ('MetaData "GetEventTypes" "Amazonka.FraudDetector.GetEventTypes" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEventTypes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse GetEventTypes Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

newGetEventTypes :: GetEventTypes Source #

Create a value of GetEventTypes 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:nextToken:GetEventTypes', getEventTypes_nextToken - The next token for the subsequent request.

$sel:name:GetEventTypes', getEventTypes_name - The name.

$sel:maxResults:GetEventTypes', getEventTypes_maxResults - The maximum number of objects to return for the request.

data GetEventTypesResponse Source #

See: newGetEventTypesResponse smart constructor.

Instances

Instances details
Eq GetEventTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Show GetEventTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Generic GetEventTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Associated Types

type Rep GetEventTypesResponse :: Type -> Type #

NFData GetEventTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

Methods

rnf :: GetEventTypesResponse -> () #

type Rep GetEventTypesResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.GetEventTypes

type Rep GetEventTypesResponse = D1 ('MetaData "GetEventTypesResponse" "Amazonka.FraudDetector.GetEventTypes" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "GetEventTypesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventTypes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Sensitive EventType])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetEventTypesResponse Source #

Create a value of GetEventTypesResponse 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:eventTypes:GetEventTypesResponse', getEventTypesResponse_eventTypes - An array of event types.

$sel:nextToken:GetEventTypes', getEventTypesResponse_nextToken - The next page token.

$sel:httpStatus:GetEventTypesResponse', getEventTypesResponse_httpStatus - The response's http status code.

DeleteDetectorVersion

data DeleteDetectorVersion Source #

See: newDeleteDetectorVersion smart constructor.

Instances

Instances details
Eq DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Read DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Show DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Generic DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Associated Types

type Rep DeleteDetectorVersion :: Type -> Type #

NFData DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Methods

rnf :: DeleteDetectorVersion -> () #

Hashable DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

ToJSON DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

AWSRequest DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Associated Types

type AWSResponse DeleteDetectorVersion #

ToHeaders DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

ToPath DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

ToQuery DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

type Rep DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

type Rep DeleteDetectorVersion = D1 ('MetaData "DeleteDetectorVersion" "Amazonka.FraudDetector.DeleteDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteDetectorVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

newDeleteDetectorVersion Source #

Create a value of DeleteDetectorVersion 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:detectorId:DeleteDetectorVersion', deleteDetectorVersion_detectorId - The ID of the parent detector for the detector version to delete.

$sel:detectorVersionId:DeleteDetectorVersion', deleteDetectorVersion_detectorVersionId - The ID of the detector version to delete.

data DeleteDetectorVersionResponse Source #

See: newDeleteDetectorVersionResponse smart constructor.

Instances

Instances details
Eq DeleteDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Read DeleteDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Show DeleteDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Generic DeleteDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

Associated Types

type Rep DeleteDetectorVersionResponse :: Type -> Type #

NFData DeleteDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

type Rep DeleteDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.DeleteDetectorVersion

type Rep DeleteDetectorVersionResponse = D1 ('MetaData "DeleteDetectorVersionResponse" "Amazonka.FraudDetector.DeleteDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DeleteDetectorVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteDetectorVersionResponse Source #

Create a value of DeleteDetectorVersionResponse 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:DeleteDetectorVersionResponse', deleteDetectorVersionResponse_httpStatus - The response's http status code.

UpdateDetectorVersion

data UpdateDetectorVersion Source #

See: newUpdateDetectorVersion smart constructor.

Instances

Instances details
Eq UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Read UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Show UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Generic UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Associated Types

type Rep UpdateDetectorVersion :: Type -> Type #

NFData UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Methods

rnf :: UpdateDetectorVersion -> () #

Hashable UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

ToJSON UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

AWSRequest UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Associated Types

type AWSResponse UpdateDetectorVersion #

ToHeaders UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

ToPath UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

ToQuery UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

type Rep UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

type Rep UpdateDetectorVersion = D1 ('MetaData "UpdateDetectorVersion" "Amazonka.FraudDetector.UpdateDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateDetectorVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "ruleExecutionMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RuleExecutionMode)) :*: (S1 ('MetaSel ('Just "modelVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelVersion])) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "externalModelEndpoints") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text]) :*: S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Rule])))))
type AWSResponse UpdateDetectorVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

newUpdateDetectorVersion Source #

Create a value of UpdateDetectorVersion 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:ruleExecutionMode:UpdateDetectorVersion', updateDetectorVersion_ruleExecutionMode - The rule execution mode to add to the detector.

If you specify FIRST_MATCHED, Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.

If you specifiy ALL_MATCHED, Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules. You can define and edit the rule mode at the detector version level, when it is in draft status.

The default behavior is FIRST_MATCHED.

$sel:modelVersions:UpdateDetectorVersion', updateDetectorVersion_modelVersions - The model versions to include in the detector version.

$sel:description:UpdateDetectorVersion', updateDetectorVersion_description - The detector version description.

$sel:detectorId:UpdateDetectorVersion', updateDetectorVersion_detectorId - The parent detector ID for the detector version you want to update.

$sel:detectorVersionId:UpdateDetectorVersion', updateDetectorVersion_detectorVersionId - The detector version ID.

$sel:externalModelEndpoints:UpdateDetectorVersion', updateDetectorVersion_externalModelEndpoints - The Amazon SageMaker model endpoints to include in the detector version.

$sel:rules:UpdateDetectorVersion', updateDetectorVersion_rules - The rules to include in the detector version.

data UpdateDetectorVersionResponse Source #

See: newUpdateDetectorVersionResponse smart constructor.

Instances

Instances details
Eq UpdateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Read UpdateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Show UpdateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Generic UpdateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

Associated Types

type Rep UpdateDetectorVersionResponse :: Type -> Type #

NFData UpdateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

type Rep UpdateDetectorVersionResponse Source # 
Instance details

Defined in Amazonka.FraudDetector.UpdateDetectorVersion

type Rep UpdateDetectorVersionResponse = D1 ('MetaData "UpdateDetectorVersionResponse" "Amazonka.FraudDetector.UpdateDetectorVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "UpdateDetectorVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateDetectorVersionResponse Source #

Create a value of UpdateDetectorVersionResponse 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:UpdateDetectorVersionResponse', updateDetectorVersionResponse_httpStatus - The response's http status code.

Types

AsyncJobStatus

newtype AsyncJobStatus Source #

Constructors

AsyncJobStatus' 

Instances

Instances details
Eq AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Ord AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Read AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Show AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Generic AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Associated Types

type Rep AsyncJobStatus :: Type -> Type #

NFData AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Methods

rnf :: AsyncJobStatus -> () #

Hashable AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToJSON AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToJSONKey AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

FromJSON AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

FromJSONKey AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToLog AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToHeader AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToQuery AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

FromXML AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToXML AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

Methods

toXML :: AsyncJobStatus -> XML #

ToByteString AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

FromText AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

ToText AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

type Rep AsyncJobStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.AsyncJobStatus

type Rep AsyncJobStatus = D1 ('MetaData "AsyncJobStatus" "Amazonka.FraudDetector.Types.AsyncJobStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "AsyncJobStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromAsyncJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

DataSource

newtype DataSource Source #

Constructors

DataSource' 

Fields

Instances

Instances details
Eq DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Ord DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Read DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Show DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Generic DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Associated Types

type Rep DataSource :: Type -> Type #

NFData DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Methods

rnf :: DataSource -> () #

Hashable DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToJSON DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToJSONKey DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

FromJSON DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

FromJSONKey DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToLog DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToHeader DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToQuery DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

FromXML DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToXML DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Methods

toXML :: DataSource -> XML #

ToByteString DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

FromText DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

ToText DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

Methods

toText :: DataSource -> Text #

type Rep DataSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataSource

type Rep DataSource = D1 ('MetaData "DataSource" "Amazonka.FraudDetector.Types.DataSource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "DataSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

DataType

newtype DataType Source #

Constructors

DataType' 

Fields

Bundled Patterns

pattern DataType_BOOLEAN :: DataType 
pattern DataType_FLOAT :: DataType 
pattern DataType_INTEGER :: DataType 
pattern DataType_STRING :: DataType 

Instances

Instances details
Eq DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Ord DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Read DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Show DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Generic DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Associated Types

type Rep DataType :: Type -> Type #

Methods

from :: DataType -> Rep DataType x #

to :: Rep DataType x -> DataType #

NFData DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Methods

rnf :: DataType -> () #

Hashable DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Methods

hashWithSalt :: Int -> DataType -> Int #

hash :: DataType -> Int #

ToJSON DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

ToJSONKey DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

FromJSON DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

FromJSONKey DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

ToLog DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

ToHeader DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Methods

toHeader :: HeaderName -> DataType -> [Header] #

ToQuery DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

FromXML DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

ToXML DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Methods

toXML :: DataType -> XML #

ToByteString DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Methods

toBS :: DataType -> ByteString #

FromText DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

ToText DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

Methods

toText :: DataType -> Text #

type Rep DataType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataType

type Rep DataType = D1 ('MetaData "DataType" "Amazonka.FraudDetector.Types.DataType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "DataType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDataType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

DetectorVersionStatus

newtype DetectorVersionStatus Source #

Instances

Instances details
Eq DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

Ord DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

Read DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

Show DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

Generic DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

Associated Types

type Rep DetectorVersionStatus :: Type -> Type #

NFData DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

Methods

rnf :: DetectorVersionStatus -> () #

Hashable DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToJSON DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToJSONKey DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

FromJSON DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

FromJSONKey DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToLog DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToHeader DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToQuery DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

FromXML DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToXML DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToByteString DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

FromText DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

ToText DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

type Rep DetectorVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionStatus

type Rep DetectorVersionStatus = D1 ('MetaData "DetectorVersionStatus" "Amazonka.FraudDetector.Types.DetectorVersionStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "DetectorVersionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDetectorVersionStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

EventIngestion

newtype EventIngestion Source #

Constructors

EventIngestion' 

Instances

Instances details
Eq EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Ord EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Read EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Show EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Generic EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Associated Types

type Rep EventIngestion :: Type -> Type #

NFData EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Methods

rnf :: EventIngestion -> () #

Hashable EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToJSON EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToJSONKey EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

FromJSON EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

FromJSONKey EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToLog EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToHeader EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToQuery EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

FromXML EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToXML EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

Methods

toXML :: EventIngestion -> XML #

ToByteString EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

FromText EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

ToText EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

type Rep EventIngestion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventIngestion

type Rep EventIngestion = D1 ('MetaData "EventIngestion" "Amazonka.FraudDetector.Types.EventIngestion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "EventIngestion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromEventIngestion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Language

newtype Language Source #

Constructors

Language' 

Fields

Bundled Patterns

pattern Language_DETECTORPL :: Language 

Instances

Instances details
Eq Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Ord Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Read Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Show Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Generic Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Associated Types

type Rep Language :: Type -> Type #

Methods

from :: Language -> Rep Language x #

to :: Rep Language x -> Language #

NFData Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Methods

rnf :: Language -> () #

Hashable Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Methods

hashWithSalt :: Int -> Language -> Int #

hash :: Language -> Int #

ToJSON Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

ToJSONKey Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

FromJSON Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

FromJSONKey Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

ToLog Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

ToHeader Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Methods

toHeader :: HeaderName -> Language -> [Header] #

ToQuery Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

FromXML Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

ToXML Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Methods

toXML :: Language -> XML #

ToByteString Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Methods

toBS :: Language -> ByteString #

FromText Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

ToText Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

Methods

toText :: Language -> Text #

type Rep Language Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Language

type Rep Language = D1 ('MetaData "Language" "Amazonka.FraudDetector.Types.Language" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "Language'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelEndpointStatus

newtype ModelEndpointStatus Source #

Instances

Instances details
Eq ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

Ord ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

Read ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

Show ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

Generic ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

Associated Types

type Rep ModelEndpointStatus :: Type -> Type #

NFData ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

Methods

rnf :: ModelEndpointStatus -> () #

Hashable ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToJSON ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToJSONKey ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

FromJSON ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

FromJSONKey ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToLog ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToHeader ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToQuery ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

FromXML ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToXML ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToByteString ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

FromText ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

ToText ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

type Rep ModelEndpointStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointStatus

type Rep ModelEndpointStatus = D1 ('MetaData "ModelEndpointStatus" "Amazonka.FraudDetector.Types.ModelEndpointStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "ModelEndpointStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelEndpointStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelInputDataFormat

newtype ModelInputDataFormat Source #

Instances

Instances details
Eq ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

Ord ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

Read ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

Show ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

Generic ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

Associated Types

type Rep ModelInputDataFormat :: Type -> Type #

NFData ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

Methods

rnf :: ModelInputDataFormat -> () #

Hashable ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToJSON ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToJSONKey ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

FromJSON ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

FromJSONKey ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToLog ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToHeader ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToQuery ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

FromXML ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToXML ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToByteString ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

FromText ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

ToText ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

type Rep ModelInputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputDataFormat

type Rep ModelInputDataFormat = D1 ('MetaData "ModelInputDataFormat" "Amazonka.FraudDetector.Types.ModelInputDataFormat" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "ModelInputDataFormat'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelInputDataFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelOutputDataFormat

newtype ModelOutputDataFormat Source #

Instances

Instances details
Eq ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

Ord ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

Read ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

Show ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

Generic ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

Associated Types

type Rep ModelOutputDataFormat :: Type -> Type #

NFData ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

Methods

rnf :: ModelOutputDataFormat -> () #

Hashable ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToJSON ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToJSONKey ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

FromJSON ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

FromJSONKey ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToLog ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToHeader ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToQuery ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

FromXML ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToXML ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToByteString ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

FromText ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

ToText ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

type Rep ModelOutputDataFormat Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputDataFormat

type Rep ModelOutputDataFormat = D1 ('MetaData "ModelOutputDataFormat" "Amazonka.FraudDetector.Types.ModelOutputDataFormat" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "ModelOutputDataFormat'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelOutputDataFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelSource

newtype ModelSource Source #

Constructors

ModelSource' 

Bundled Patterns

pattern ModelSource_SAGEMAKER :: ModelSource 

Instances

Instances details
Eq ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Ord ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Read ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Show ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Generic ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Associated Types

type Rep ModelSource :: Type -> Type #

NFData ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Methods

rnf :: ModelSource -> () #

Hashable ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToJSON ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToJSONKey ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

FromJSON ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

FromJSONKey ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToLog ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToHeader ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToQuery ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

FromXML ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToXML ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Methods

toXML :: ModelSource -> XML #

ToByteString ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

FromText ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

ToText ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

Methods

toText :: ModelSource -> Text #

type Rep ModelSource Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelSource

type Rep ModelSource = D1 ('MetaData "ModelSource" "Amazonka.FraudDetector.Types.ModelSource" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "ModelSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelTypeEnum

newtype ModelTypeEnum Source #

Constructors

ModelTypeEnum' 

Instances

Instances details
Eq ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Ord ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Read ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Show ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Generic ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Associated Types

type Rep ModelTypeEnum :: Type -> Type #

NFData ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Methods

rnf :: ModelTypeEnum -> () #

Hashable ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToJSON ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToJSONKey ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

FromJSON ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

FromJSONKey ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToLog ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToHeader ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToQuery ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

FromXML ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToXML ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Methods

toXML :: ModelTypeEnum -> XML #

ToByteString ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

FromText ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

ToText ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

Methods

toText :: ModelTypeEnum -> Text #

type Rep ModelTypeEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelTypeEnum

type Rep ModelTypeEnum = D1 ('MetaData "ModelTypeEnum" "Amazonka.FraudDetector.Types.ModelTypeEnum" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "ModelTypeEnum'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelTypeEnum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelVersionStatus

newtype ModelVersionStatus Source #

Instances

Instances details
Eq ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

Ord ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

Read ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

Show ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

Generic ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

Associated Types

type Rep ModelVersionStatus :: Type -> Type #

NFData ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

Methods

rnf :: ModelVersionStatus -> () #

Hashable ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToJSON ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToJSONKey ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

FromJSON ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

FromJSONKey ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToLog ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToHeader ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToQuery ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

FromXML ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToXML ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToByteString ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

FromText ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

ToText ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

type Rep ModelVersionStatus Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionStatus

type Rep ModelVersionStatus = D1 ('MetaData "ModelVersionStatus" "Amazonka.FraudDetector.Types.ModelVersionStatus" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "ModelVersionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelVersionStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RuleExecutionMode

newtype RuleExecutionMode Source #

Instances

Instances details
Eq RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

Ord RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

Read RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

Show RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

Generic RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

Associated Types

type Rep RuleExecutionMode :: Type -> Type #

NFData RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

Methods

rnf :: RuleExecutionMode -> () #

Hashable RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToJSON RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToJSONKey RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

FromJSON RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

FromJSONKey RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToLog RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToHeader RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToQuery RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

FromXML RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToXML RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToByteString RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

FromText RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

ToText RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

type Rep RuleExecutionMode Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleExecutionMode

type Rep RuleExecutionMode = D1 ('MetaData "RuleExecutionMode" "Amazonka.FraudDetector.Types.RuleExecutionMode" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "RuleExecutionMode'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRuleExecutionMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TrainingDataSourceEnum

newtype TrainingDataSourceEnum Source #

Instances

Instances details
Eq TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

Ord TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

Read TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

Show TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

Generic TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

Associated Types

type Rep TrainingDataSourceEnum :: Type -> Type #

NFData TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

Methods

rnf :: TrainingDataSourceEnum -> () #

Hashable TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToJSON TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToJSONKey TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

FromJSON TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

FromJSONKey TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToLog TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToHeader TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToQuery TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

FromXML TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToXML TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToByteString TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

FromText TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

ToText TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

type Rep TrainingDataSourceEnum Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSourceEnum

type Rep TrainingDataSourceEnum = D1 ('MetaData "TrainingDataSourceEnum" "Amazonka.FraudDetector.Types.TrainingDataSourceEnum" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "TrainingDataSourceEnum'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTrainingDataSourceEnum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

UnlabeledEventsTreatment

newtype UnlabeledEventsTreatment Source #

Instances

Instances details
Eq UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

Ord UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

Read UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

Show UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

Generic UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

Associated Types

type Rep UnlabeledEventsTreatment :: Type -> Type #

NFData UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

Hashable UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToJSON UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToJSONKey UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

FromJSON UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

FromJSONKey UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToLog UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToHeader UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToQuery UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

FromXML UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToXML UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToByteString UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

FromText UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

ToText UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

type Rep UnlabeledEventsTreatment Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.UnlabeledEventsTreatment

type Rep UnlabeledEventsTreatment = D1 ('MetaData "UnlabeledEventsTreatment" "Amazonka.FraudDetector.Types.UnlabeledEventsTreatment" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'True) (C1 ('MetaCons "UnlabeledEventsTreatment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromUnlabeledEventsTreatment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

BatchCreateVariableError

data BatchCreateVariableError Source #

Provides the error of the batch create variable API.

See: newBatchCreateVariableError smart constructor.

Instances

Instances details
Eq BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

Read BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

Show BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

Generic BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

Associated Types

type Rep BatchCreateVariableError :: Type -> Type #

NFData BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

Hashable BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

FromJSON BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

type Rep BatchCreateVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchCreateVariableError

type Rep BatchCreateVariableError = D1 ('MetaData "BatchCreateVariableError" "Amazonka.FraudDetector.Types.BatchCreateVariableError" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchCreateVariableError'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "code") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newBatchCreateVariableError :: BatchCreateVariableError Source #

Create a value of BatchCreateVariableError 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:name:BatchCreateVariableError', batchCreateVariableError_name - The name.

$sel:code:BatchCreateVariableError', batchCreateVariableError_code - The error code.

$sel:message:BatchCreateVariableError', batchCreateVariableError_message - The error message.

BatchGetVariableError

data BatchGetVariableError Source #

Provides the error of the batch get variable API.

See: newBatchGetVariableError smart constructor.

Instances

Instances details
Eq BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

Read BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

Show BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

Generic BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

Associated Types

type Rep BatchGetVariableError :: Type -> Type #

NFData BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

Methods

rnf :: BatchGetVariableError -> () #

Hashable BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

FromJSON BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

type Rep BatchGetVariableError Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchGetVariableError

type Rep BatchGetVariableError = D1 ('MetaData "BatchGetVariableError" "Amazonka.FraudDetector.Types.BatchGetVariableError" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchGetVariableError'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "code") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newBatchGetVariableError :: BatchGetVariableError Source #

Create a value of BatchGetVariableError 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:name:BatchGetVariableError', batchGetVariableError_name - The error name.

$sel:code:BatchGetVariableError', batchGetVariableError_code - The error code.

$sel:message:BatchGetVariableError', batchGetVariableError_message - The error message.

BatchImport

data BatchImport Source #

The batch import job details.

See: newBatchImport smart constructor.

Instances

Instances details
Eq BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

Read BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

Show BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

Generic BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

Associated Types

type Rep BatchImport :: Type -> Type #

NFData BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

Methods

rnf :: BatchImport -> () #

Hashable BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

FromJSON BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

type Rep BatchImport Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchImport

type Rep BatchImport = D1 ('MetaData "BatchImport" "Amazonka.FraudDetector.Types.BatchImport" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchImport'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "iamRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AsyncJobStatus)))) :*: (S1 ('MetaSel ('Just "processedRecordsCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "totalRecordsCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "outputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "inputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "failedRecordsCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))))))

newBatchImport :: BatchImport Source #

Create a value of BatchImport 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:failureReason:BatchImport', batchImport_failureReason - The reason batch import job failed.

$sel:iamRoleArn:BatchImport', batchImport_iamRoleArn - The ARN of the IAM role to use for this job request.

$sel:status:BatchImport', batchImport_status - The status of the batch import job.

$sel:processedRecordsCount:BatchImport', batchImport_processedRecordsCount - The number of records processed by batch import job.

$sel:totalRecordsCount:BatchImport', batchImport_totalRecordsCount - The total number of records in the batch import job.

$sel:jobId:BatchImport', batchImport_jobId - The ID of the batch import job.

$sel:arn:BatchImport', batchImport_arn - The ARN of the batch import job.

$sel:startTime:BatchImport', batchImport_startTime - Timestamp of when the batch import job started.

$sel:eventTypeName:BatchImport', batchImport_eventTypeName - The name of the event type.

$sel:completionTime:BatchImport', batchImport_completionTime - Timestamp of when batch import job completed.

$sel:outputPath:BatchImport', batchImport_outputPath - The Amazon S3 location of your output file.

$sel:inputPath:BatchImport', batchImport_inputPath - The Amazon S3 location of your data file for batch import.

$sel:failedRecordsCount:BatchImport', batchImport_failedRecordsCount - The number of records that failed to import.

BatchPrediction

data BatchPrediction Source #

The batch prediction details.

See: newBatchPrediction smart constructor.

Instances

Instances details
Eq BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

Read BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

Show BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

Generic BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

Associated Types

type Rep BatchPrediction :: Type -> Type #

NFData BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

Methods

rnf :: BatchPrediction -> () #

Hashable BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

FromJSON BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

type Rep BatchPrediction Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.BatchPrediction

type Rep BatchPrediction = D1 ('MetaData "BatchPrediction" "Amazonka.FraudDetector.Types.BatchPrediction" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "BatchPrediction'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "iamRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AsyncJobStatus)))) :*: ((S1 ('MetaSel ('Just "processedRecordsCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "totalRecordsCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "lastHeartbeatTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: (((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "outputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "detectorName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "detectorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "inputPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newBatchPrediction :: BatchPrediction Source #

Create a value of BatchPrediction 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:failureReason:BatchPrediction', batchPrediction_failureReason - The reason a batch prediction job failed.

$sel:iamRoleArn:BatchPrediction', batchPrediction_iamRoleArn - The ARN of the IAM role to use for this job request.

$sel:status:BatchPrediction', batchPrediction_status - The batch prediction status.

$sel:processedRecordsCount:BatchPrediction', batchPrediction_processedRecordsCount - The number of records processed by the batch prediction job.

$sel:totalRecordsCount:BatchPrediction', batchPrediction_totalRecordsCount - The total number of records in the batch prediction job.

$sel:lastHeartbeatTime:BatchPrediction', batchPrediction_lastHeartbeatTime - Timestamp of most recent heartbeat indicating the batch prediction job was making progress.

$sel:jobId:BatchPrediction', batchPrediction_jobId - The job ID for the batch prediction.

$sel:arn:BatchPrediction', batchPrediction_arn - The ARN of batch prediction job.

$sel:startTime:BatchPrediction', batchPrediction_startTime - Timestamp of when the batch prediction job started.

$sel:eventTypeName:BatchPrediction', batchPrediction_eventTypeName - The name of the event type.

$sel:completionTime:BatchPrediction', batchPrediction_completionTime - Timestamp of when the batch prediction job completed.

$sel:outputPath:BatchPrediction', batchPrediction_outputPath - The Amazon S3 location of your output file.

$sel:detectorName:BatchPrediction', batchPrediction_detectorName - The name of the detector.

$sel:detectorVersion:BatchPrediction', batchPrediction_detectorVersion - The detector version.

$sel:inputPath:BatchPrediction', batchPrediction_inputPath - The Amazon S3 location of your training file.

DataValidationMetrics

data DataValidationMetrics Source #

The model training validation messages.

See: newDataValidationMetrics smart constructor.

Instances

Instances details
Eq DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

Read DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

Show DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

Generic DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

Associated Types

type Rep DataValidationMetrics :: Type -> Type #

NFData DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

Methods

rnf :: DataValidationMetrics -> () #

Hashable DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

FromJSON DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

type Rep DataValidationMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DataValidationMetrics

type Rep DataValidationMetrics = D1 ('MetaData "DataValidationMetrics" "Amazonka.FraudDetector.Types.DataValidationMetrics" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DataValidationMetrics'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fieldLevelMessages") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FieldValidationMessage])) :*: S1 ('MetaSel ('Just "fileLevelMessages") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FileValidationMessage]))))

newDataValidationMetrics :: DataValidationMetrics Source #

Create a value of DataValidationMetrics 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:fieldLevelMessages:DataValidationMetrics', dataValidationMetrics_fieldLevelMessages - The field-specific model training validation messages.

$sel:fileLevelMessages:DataValidationMetrics', dataValidationMetrics_fileLevelMessages - The file-specific model training validation messages.

Detector

data Detector Source #

The detector.

See: newDetector smart constructor.

Instances

Instances details
Eq Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

Read Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

Show Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

Generic Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

Associated Types

type Rep Detector :: Type -> Type #

Methods

from :: Detector -> Rep Detector x #

to :: Rep Detector x -> Detector #

NFData Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

Methods

rnf :: Detector -> () #

Hashable Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

Methods

hashWithSalt :: Int -> Detector -> Int #

hash :: Detector -> Int #

FromJSON Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

type Rep Detector Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Detector

type Rep Detector = D1 ('MetaData "Detector" "Amazonka.FraudDetector.Types.Detector" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Detector'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newDetector :: Detector Source #

Create a value of Detector 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:lastUpdatedTime:Detector', detector_lastUpdatedTime - Timestamp of when the detector was last updated.

$sel:arn:Detector', detector_arn - The detector ARN.

$sel:createdTime:Detector', detector_createdTime - Timestamp of when the detector was created.

$sel:eventTypeName:Detector', detector_eventTypeName - The name of the event type.

$sel:detectorId:Detector', detector_detectorId - The detector ID.

$sel:description:Detector', detector_description - The detector description.

DetectorVersionSummary

data DetectorVersionSummary Source #

The summary of the detector version.

See: newDetectorVersionSummary smart constructor.

Instances

Instances details
Eq DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

Read DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

Show DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

Generic DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

Associated Types

type Rep DetectorVersionSummary :: Type -> Type #

NFData DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

Methods

rnf :: DetectorVersionSummary -> () #

Hashable DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

FromJSON DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

type Rep DetectorVersionSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.DetectorVersionSummary

type Rep DetectorVersionSummary = D1 ('MetaData "DetectorVersionSummary" "Amazonka.FraudDetector.Types.DetectorVersionSummary" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "DetectorVersionSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectorVersionStatus)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "detectorVersionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDetectorVersionSummary :: DetectorVersionSummary Source #

Create a value of DetectorVersionSummary 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:status:DetectorVersionSummary', detectorVersionSummary_status - The detector version status.

$sel:lastUpdatedTime:DetectorVersionSummary', detectorVersionSummary_lastUpdatedTime - Timestamp of when the detector version was last updated.

$sel:detectorVersionId:DetectorVersionSummary', detectorVersionSummary_detectorVersionId - The detector version ID.

$sel:description:DetectorVersionSummary', detectorVersionSummary_description - The detector version description.

Entity

data Entity Source #

The entity details.

See: newEntity smart constructor.

Constructors

Entity' Text Text 

Instances

Instances details
Eq Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

Methods

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

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

Show Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

Generic Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

Associated Types

type Rep Entity :: Type -> Type #

Methods

from :: Entity -> Rep Entity x #

to :: Rep Entity x -> Entity #

NFData Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

Methods

rnf :: Entity -> () #

Hashable Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

Methods

hashWithSalt :: Int -> Entity -> Int #

hash :: Entity -> Int #

ToJSON Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

FromJSON Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

type Rep Entity Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Entity

type Rep Entity = D1 ('MetaData "Entity" "Amazonka.FraudDetector.Types.Entity" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Entity'" 'PrefixI 'True) (S1 ('MetaSel ('Just "entityType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "entityId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newEntity Source #

Create a value of Entity 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:entityType:Entity', entity_entityType - The entity type.

$sel:entityId:Entity', entity_entityId - The entity ID. If you do not know the entityId, you can pass unknown, which is areserved string literal.

EntityType

data EntityType Source #

The entity type details.

See: newEntityType smart constructor.

Instances

Instances details
Eq EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

Read EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

Show EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

Generic EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

Associated Types

type Rep EntityType :: Type -> Type #

NFData EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

Methods

rnf :: EntityType -> () #

Hashable EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

FromJSON EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

type Rep EntityType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EntityType

type Rep EntityType = D1 ('MetaData "EntityType" "Amazonka.FraudDetector.Types.EntityType" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "EntityType'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newEntityType :: EntityType Source #

Create a value of EntityType 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:lastUpdatedTime:EntityType', entityType_lastUpdatedTime - Timestamp of when the entity type was last updated.

$sel:arn:EntityType', entityType_arn - The entity type ARN.

$sel:createdTime:EntityType', entityType_createdTime - Timestamp of when the entity type was created.

$sel:name:EntityType', entityType_name - The entity type name.

$sel:description:EntityType', entityType_description - The entity type description.

Event

data Event Source #

The event details.

See: newEvent smart constructor.

Instances

Instances details
Eq Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

Methods

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

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

Show Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

Methods

showsPrec :: Int -> Event -> ShowS #

show :: Event -> String #

showList :: [Event] -> ShowS #

Generic Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

Associated Types

type Rep Event :: Type -> Type #

Methods

from :: Event -> Rep Event x #

to :: Rep Event x -> Event #

NFData Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

Methods

rnf :: Event -> () #

Hashable Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

Methods

hashWithSalt :: Int -> Event -> Int #

hash :: Event -> Int #

FromJSON Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

type Rep Event Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Event

type Rep Event = D1 ('MetaData "Event" "Amazonka.FraudDetector.Types.Event" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Event'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "eventTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "entities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Sensitive Entity])) :*: S1 ('MetaSel ('Just "labelTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "eventVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text (Sensitive Text))))) :*: (S1 ('MetaSel ('Just "currentLabel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "eventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newEvent :: Event Source #

Create a value of Event 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:eventTimestamp:Event', event_eventTimestamp - The timestamp that defines when the event under evaluation occurred. The timestamp must be specified using ISO 8601 standard in UTC.

$sel:entities:Event', event_entities - The event entities.

$sel:labelTimestamp:Event', event_labelTimestamp - The timestamp associated with the label to update. The timestamp must be specified using ISO 8601 standard in UTC.

$sel:eventTypeName:Event', event_eventTypeName - The event type.

$sel:eventVariables:Event', event_eventVariables - Names of the event type's variables you defined in Amazon Fraud Detector to represent data elements and their corresponding values for the event you are sending for evaluation.

$sel:currentLabel:Event', event_currentLabel - The label associated with the event.

$sel:eventId:Event', event_eventId - The event ID.

EventType

data EventType Source #

The event type details.

See: newEventType smart constructor.

Instances

Instances details
Eq EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

Show EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

Generic EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

Associated Types

type Rep EventType :: Type -> Type #

NFData EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

Methods

rnf :: EventType -> () #

Hashable EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

FromJSON EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

type Rep EventType Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.EventType

newEventType :: EventType Source #

Create a value of EventType 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:lastUpdatedTime:EventType', eventType_lastUpdatedTime - Timestamp of when the event type was last updated.

$sel:arn:EventType', eventType_arn - The entity type ARN.

$sel:createdTime:EventType', eventType_createdTime - Timestamp of when the event type was created.

$sel:entityTypes:EventType', eventType_entityTypes - The event type entity types.

$sel:eventVariables:EventType', eventType_eventVariables - The event type event variables.

$sel:name:EventType', eventType_name - The event type name.

$sel:ingestedEventStatistics:EventType', eventType_ingestedEventStatistics - Data about the stored events.

$sel:labels:EventType', eventType_labels - The event type labels.

$sel:eventIngestion:EventType', eventType_eventIngestion - If Enabled, Amazon Fraud Detector stores event data when you generate a prediction and uses that data to update calculated variables in near real-time. Amazon Fraud Detector uses this data, known as INGESTED_EVENTS, to train your model and improve fraud predictions.

$sel:description:EventType', eventType_description - The event type description.

ExternalEventsDetail

data ExternalEventsDetail Source #

Details for the external events data used for model version training.

See: newExternalEventsDetail smart constructor.

Instances

Instances details
Eq ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

Read ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

Show ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

Generic ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

Associated Types

type Rep ExternalEventsDetail :: Type -> Type #

NFData ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

Methods

rnf :: ExternalEventsDetail -> () #

Hashable ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

ToJSON ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

FromJSON ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

type Rep ExternalEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalEventsDetail

type Rep ExternalEventsDetail = D1 ('MetaData "ExternalEventsDetail" "Amazonka.FraudDetector.Types.ExternalEventsDetail" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ExternalEventsDetail'" 'PrefixI 'True) (S1 ('MetaSel ('Just "dataLocation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "dataAccessRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newExternalEventsDetail Source #

Create a value of ExternalEventsDetail 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:dataLocation:ExternalEventsDetail', externalEventsDetail_dataLocation - The Amazon S3 bucket location for the data.

$sel:dataAccessRoleArn:ExternalEventsDetail', externalEventsDetail_dataAccessRoleArn - The ARN of the role that provides Amazon Fraud Detector access to the data location.

ExternalModel

data ExternalModel Source #

The Amazon SageMaker model.

See: newExternalModel smart constructor.

Instances

Instances details
Eq ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

Read ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

Show ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

Generic ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

Associated Types

type Rep ExternalModel :: Type -> Type #

NFData ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

Methods

rnf :: ExternalModel -> () #

Hashable ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

FromJSON ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

type Rep ExternalModel Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModel

newExternalModel :: ExternalModel Source #

Create a value of ExternalModel 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:modelEndpoint:ExternalModel', externalModel_modelEndpoint - The Amazon SageMaker model endpoints.

$sel:modelSource:ExternalModel', externalModel_modelSource - The source of the model.

$sel:lastUpdatedTime:ExternalModel', externalModel_lastUpdatedTime - Timestamp of when the model was last updated.

$sel:arn:ExternalModel', externalModel_arn - The model ARN.

$sel:createdTime:ExternalModel', externalModel_createdTime - Timestamp of when the model was last created.

$sel:modelEndpointStatus:ExternalModel', externalModel_modelEndpointStatus - The Amazon Fraud Detector status for the external model endpoint

$sel:outputConfiguration:ExternalModel', externalModel_outputConfiguration - The output configuration.

$sel:invokeModelEndpointRoleArn:ExternalModel', externalModel_invokeModelEndpointRoleArn - The role used to invoke the model.

$sel:inputConfiguration:ExternalModel', externalModel_inputConfiguration - The input configuration.

ExternalModelOutputs

data ExternalModelOutputs Source #

The fraud prediction scores from Amazon SageMaker model.

See: newExternalModelOutputs smart constructor.

Instances

Instances details
Eq ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

Read ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

Show ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

Generic ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

Associated Types

type Rep ExternalModelOutputs :: Type -> Type #

NFData ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

Methods

rnf :: ExternalModelOutputs -> () #

Hashable ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

FromJSON ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

type Rep ExternalModelOutputs Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelOutputs

type Rep ExternalModelOutputs = D1 ('MetaData "ExternalModelOutputs" "Amazonka.FraudDetector.Types.ExternalModelOutputs" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ExternalModelOutputs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "externalModel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExternalModelSummary)) :*: S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text)))))

newExternalModelOutputs :: ExternalModelOutputs Source #

Create a value of ExternalModelOutputs 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:externalModel:ExternalModelOutputs', externalModelOutputs_externalModel - The Amazon SageMaker model.

$sel:outputs:ExternalModelOutputs', externalModelOutputs_outputs - The fraud prediction scores from Amazon SageMaker model.

ExternalModelSummary

data ExternalModelSummary Source #

The Amazon SageMaker model.

See: newExternalModelSummary smart constructor.

Instances

Instances details
Eq ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

Read ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

Show ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

Generic ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

Associated Types

type Rep ExternalModelSummary :: Type -> Type #

NFData ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

Methods

rnf :: ExternalModelSummary -> () #

Hashable ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

FromJSON ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

type Rep ExternalModelSummary Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ExternalModelSummary

type Rep ExternalModelSummary = D1 ('MetaData "ExternalModelSummary" "Amazonka.FraudDetector.Types.ExternalModelSummary" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ExternalModelSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelSource))))

newExternalModelSummary :: ExternalModelSummary Source #

Create a value of ExternalModelSummary 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:modelEndpoint:ExternalModelSummary', externalModelSummary_modelEndpoint - The endpoint of the Amazon SageMaker model.

$sel:modelSource:ExternalModelSummary', externalModelSummary_modelSource - The source of the model.

FieldValidationMessage

data FieldValidationMessage Source #

The message details.

See: newFieldValidationMessage smart constructor.

Instances

Instances details
Eq FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

Read FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

Show FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

Generic FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

Associated Types

type Rep FieldValidationMessage :: Type -> Type #

NFData FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

Methods

rnf :: FieldValidationMessage -> () #

Hashable FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

FromJSON FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

type Rep FieldValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FieldValidationMessage

type Rep FieldValidationMessage = D1 ('MetaData "FieldValidationMessage" "Amazonka.FraudDetector.Types.FieldValidationMessage" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "FieldValidationMessage'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "identifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "content") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "fieldName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "title") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newFieldValidationMessage :: FieldValidationMessage Source #

Create a value of FieldValidationMessage 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:identifier:FieldValidationMessage', fieldValidationMessage_identifier - The message ID.

$sel:content:FieldValidationMessage', fieldValidationMessage_content - The message content.

$sel:fieldName:FieldValidationMessage', fieldValidationMessage_fieldName - The field name.

$sel:title:FieldValidationMessage', fieldValidationMessage_title - The message title.

$sel:type':FieldValidationMessage', fieldValidationMessage_type - The message type.

FileValidationMessage

data FileValidationMessage Source #

The message details.

See: newFileValidationMessage smart constructor.

Instances

Instances details
Eq FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

Read FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

Show FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

Generic FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

Associated Types

type Rep FileValidationMessage :: Type -> Type #

NFData FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

Methods

rnf :: FileValidationMessage -> () #

Hashable FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

FromJSON FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

type Rep FileValidationMessage Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.FileValidationMessage

type Rep FileValidationMessage = D1 ('MetaData "FileValidationMessage" "Amazonka.FraudDetector.Types.FileValidationMessage" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "FileValidationMessage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "content") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "title") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newFileValidationMessage :: FileValidationMessage Source #

Create a value of FileValidationMessage 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:content:FileValidationMessage', fileValidationMessage_content - The message content.

$sel:title:FileValidationMessage', fileValidationMessage_title - The message title.

$sel:type':FileValidationMessage', fileValidationMessage_type - The message type.

IngestedEventStatistics

data IngestedEventStatistics Source #

Data about the stored events.

See: newIngestedEventStatistics smart constructor.

Instances

Instances details
Eq IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

Read IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

Show IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

Generic IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

Associated Types

type Rep IngestedEventStatistics :: Type -> Type #

NFData IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

Methods

rnf :: IngestedEventStatistics -> () #

Hashable IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

FromJSON IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

type Rep IngestedEventStatistics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventStatistics

type Rep IngestedEventStatistics = D1 ('MetaData "IngestedEventStatistics" "Amazonka.FraudDetector.Types.IngestedEventStatistics" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "IngestedEventStatistics'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "eventDataSizeInBytes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "mostRecentEvent") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "numberOfEvents") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "leastRecentEvent") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newIngestedEventStatistics :: IngestedEventStatistics Source #

Create a value of IngestedEventStatistics 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:eventDataSizeInBytes:IngestedEventStatistics', ingestedEventStatistics_eventDataSizeInBytes - The total size of the stored events.

$sel:mostRecentEvent:IngestedEventStatistics', ingestedEventStatistics_mostRecentEvent - The newest stored event.

$sel:lastUpdatedTime:IngestedEventStatistics', ingestedEventStatistics_lastUpdatedTime - Timestamp of when the stored event was last updated.

$sel:numberOfEvents:IngestedEventStatistics', ingestedEventStatistics_numberOfEvents - The number of stored events.

$sel:leastRecentEvent:IngestedEventStatistics', ingestedEventStatistics_leastRecentEvent - The oldest stored event.

IngestedEventsDetail

data IngestedEventsDetail Source #

The details of the ingested event.

See: newIngestedEventsDetail smart constructor.

Instances

Instances details
Eq IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

Read IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

Show IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

Generic IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

Associated Types

type Rep IngestedEventsDetail :: Type -> Type #

NFData IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

Methods

rnf :: IngestedEventsDetail -> () #

Hashable IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

ToJSON IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

FromJSON IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

type Rep IngestedEventsDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsDetail

type Rep IngestedEventsDetail = D1 ('MetaData "IngestedEventsDetail" "Amazonka.FraudDetector.Types.IngestedEventsDetail" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "IngestedEventsDetail'" 'PrefixI 'True) (S1 ('MetaSel ('Just "ingestedEventsTimeWindow") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 IngestedEventsTimeWindow)))

newIngestedEventsDetail Source #

Create a value of IngestedEventsDetail 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:ingestedEventsTimeWindow:IngestedEventsDetail', ingestedEventsDetail_ingestedEventsTimeWindow - The start and stop time of the ingested events.

IngestedEventsTimeWindow

data IngestedEventsTimeWindow Source #

The start and stop time of the ingested events.

See: newIngestedEventsTimeWindow smart constructor.

Instances

Instances details
Eq IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

Read IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

Show IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

Generic IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

Associated Types

type Rep IngestedEventsTimeWindow :: Type -> Type #

NFData IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

Hashable IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

ToJSON IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

FromJSON IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

type Rep IngestedEventsTimeWindow Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.IngestedEventsTimeWindow

type Rep IngestedEventsTimeWindow = D1 ('MetaData "IngestedEventsTimeWindow" "Amazonka.FraudDetector.Types.IngestedEventsTimeWindow" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "IngestedEventsTimeWindow'" 'PrefixI 'True) (S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "endTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newIngestedEventsTimeWindow Source #

Create a value of IngestedEventsTimeWindow 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:startTime:IngestedEventsTimeWindow', ingestedEventsTimeWindow_startTime - Timestamp of the first ingensted event.

$sel:endTime:IngestedEventsTimeWindow', ingestedEventsTimeWindow_endTime - Timestamp of the final ingested event.

KMSKey

data KMSKey Source #

The KMS key details.

See: newKMSKey smart constructor.

Constructors

KMSKey' (Maybe Text) 

Instances

Instances details
Eq KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

Methods

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

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

Read KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

Show KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

Generic KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

Associated Types

type Rep KMSKey :: Type -> Type #

Methods

from :: KMSKey -> Rep KMSKey x #

to :: Rep KMSKey x -> KMSKey #

NFData KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

Methods

rnf :: KMSKey -> () #

Hashable KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

Methods

hashWithSalt :: Int -> KMSKey -> Int #

hash :: KMSKey -> Int #

FromJSON KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

type Rep KMSKey Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.KMSKey

type Rep KMSKey = D1 ('MetaData "KMSKey" "Amazonka.FraudDetector.Types.KMSKey" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "KMSKey'" 'PrefixI 'True) (S1 ('MetaSel ('Just "kmsEncryptionKeyArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newKMSKey :: KMSKey Source #

Create a value of KMSKey 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:kmsEncryptionKeyArn:KMSKey', kmsKey_kmsEncryptionKeyArn - The encryption key ARN.

Label

data Label Source #

The label details.

See: newLabel smart constructor.

Constructors

Label' (Maybe Text) (Maybe Text) (Maybe Text) (Maybe Text) (Maybe Text) 

Instances

Instances details
Eq Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

Methods

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

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

Read Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

Show Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

Methods

showsPrec :: Int -> Label -> ShowS #

show :: Label -> String #

showList :: [Label] -> ShowS #

Generic Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

Associated Types

type Rep Label :: Type -> Type #

Methods

from :: Label -> Rep Label x #

to :: Rep Label x -> Label #

NFData Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

Methods

rnf :: Label -> () #

Hashable Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

Methods

hashWithSalt :: Int -> Label -> Int #

hash :: Label -> Int #

FromJSON Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

type Rep Label Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Label

type Rep Label = D1 ('MetaData "Label" "Amazonka.FraudDetector.Types.Label" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Label'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newLabel :: Label Source #

Create a value of Label 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:lastUpdatedTime:Label', label_lastUpdatedTime - Timestamp of when the label was last updated.

$sel:arn:Label', label_arn - The label ARN.

$sel:createdTime:Label', label_createdTime - Timestamp of when the event type was created.

$sel:name:Label', label_name - The label name.

$sel:description:Label', label_description - The label description.

LabelSchema

data LabelSchema Source #

The label schema.

See: newLabelSchema smart constructor.

Instances

Instances details
Eq LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

Read LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

Show LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

Generic LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

Associated Types

type Rep LabelSchema :: Type -> Type #

NFData LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

Methods

rnf :: LabelSchema -> () #

Hashable LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

ToJSON LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

FromJSON LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

type Rep LabelSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LabelSchema

type Rep LabelSchema = D1 ('MetaData "LabelSchema" "Amazonka.FraudDetector.Types.LabelSchema" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "LabelSchema'" 'PrefixI 'True) (S1 ('MetaSel ('Just "unlabeledEventsTreatment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UnlabeledEventsTreatment)) :*: S1 ('MetaSel ('Just "labelMapper") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text (NonEmpty Text)))))

newLabelSchema :: LabelSchema Source #

Create a value of LabelSchema 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:unlabeledEventsTreatment:LabelSchema', labelSchema_unlabeledEventsTreatment - The action to take for unlabeled events.

$sel:labelMapper:LabelSchema', labelSchema_labelMapper - The label mapper maps the Amazon Fraud Detector supported model classification labels (FRAUD, LEGIT) to the appropriate event type labels. For example, if "FRAUD" and "LEGIT" are Amazon Fraud Detector supported labels, this mapper could be: {"FRAUD" => ["0"], "LEGIT" => ["1"]} or {"FRAUD" => ["false"], "LEGIT" => ["true"]} or {"FRAUD" => ["fraud", "abuse"], "LEGIT" => ["legit", "safe"]}. The value part of the mapper is a list, because you may have multiple label variants from your event type for a single Amazon Fraud Detector label.

LogOddsMetric

data LogOddsMetric Source #

The log odds metric details.

See: newLogOddsMetric smart constructor.

Instances

Instances details
Eq LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

Read LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

Show LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

Generic LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

Associated Types

type Rep LogOddsMetric :: Type -> Type #

NFData LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

Methods

rnf :: LogOddsMetric -> () #

Hashable LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

FromJSON LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

type Rep LogOddsMetric Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.LogOddsMetric

type Rep LogOddsMetric = D1 ('MetaData "LogOddsMetric" "Amazonka.FraudDetector.Types.LogOddsMetric" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "LogOddsMetric'" 'PrefixI 'True) (S1 ('MetaSel ('Just "variableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "variableType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "variableImportance") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Double))))

newLogOddsMetric Source #

Create a value of LogOddsMetric 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:variableName:LogOddsMetric', logOddsMetric_variableName - The name of the variable.

$sel:variableType:LogOddsMetric', logOddsMetric_variableType - The type of variable.

$sel:variableImportance:LogOddsMetric', logOddsMetric_variableImportance - The relative importance of the variable. For more information, see Model variable importance.

MetricDataPoint

data MetricDataPoint Source #

Model performance metrics data points.

See: newMetricDataPoint smart constructor.

Instances

Instances details
Eq MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

Read MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

Show MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

Generic MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

Associated Types

type Rep MetricDataPoint :: Type -> Type #

NFData MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

Methods

rnf :: MetricDataPoint -> () #

Hashable MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

FromJSON MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

type Rep MetricDataPoint Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.MetricDataPoint

type Rep MetricDataPoint = D1 ('MetaData "MetricDataPoint" "Amazonka.FraudDetector.Types.MetricDataPoint" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "MetricDataPoint'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "precision") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "fpr") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))) :*: (S1 ('MetaSel ('Just "threshold") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "tpr") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)))))

newMetricDataPoint :: MetricDataPoint Source #

Create a value of MetricDataPoint 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:precision:MetricDataPoint', metricDataPoint_precision - The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.

$sel:fpr:MetricDataPoint', metricDataPoint_fpr - The false positive rate. This is the percentage of total legitimate events that are incorrectly predicted as fraud.

$sel:threshold:MetricDataPoint', metricDataPoint_threshold - The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.

$sel:tpr:MetricDataPoint', metricDataPoint_tpr - The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.

Model

data Model Source #

The model.

See: newModel smart constructor.

Instances

Instances details
Eq Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

Methods

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

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

Read Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

Show Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

Methods

showsPrec :: Int -> Model -> ShowS #

show :: Model -> String #

showList :: [Model] -> ShowS #

Generic Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

Associated Types

type Rep Model :: Type -> Type #

Methods

from :: Model -> Rep Model x #

to :: Rep Model x -> Model #

NFData Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

Methods

rnf :: Model -> () #

Hashable Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

Methods

hashWithSalt :: Int -> Model -> Int #

hash :: Model -> Int #

FromJSON Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

type Rep Model Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Model

newModel :: Model Source #

Create a value of Model 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:modelType:Model', model_modelType - The model type.

$sel:lastUpdatedTime:Model', model_lastUpdatedTime - Timestamp of last time the model was updated.

$sel:modelId:Model', model_modelId - The model ID.

$sel:arn:Model', model_arn - The ARN of the model.

$sel:createdTime:Model', model_createdTime - Timestamp of when the model was created.

$sel:eventTypeName:Model', model_eventTypeName - The name of the event type.

$sel:description:Model', model_description - The model description.

ModelEndpointDataBlob

data ModelEndpointDataBlob Source #

A pre-formed Amazon SageMaker model input you can include if your detector version includes an imported Amazon SageMaker model endpoint with pass-through input configuration.

See: newModelEndpointDataBlob smart constructor.

Instances

Instances details
Eq ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

Read ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

Show ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

Generic ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

Associated Types

type Rep ModelEndpointDataBlob :: Type -> Type #

NFData ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

Methods

rnf :: ModelEndpointDataBlob -> () #

Hashable ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

ToJSON ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

type Rep ModelEndpointDataBlob Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelEndpointDataBlob

type Rep ModelEndpointDataBlob = D1 ('MetaData "ModelEndpointDataBlob" "Amazonka.FraudDetector.Types.ModelEndpointDataBlob" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelEndpointDataBlob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "byteBuffer") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Base64)) :*: S1 ('MetaSel ('Just "contentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newModelEndpointDataBlob :: ModelEndpointDataBlob Source #

Create a value of ModelEndpointDataBlob 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:byteBuffer:ModelEndpointDataBlob', modelEndpointDataBlob_byteBuffer - The byte buffer of the Amazon SageMaker model endpoint input data blob.-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

$sel:contentType:ModelEndpointDataBlob', modelEndpointDataBlob_contentType - The content type of the Amazon SageMaker model endpoint input data blob.

ModelInputConfiguration

data ModelInputConfiguration Source #

The Amazon SageMaker model input configuration.

See: newModelInputConfiguration smart constructor.

Instances

Instances details
Eq ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Read ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Show ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Generic ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Associated Types

type Rep ModelInputConfiguration :: Type -> Type #

NFData ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Methods

rnf :: ModelInputConfiguration -> () #

Hashable ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

ToJSON ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

FromJSON ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

type Rep ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

type Rep ModelInputConfiguration = D1 ('MetaData "ModelInputConfiguration" "Amazonka.FraudDetector.Types.ModelInputConfiguration" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelInputConfiguration'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "format") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelInputDataFormat)) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "csvInputTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "jsonInputTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "useEventVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool)))))

newModelInputConfiguration Source #

Create a value of ModelInputConfiguration 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:format:ModelInputConfiguration', modelInputConfiguration_format - The format of the model input configuration. The format differs depending on if it is passed through to SageMaker or constructed by Amazon Fraud Detector.

$sel:eventTypeName:ModelInputConfiguration', modelInputConfiguration_eventTypeName - The event type name.

$sel:csvInputTemplate:ModelInputConfiguration', modelInputConfiguration_csvInputTemplate - Template for constructing the CSV input-data sent to SageMaker. At event-evaluation, the placeholders for variable-names in the template will be replaced with the variable values before being sent to SageMaker.

$sel:jsonInputTemplate:ModelInputConfiguration', modelInputConfiguration_jsonInputTemplate - Template for constructing the JSON input-data sent to SageMaker. At event-evaluation, the placeholders for variable names in the template will be replaced with the variable values before being sent to SageMaker.

$sel:useEventVariables:ModelInputConfiguration', modelInputConfiguration_useEventVariables - The event variables.

ModelOutputConfiguration

data ModelOutputConfiguration Source #

Provides the Amazon Sagemaker model output configuration.

See: newModelOutputConfiguration smart constructor.

Instances

Instances details
Eq ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

Read ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

Show ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

Generic ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

Associated Types

type Rep ModelOutputConfiguration :: Type -> Type #

NFData ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

Hashable ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

ToJSON ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

FromJSON ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

type Rep ModelOutputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelOutputConfiguration

type Rep ModelOutputConfiguration = D1 ('MetaData "ModelOutputConfiguration" "Amazonka.FraudDetector.Types.ModelOutputConfiguration" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelOutputConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jsonKeyToVariableMap") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "csvIndexToVariableMap") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "format") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelOutputDataFormat))))

newModelOutputConfiguration Source #

Create a value of ModelOutputConfiguration 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:jsonKeyToVariableMap:ModelOutputConfiguration', modelOutputConfiguration_jsonKeyToVariableMap - A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables.

$sel:csvIndexToVariableMap:ModelOutputConfiguration', modelOutputConfiguration_csvIndexToVariableMap - A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables.

$sel:format:ModelOutputConfiguration', modelOutputConfiguration_format - The format of the model output configuration.

ModelScores

data ModelScores Source #

The fraud prediction scores.

See: newModelScores smart constructor.

Instances

Instances details
Eq ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

Read ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

Show ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

Generic ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

Associated Types

type Rep ModelScores :: Type -> Type #

NFData ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

Methods

rnf :: ModelScores -> () #

Hashable ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

FromJSON ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

type Rep ModelScores Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelScores

type Rep ModelScores = D1 ('MetaData "ModelScores" "Amazonka.FraudDetector.Types.ModelScores" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelScores'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelVersion)) :*: S1 ('MetaSel ('Just "scores") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Double)))))

newModelScores :: ModelScores Source #

Create a value of ModelScores 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:modelVersion:ModelScores', modelScores_modelVersion - The model version.

$sel:scores:ModelScores', modelScores_scores - The model's fraud prediction scores.

ModelVersion

data ModelVersion Source #

The model version.

See: newModelVersion smart constructor.

Instances

Instances details
Eq ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

Read ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

Show ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

Generic ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

Associated Types

type Rep ModelVersion :: Type -> Type #

NFData ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

Methods

rnf :: ModelVersion -> () #

Hashable ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

ToJSON ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

FromJSON ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

type Rep ModelVersion Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersion

type Rep ModelVersion = D1 ('MetaData "ModelVersion" "Amazonka.FraudDetector.Types.ModelVersion" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelTypeEnum) :*: S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newModelVersion Source #

Create a value of ModelVersion 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:arn:ModelVersion', modelVersion_arn - The model version ARN.

$sel:modelId:ModelVersion', modelVersion_modelId - The model ID.

$sel:modelType:ModelVersion', modelVersion_modelType - The model type.

$sel:modelVersionNumber:ModelVersion', modelVersion_modelVersionNumber - The model version number.

ModelVersionDetail

data ModelVersionDetail Source #

The details of the model version.

See: newModelVersionDetail smart constructor.

Instances

Instances details
Eq ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

Read ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

Show ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

Generic ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

Associated Types

type Rep ModelVersionDetail :: Type -> Type #

NFData ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

Methods

rnf :: ModelVersionDetail -> () #

Hashable ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

FromJSON ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

type Rep ModelVersionDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelVersionDetail

type Rep ModelVersionDetail = D1 ('MetaData "ModelVersionDetail" "Amazonka.FraudDetector.Types.ModelVersionDetail" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelVersionDetail'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelTypeEnum)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "modelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "trainingDataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TrainingDataSourceEnum))))) :*: ((S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "externalEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExternalEventsDetail)) :*: S1 ('MetaSel ('Just "ingestedEventsDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IngestedEventsDetail)))) :*: (S1 ('MetaSel ('Just "modelVersionNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "trainingResult") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TrainingResult)) :*: S1 ('MetaSel ('Just "trainingDataSchema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TrainingDataSchema)))))))

newModelVersionDetail :: ModelVersionDetail Source #

Create a value of ModelVersionDetail 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:status:ModelVersionDetail', modelVersionDetail_status - The status of the model version.

$sel:modelType:ModelVersionDetail', modelVersionDetail_modelType - The model type.

$sel:lastUpdatedTime:ModelVersionDetail', modelVersionDetail_lastUpdatedTime - The timestamp when the model was last updated.

$sel:modelId:ModelVersionDetail', modelVersionDetail_modelId - The model ID.

$sel:arn:ModelVersionDetail', modelVersionDetail_arn - The model version ARN.

$sel:trainingDataSource:ModelVersionDetail', modelVersionDetail_trainingDataSource - The model version training data source.

$sel:createdTime:ModelVersionDetail', modelVersionDetail_createdTime - The timestamp when the model was created.

$sel:externalEventsDetail:ModelVersionDetail', modelVersionDetail_externalEventsDetail - The external events data details. This will be populated if the trainingDataSource for the model version is specified as EXTERNAL_EVENTS.

$sel:ingestedEventsDetail:ModelVersionDetail', modelVersionDetail_ingestedEventsDetail - The ingested events data details. This will be populated if the trainingDataSource for the model version is specified as INGESTED_EVENTS.

$sel:modelVersionNumber:ModelVersionDetail', modelVersionDetail_modelVersionNumber - The model version number.

$sel:trainingResult:ModelVersionDetail', modelVersionDetail_trainingResult - The training results.

$sel:trainingDataSchema:ModelVersionDetail', modelVersionDetail_trainingDataSchema - The training data schema.

Outcome

data Outcome Source #

The outcome.

See: newOutcome smart constructor.

Instances

Instances details
Eq Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

Methods

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

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

Read Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

Show Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

Generic Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

Associated Types

type Rep Outcome :: Type -> Type #

Methods

from :: Outcome -> Rep Outcome x #

to :: Rep Outcome x -> Outcome #

NFData Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

Methods

rnf :: Outcome -> () #

Hashable Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

Methods

hashWithSalt :: Int -> Outcome -> Int #

hash :: Outcome -> Int #

FromJSON Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

type Rep Outcome Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Outcome

type Rep Outcome = D1 ('MetaData "Outcome" "Amazonka.FraudDetector.Types.Outcome" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Outcome'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newOutcome :: Outcome Source #

Create a value of Outcome 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:lastUpdatedTime:Outcome', outcome_lastUpdatedTime - The timestamp when the outcome was last updated.

$sel:arn:Outcome', outcome_arn - The outcome ARN.

$sel:createdTime:Outcome', outcome_createdTime - The timestamp when the outcome was created.

$sel:name:Outcome', outcome_name - The outcome name.

$sel:description:Outcome', outcome_description - The outcome description.

Rule

data Rule Source #

A rule.

See: newRule smart constructor.

Constructors

Rule' Text Text Text 

Instances

Instances details
Eq Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

Methods

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

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

Read Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

Show Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

Methods

showsPrec :: Int -> Rule -> ShowS #

show :: Rule -> String #

showList :: [Rule] -> ShowS #

Generic Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

Associated Types

type Rep Rule :: Type -> Type #

Methods

from :: Rule -> Rep Rule x #

to :: Rep Rule x -> Rule #

NFData Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

Methods

rnf :: Rule -> () #

Hashable Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

Methods

hashWithSalt :: Int -> Rule -> Int #

hash :: Rule -> Int #

ToJSON Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

FromJSON Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

type Rep Rule Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Rule

type Rep Rule = D1 ('MetaData "Rule" "Amazonka.FraudDetector.Types.Rule" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Rule'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "ruleId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "ruleVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newRule Source #

Create a value of Rule 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:detectorId:Rule', rule_detectorId - The detector for which the rule is associated.

$sel:ruleId:Rule', rule_ruleId - The rule ID.

$sel:ruleVersion:Rule', rule_ruleVersion - The rule version.

RuleDetail

data RuleDetail Source #

The details of the rule.

See: newRuleDetail smart constructor.

Instances

Instances details
Eq RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

Show RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

Generic RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

Associated Types

type Rep RuleDetail :: Type -> Type #

NFData RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

Methods

rnf :: RuleDetail -> () #

Hashable RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

FromJSON RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

type Rep RuleDetail Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleDetail

newRuleDetail :: RuleDetail Source #

Create a value of RuleDetail 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:ruleVersion:RuleDetail', ruleDetail_ruleVersion - The rule version.

$sel:lastUpdatedTime:RuleDetail', ruleDetail_lastUpdatedTime - Timestamp of the last time the rule was updated.

$sel:arn:RuleDetail', ruleDetail_arn - The rule ARN.

$sel:createdTime:RuleDetail', ruleDetail_createdTime - The timestamp of when the rule was created.

$sel:ruleId:RuleDetail', ruleDetail_ruleId - The rule ID.

$sel:outcomes:RuleDetail', ruleDetail_outcomes - The rule outcomes.

$sel:detectorId:RuleDetail', ruleDetail_detectorId - The detector for which the rule is associated.

$sel:expression:RuleDetail', ruleDetail_expression - The rule expression.

$sel:language:RuleDetail', ruleDetail_language - The rule language.

$sel:description:RuleDetail', ruleDetail_description - The rule description.

RuleResult

data RuleResult Source #

The rule results.

See: newRuleResult smart constructor.

Constructors

RuleResult' (Maybe Text) (Maybe [Text]) 

Instances

Instances details
Eq RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

Read RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

Show RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

Generic RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

Associated Types

type Rep RuleResult :: Type -> Type #

NFData RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

Methods

rnf :: RuleResult -> () #

Hashable RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

FromJSON RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

type Rep RuleResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.RuleResult

type Rep RuleResult = D1 ('MetaData "RuleResult" "Amazonka.FraudDetector.Types.RuleResult" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "RuleResult'" 'PrefixI 'True) (S1 ('MetaSel ('Just "ruleId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "outcomes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))))

newRuleResult :: RuleResult Source #

Create a value of RuleResult 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:ruleId:RuleResult', ruleResult_ruleId - The rule ID that was matched, based on the rule execution mode.

$sel:outcomes:RuleResult', ruleResult_outcomes - The outcomes of the matched rule, based on the rule execution mode.

Tag

data Tag Source #

A key and value pair.

See: newTag smart constructor.

Constructors

Tag' Text Text 

Instances

Instances details
Eq Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

Methods

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

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

Read Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

Show Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

Methods

showsPrec :: Int -> Tag -> ShowS #

show :: Tag -> String #

showList :: [Tag] -> ShowS #

Generic Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

Associated Types

type Rep Tag :: Type -> Type #

Methods

from :: Tag -> Rep Tag x #

to :: Rep Tag x -> Tag #

NFData Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

Methods

rnf :: Tag -> () #

Hashable Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

Methods

hashWithSalt :: Int -> Tag -> Int #

hash :: Tag -> Int #

ToJSON Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

FromJSON Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

type Rep Tag Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Tag

type Rep Tag = D1 ('MetaData "Tag" "Amazonka.FraudDetector.Types.Tag" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "Tag'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newTag Source #

Create a value of Tag 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:key:Tag', tag_key - A tag key.

$sel:value:Tag', tag_value - A value assigned to a tag key.

TrainingDataSchema

data TrainingDataSchema Source #

The training data schema.

See: newTrainingDataSchema smart constructor.

Instances

Instances details
Eq TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

Read TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

Show TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

Generic TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

Associated Types

type Rep TrainingDataSchema :: Type -> Type #

NFData TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

Methods

rnf :: TrainingDataSchema -> () #

Hashable TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

ToJSON TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

FromJSON TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

type Rep TrainingDataSchema Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingDataSchema

type Rep TrainingDataSchema = D1 ('MetaData "TrainingDataSchema" "Amazonka.FraudDetector.Types.TrainingDataSchema" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "TrainingDataSchema'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text]) :*: S1 ('MetaSel ('Just "labelSchema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LabelSchema)))

newTrainingDataSchema Source #

Create a value of TrainingDataSchema 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:modelVariables:TrainingDataSchema', trainingDataSchema_modelVariables - The training data schema variables.

$sel:labelSchema:TrainingDataSchema', trainingDataSchema_labelSchema - Undocumented member.

TrainingMetrics

data TrainingMetrics Source #

The training metric details.

See: newTrainingMetrics smart constructor.

Instances

Instances details
Eq TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

Read TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

Show TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

Generic TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

Associated Types

type Rep TrainingMetrics :: Type -> Type #

NFData TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

Methods

rnf :: TrainingMetrics -> () #

Hashable TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

FromJSON TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

type Rep TrainingMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingMetrics

type Rep TrainingMetrics = D1 ('MetaData "TrainingMetrics" "Amazonka.FraudDetector.Types.TrainingMetrics" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "TrainingMetrics'" 'PrefixI 'True) (S1 ('MetaSel ('Just "auc") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "metricDataPoints") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [MetricDataPoint]))))

newTrainingMetrics :: TrainingMetrics Source #

Create a value of TrainingMetrics 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:auc:TrainingMetrics', trainingMetrics_auc - The area under the curve. This summarizes true positive rate (TPR) and false positive rate (FPR) across all possible model score thresholds. A model with no predictive power has an AUC of 0.5, whereas a perfect model has a score of 1.0.

$sel:metricDataPoints:TrainingMetrics', trainingMetrics_metricDataPoints - The data points details.

TrainingResult

data TrainingResult Source #

The training result details.

See: newTrainingResult smart constructor.

Instances

Instances details
Eq TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

Read TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

Show TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

Generic TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

Associated Types

type Rep TrainingResult :: Type -> Type #

NFData TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

Methods

rnf :: TrainingResult -> () #

Hashable TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

FromJSON TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

type Rep TrainingResult Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.TrainingResult

type Rep TrainingResult = D1 ('MetaData "TrainingResult" "Amazonka.FraudDetector.Types.TrainingResult" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "TrainingResult'" 'PrefixI 'True) (S1 ('MetaSel ('Just "dataValidationMetrics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DataValidationMetrics)) :*: (S1 ('MetaSel ('Just "trainingMetrics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TrainingMetrics)) :*: S1 ('MetaSel ('Just "variableImportanceMetrics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VariableImportanceMetrics)))))

newTrainingResult :: TrainingResult Source #

Create a value of TrainingResult 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:dataValidationMetrics:TrainingResult', trainingResult_dataValidationMetrics - The validation metrics.

$sel:trainingMetrics:TrainingResult', trainingResult_trainingMetrics - The training metric details.

$sel:variableImportanceMetrics:TrainingResult', trainingResult_variableImportanceMetrics - The variable importance metrics.

Variable

data Variable Source #

The variable.

See: newVariable smart constructor.

Instances

Instances details
Eq Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

Read Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

Show Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

Generic Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

Associated Types

type Rep Variable :: Type -> Type #

Methods

from :: Variable -> Rep Variable x #

to :: Rep Variable x -> Variable #

NFData Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

Methods

rnf :: Variable -> () #

Hashable Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

Methods

hashWithSalt :: Int -> Variable -> Int #

hash :: Variable -> Int #

FromJSON Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

type Rep Variable Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.Variable

newVariable :: Variable Source #

Create a value of Variable 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:lastUpdatedTime:Variable', variable_lastUpdatedTime - The time when variable was last updated.

$sel:arn:Variable', variable_arn - The ARN of the variable.

$sel:createdTime:Variable', variable_createdTime - The time when the variable was created.

$sel:name:Variable', variable_name - The name of the variable.

$sel:dataSource:Variable', variable_dataSource - The data source of the variable.

$sel:dataType:Variable', variable_dataType - The data type of the variable. For more information see Variable types.

$sel:defaultValue:Variable', variable_defaultValue - The default value of the variable.

$sel:variableType:Variable', variable_variableType - The variable type of the variable.

Valid Values: AUTH_CODE | AVS | BILLING_ADDRESS_L1 | BILLING_ADDRESS_L2 | BILLING_CITY | BILLING_COUNTRY | BILLING_NAME | BILLING_PHONE | BILLING_STATE | BILLING_ZIP | CARD_BIN | CATEGORICAL | CURRENCY_CODE | EMAIL_ADDRESS | FINGERPRINT | FRAUD_LABEL | FREE_FORM_TEXT | IP_ADDRESS | NUMERIC | ORDER_ID | PAYMENT_TYPE | PHONE_NUMBER | PRICE | PRODUCT_CATEGORY | SHIPPING_ADDRESS_L1 | SHIPPING_ADDRESS_L2 | SHIPPING_CITY | SHIPPING_COUNTRY | SHIPPING_NAME | SHIPPING_PHONE | SHIPPING_STATE | SHIPPING_ZIP | USERAGENT

$sel:description:Variable', variable_description - The description of the variable.

VariableEntry

data VariableEntry Source #

A variable in the list of variables for the batch create variable request.

See: newVariableEntry smart constructor.

Instances

Instances details
Eq VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

Read VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

Show VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

Generic VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

Associated Types

type Rep VariableEntry :: Type -> Type #

NFData VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

Methods

rnf :: VariableEntry -> () #

Hashable VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

ToJSON VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

type Rep VariableEntry Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableEntry

type Rep VariableEntry = D1 ('MetaData "VariableEntry" "Amazonka.FraudDetector.Types.VariableEntry" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "VariableEntry'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "dataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "dataType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "variableType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newVariableEntry :: VariableEntry Source #

Create a value of VariableEntry 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:name:VariableEntry', variableEntry_name - The name of the variable.

$sel:dataSource:VariableEntry', variableEntry_dataSource - The data source of the variable.

$sel:dataType:VariableEntry', variableEntry_dataType - The data type of the variable.

$sel:defaultValue:VariableEntry', variableEntry_defaultValue - The default value of the variable.

$sel:variableType:VariableEntry', variableEntry_variableType - The type of the variable. For more information see Variable types.

Valid Values: AUTH_CODE | AVS | BILLING_ADDRESS_L1 | BILLING_ADDRESS_L2 | BILLING_CITY | BILLING_COUNTRY | BILLING_NAME | BILLING_PHONE | BILLING_STATE | BILLING_ZIP | CARD_BIN | CATEGORICAL | CURRENCY_CODE | EMAIL_ADDRESS | FINGERPRINT | FRAUD_LABEL | FREE_FORM_TEXT | IP_ADDRESS | NUMERIC | ORDER_ID | PAYMENT_TYPE | PHONE_NUMBER | PRICE | PRODUCT_CATEGORY | SHIPPING_ADDRESS_L1 | SHIPPING_ADDRESS_L2 | SHIPPING_CITY | SHIPPING_COUNTRY | SHIPPING_NAME | SHIPPING_PHONE | SHIPPING_STATE | SHIPPING_ZIP | USERAGENT

$sel:description:VariableEntry', variableEntry_description - The description of the variable.

VariableImportanceMetrics

data VariableImportanceMetrics Source #

The variable importance metrics details.

See: newVariableImportanceMetrics smart constructor.

Instances

Instances details
Eq VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

Read VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

Show VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

Generic VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

Associated Types

type Rep VariableImportanceMetrics :: Type -> Type #

NFData VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

Hashable VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

FromJSON VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

type Rep VariableImportanceMetrics Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.VariableImportanceMetrics

type Rep VariableImportanceMetrics = D1 ('MetaData "VariableImportanceMetrics" "Amazonka.FraudDetector.Types.VariableImportanceMetrics" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "VariableImportanceMetrics'" 'PrefixI 'True) (S1 ('MetaSel ('Just "logOddsMetrics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LogOddsMetric]))))

newVariableImportanceMetrics :: VariableImportanceMetrics Source #

Create a value of VariableImportanceMetrics 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:logOddsMetrics:VariableImportanceMetrics', variableImportanceMetrics_logOddsMetrics - List of variable metrics.