# IngestFromS3Body ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **urls** | **List[str]** | The path or list of paths of S3 files or directories. | **region** | **str** | The name of the region used for interaction with AWS services. | [optional] [default to 'us-east-1'] **credentials** | [**S3Credentials**](S3Credentials.md) | | [optional] **metadata** | **object** | Metadata for the documents. | [optional] ## Example ```python from h2ogpte.rest.models.ingest_from_s3_body import IngestFromS3Body # TODO update the JSON string below json = "{}" # create an instance of IngestFromS3Body from a JSON string ingest_from_s3_body_instance = IngestFromS3Body.from_json(json) # print the JSON string representation of the object print(IngestFromS3Body.to_json()) # convert the object into a dict ingest_from_s3_body_dict = ingest_from_s3_body_instance.to_dict() # create an instance of IngestFromS3Body from a dict ingest_from_s3_body_from_dict = IngestFromS3Body.from_dict(ingest_from_s3_body_dict) ```