libZSservicesZSamazonka-comprehendmedicalZSamazonka-comprehendmedical
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.ComprehendMedical.Types.InputDataConfig

Description

 
Synopsis

Documentation

data InputDataConfig Source #

The input properties for an entities detection job. This includes the name of the S3 bucket and the path to the files to be analyzed.

See: newInputDataConfig smart constructor.

Constructors

InputDataConfig' 

Fields

  • s3Key :: Maybe Text

    The path to the input data files in the S3 bucket.

  • s3Bucket :: Text

    The URI of the S3 bucket that contains the input data. The bucket must be in the same region as the API endpoint that you are calling.

    Each file in the document collection must be less than 40 KB. You can store a maximum of 30 GB in the bucket.

Instances

Instances details
Eq InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

Read InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

Show InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

Generic InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

Associated Types

type Rep InputDataConfig :: Type -> Type #

NFData InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

Methods

rnf :: InputDataConfig -> () #

Hashable InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

ToJSON InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

FromJSON InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

type Rep InputDataConfig Source # 
Instance details

Defined in Amazonka.ComprehendMedical.Types.InputDataConfig

type Rep InputDataConfig = D1 ('MetaData "InputDataConfig" "Amazonka.ComprehendMedical.Types.InputDataConfig" "libZSservicesZSamazonka-comprehendmedicalZSamazonka-comprehendmedical" 'False) (C1 ('MetaCons "InputDataConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3Key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "s3Bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newInputDataConfig Source #

Create a value of InputDataConfig 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:s3Key:InputDataConfig', inputDataConfig_s3Key - The path to the input data files in the S3 bucket.

$sel:s3Bucket:InputDataConfig', inputDataConfig_s3Bucket - The URI of the S3 bucket that contains the input data. The bucket must be in the same region as the API endpoint that you are calling.

Each file in the document collection must be less than 40 KB. You can store a maximum of 30 GB in the bucket.

inputDataConfig_s3Key :: Lens' InputDataConfig (Maybe Text) Source #

The path to the input data files in the S3 bucket.

inputDataConfig_s3Bucket :: Lens' InputDataConfig Text Source #

The URI of the S3 bucket that contains the input data. The bucket must be in the same region as the API endpoint that you are calling.

Each file in the document collection must be less than 40 KB. You can store a maximum of 30 GB in the bucket.