Class: Aws::DataZone::Types::OutputLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::OutputLocation
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
OutputLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutputLocation corresponding to the set member.
The output location for a notebook export in Amazon SageMaker Unified Studio.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3Destination
The Amazon Simple Storage Service destination for the notebook export.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3 ⇒ Types::S3Destination
The Amazon Simple Storage Service destination for the notebook export.
17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17770 class OutputLocation < Struct.new( :s3, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < OutputLocation; end class Unknown < OutputLocation; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
17770 17771 17772 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17770 def unknown @unknown end |