Class: Aws::HealthLake::Types::InputDataConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb

Overview

Note:

InputDataConfig is a union - when making an API calls you must set exactly one of the members.

Note:

InputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InputDataConfig corresponding to the set member.

The input properties for an import job.

Direct Known Subclasses

S3Uri, Unknown

Defined Under Namespace

Classes: S3Uri, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_uriString

The S3Uri is the user specified S3 location of the FHIR data to be imported into AWS HealthLake.

Returns:

  • (String)


550
551
552
553
554
555
556
557
558
559
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 550

class InputDataConfig < Struct.new(
  :s3_uri,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3Uri < InputDataConfig; end
  class Unknown < InputDataConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



550
551
552
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 550

def unknown
  @unknown
end