Module: Aws::HealthLake::Types
- Defined in:
- lib/aws-sdk-healthlake/types.rb
Defined Under Namespace
Classes: AccessDeniedException, ConflictException, CreateFHIRDatastoreRequest, CreateFHIRDatastoreResponse, DatastoreFilter, DatastoreProperties, DeleteFHIRDatastoreRequest, DeleteFHIRDatastoreResponse, DescribeFHIRDatastoreRequest, DescribeFHIRDatastoreResponse, DescribeFHIRExportJobRequest, DescribeFHIRExportJobResponse, DescribeFHIRImportJobRequest, DescribeFHIRImportJobResponse, ErrorCause, ExportJobProperties, IdentityProviderConfiguration, ImportJobProperties, InputDataConfig, InternalServerException, JobProgressReport, KmsEncryptionConfig, ListFHIRDatastoresRequest, ListFHIRDatastoresResponse, ListFHIRExportJobsRequest, ListFHIRExportJobsResponse, ListFHIRImportJobsRequest, ListFHIRImportJobsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, OutputDataConfig, PreloadDataConfig, ResourceNotFoundException, S3Configuration, SseConfiguration, StartFHIRExportJobRequest, StartFHIRExportJobResponse, StartFHIRImportJobRequest, StartFHIRImportJobResponse, Tag, TagResourceRequest, TagResourceResponse, ThrottlingException, UntagResourceRequest, UntagResourceResponse, ValidationException
Instance Attribute Summary collapse
-
#s3_configuration ⇒ Types::S3Configuration
The output data configuration that was supplied when the export job was created.
-
#s3_uri ⇒ String
The S3Uri is the user specified S3 location of the FHIR data to be imported into AWS HealthLake.
Instance Attribute Details
#s3_configuration ⇒ Types::S3Configuration
The output data configuration that was supplied when the export job was created.
888 889 890 891 892 893 894 895 896 897 |
# File 'lib/aws-sdk-healthlake/types.rb', line 888 class OutputDataConfig < Struct.new( :s3_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Configuration < OutputDataConfig; end class Unknown < OutputDataConfig; end end |
#s3_uri ⇒ String
The S3Uri is the user specified S3 location of the FHIR data to be imported into AWS HealthLake.
575 576 577 578 579 580 581 582 583 584 |
# File 'lib/aws-sdk-healthlake/types.rb', line 575 class InputDataConfig < Struct.new( :s3_uri, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3Uri < InputDataConfig; end class Unknown < InputDataConfig; end end |