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.GetEntityTypes

Description

Gets all entity types or a specific entity type if a name is specified. This is a paginated API. If you provide a null maxResults, this action retrieves a maximum of 10 records per page. If you provide a maxResults, the value must be between 5 and 10. To get the next page results, provide the pagination token from the GetEntityTypesResponse as part of your request. A null pagination token fetches the records from the beginning.

Synopsis

Creating a Request

data GetEntityTypes Source #

See: newGetEntityTypes smart constructor.

Constructors

GetEntityTypes' 

Fields

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.

Request Lenses

getEntityTypes_nextToken :: Lens' GetEntityTypes (Maybe Text) Source #

The next token for the subsequent request.

getEntityTypes_maxResults :: Lens' GetEntityTypes (Maybe Natural) Source #

The maximum number of objects to return for the request.

Destructuring the Response

data GetEntityTypesResponse Source #

See: newGetEntityTypesResponse smart constructor.

Constructors

GetEntityTypesResponse' 

Fields

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.

Response Lenses