Class: Aws::DataZone::Types::SourceLocation

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

Overview

Note:

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

Note:

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

The source location for a notebook import in Amazon SageMaker Unified Studio.

Defined Under Namespace

Classes: S3, Unknown

Constant Summary collapse

SENSITIVE =
[:s3]

Instance Attribute Summary collapse

Instance Attribute Details

#s3String

The Amazon Simple Storage Service URI of the notebook source file.

Returns:

  • (String)


20913
20914
20915
20916
20917
20918
20919
20920
20921
20922
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 20913

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

  class S3 < SourceLocation; end
  class Unknown < SourceLocation; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



20913
20914
20915
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 20913

def unknown
  @unknown
end