amazonka-voice-id-2.0: Amazon Voice ID SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.VoiceId.ListFraudsterRegistrationJobs

Description

Lists all the fraudster registration jobs in the domain with the given JobStatus. If JobStatus is not provided, this lists all fraudster registration jobs in the given domain.

This operation returns paginated results.

Synopsis

Creating a Request

data ListFraudsterRegistrationJobs Source #

See: newListFraudsterRegistrationJobs smart constructor.

Constructors

ListFraudsterRegistrationJobs' 

Fields

  • jobStatus :: Maybe FraudsterRegistrationJobStatus

    Provides the status of your fraudster registration job.

  • maxResults :: Maybe Natural

    The maximum number of results that are returned per call. You can use NextToken to obtain further pages of results. The default is 100; the maximum allowed page size is also 100.

  • nextToken :: Maybe Text

    If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.

  • domainId :: Text

    The identifier of the domain containing the fraudster registration Jobs.

Instances

Instances details
ToJSON ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

ToHeaders ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

ToPath ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

ToQuery ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

AWSPager ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

AWSRequest ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Generic ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Associated Types

type Rep ListFraudsterRegistrationJobs :: Type -> Type #

Read ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Show ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

NFData ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Eq ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Hashable ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

type AWSResponse ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

type Rep ListFraudsterRegistrationJobs Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

type Rep ListFraudsterRegistrationJobs = D1 ('MetaData "ListFraudsterRegistrationJobs" "Amazonka.VoiceId.ListFraudsterRegistrationJobs" "amazonka-voice-id-2.0-E9fR3xKghdA6rj9Pl7P2NC" 'False) (C1 ('MetaCons "ListFraudsterRegistrationJobs'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "jobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FraudsterRegistrationJobStatus)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "domainId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListFraudsterRegistrationJobs Source #

Create a value of ListFraudsterRegistrationJobs 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:

ListFraudsterRegistrationJobs, listFraudsterRegistrationJobs_jobStatus - Provides the status of your fraudster registration job.

$sel:maxResults:ListFraudsterRegistrationJobs', listFraudsterRegistrationJobs_maxResults - The maximum number of results that are returned per call. You can use NextToken to obtain further pages of results. The default is 100; the maximum allowed page size is also 100.

ListFraudsterRegistrationJobs, listFraudsterRegistrationJobs_nextToken - If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.

ListFraudsterRegistrationJobs, listFraudsterRegistrationJobs_domainId - The identifier of the domain containing the fraudster registration Jobs.

Request Lenses

listFraudsterRegistrationJobs_maxResults :: Lens' ListFraudsterRegistrationJobs (Maybe Natural) Source #

The maximum number of results that are returned per call. You can use NextToken to obtain further pages of results. The default is 100; the maximum allowed page size is also 100.

listFraudsterRegistrationJobs_nextToken :: Lens' ListFraudsterRegistrationJobs (Maybe Text) Source #

If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.

listFraudsterRegistrationJobs_domainId :: Lens' ListFraudsterRegistrationJobs Text Source #

The identifier of the domain containing the fraudster registration Jobs.

Destructuring the Response

data ListFraudsterRegistrationJobsResponse Source #

Constructors

ListFraudsterRegistrationJobsResponse' 

Fields

  • jobSummaries :: Maybe [FraudsterRegistrationJobSummary]

    A list containing details about each specified fraudster registration job.

  • nextToken :: Maybe Text

    If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListFraudsterRegistrationJobsResponse Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Show ListFraudsterRegistrationJobsResponse Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

NFData ListFraudsterRegistrationJobsResponse Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

Eq ListFraudsterRegistrationJobsResponse Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

type Rep ListFraudsterRegistrationJobsResponse Source # 
Instance details

Defined in Amazonka.VoiceId.ListFraudsterRegistrationJobs

type Rep ListFraudsterRegistrationJobsResponse = D1 ('MetaData "ListFraudsterRegistrationJobsResponse" "Amazonka.VoiceId.ListFraudsterRegistrationJobs" "amazonka-voice-id-2.0-E9fR3xKghdA6rj9Pl7P2NC" 'False) (C1 ('MetaCons "ListFraudsterRegistrationJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FraudsterRegistrationJobSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListFraudsterRegistrationJobsResponse Source #

Create a value of ListFraudsterRegistrationJobsResponse 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:jobSummaries:ListFraudsterRegistrationJobsResponse', listFraudsterRegistrationJobsResponse_jobSummaries - A list containing details about each specified fraudster registration job.

ListFraudsterRegistrationJobs, listFraudsterRegistrationJobsResponse_nextToken - If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.

$sel:httpStatus:ListFraudsterRegistrationJobsResponse', listFraudsterRegistrationJobsResponse_httpStatus - The response's http status code.

Response Lenses

listFraudsterRegistrationJobsResponse_nextToken :: Lens' ListFraudsterRegistrationJobsResponse (Maybe Text) Source #

If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.