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.
858 859 860 861 862 863 864 865 866 867 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 858 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
858 859 860 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 858 def unknown @unknown end |