amazonka-glue-2.0: Amazon Glue 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.Glue.BatchGetCustomEntityTypes

Description

Retrieves the details for the custom patterns specified by a list of names.

Synopsis

Creating a Request

data BatchGetCustomEntityTypes Source #

See: newBatchGetCustomEntityTypes smart constructor.

Constructors

BatchGetCustomEntityTypes' 

Fields

  • names :: NonEmpty Text

    A list of names of the custom patterns that you want to retrieve.

Instances

Instances details
ToJSON BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

ToHeaders BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

ToPath BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

ToQuery BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

AWSRequest BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Generic BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Associated Types

type Rep BatchGetCustomEntityTypes :: Type -> Type #

Read BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Show BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

NFData BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Eq BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Hashable BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

type AWSResponse BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

type Rep BatchGetCustomEntityTypes Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

type Rep BatchGetCustomEntityTypes = D1 ('MetaData "BatchGetCustomEntityTypes" "Amazonka.Glue.BatchGetCustomEntityTypes" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "BatchGetCustomEntityTypes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "names") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))

newBatchGetCustomEntityTypes Source #

Create a value of BatchGetCustomEntityTypes 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:BatchGetCustomEntityTypes', batchGetCustomEntityTypes_names - A list of names of the custom patterns that you want to retrieve.

Request Lenses

batchGetCustomEntityTypes_names :: Lens' BatchGetCustomEntityTypes (NonEmpty Text) Source #

A list of names of the custom patterns that you want to retrieve.

Destructuring the Response

data BatchGetCustomEntityTypesResponse Source #

See: newBatchGetCustomEntityTypesResponse smart constructor.

Constructors

BatchGetCustomEntityTypesResponse' 

Fields

Instances

Instances details
Generic BatchGetCustomEntityTypesResponse Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Associated Types

type Rep BatchGetCustomEntityTypesResponse :: Type -> Type #

Read BatchGetCustomEntityTypesResponse Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Show BatchGetCustomEntityTypesResponse Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

NFData BatchGetCustomEntityTypesResponse Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

Eq BatchGetCustomEntityTypesResponse Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

type Rep BatchGetCustomEntityTypesResponse Source # 
Instance details

Defined in Amazonka.Glue.BatchGetCustomEntityTypes

type Rep BatchGetCustomEntityTypesResponse = D1 ('MetaData "BatchGetCustomEntityTypesResponse" "Amazonka.Glue.BatchGetCustomEntityTypes" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "BatchGetCustomEntityTypesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "customEntityTypes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [CustomEntityType])) :*: (S1 ('MetaSel ('Just "customEntityTypesNotFound") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newBatchGetCustomEntityTypesResponse Source #

Create a value of BatchGetCustomEntityTypesResponse 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:customEntityTypes:BatchGetCustomEntityTypesResponse', batchGetCustomEntityTypesResponse_customEntityTypes - A list of CustomEntityType objects representing the custom patterns that have been created.

$sel:customEntityTypesNotFound:BatchGetCustomEntityTypesResponse', batchGetCustomEntityTypesResponse_customEntityTypesNotFound - A list of the names of custom patterns that were not found.

$sel:httpStatus:BatchGetCustomEntityTypesResponse', batchGetCustomEntityTypesResponse_httpStatus - The response's http status code.

Response Lenses

batchGetCustomEntityTypesResponse_customEntityTypes :: Lens' BatchGetCustomEntityTypesResponse (Maybe [CustomEntityType]) Source #

A list of CustomEntityType objects representing the custom patterns that have been created.