Class: Aws::HealthLake::Types::OutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::HealthLake::Types::OutputDataConfig
- 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
Defined Under Namespace
Classes: S3Configuration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_configuration ⇒ Types::S3Configuration
The output data configuration that was supplied when the export job was created.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
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 '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
888 889 890 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 888 def unknown @unknown end |