Class: Aws::HealthLake::Types::OutputDataConfig

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

Overview

Note:

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

Note:

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

The output data configuration that was supplied when the export job was created.

Direct Known Subclasses

S3Configuration, Unknown

Defined Under Namespace

Classes: S3Configuration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_configurationTypes::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 'gems/aws-sdk-healthlake/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



888
889
890
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 888

def unknown
  @unknown
end