Class: Aws::SageMaker::Types::AuthorizedUrl

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

Overview

Contains a presigned URL and its associated local file path for downloading hub content artifacts.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#local_pathString

The recommended local file path where the downloaded file should be stored to maintain proper directory structure and file organization.

Returns:

  • (String)


1844
1845
1846
1847
1848
1849
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 1844

class AuthorizedUrl < Struct.new(
  :url,
  :local_path)
  SENSITIVE = []
  include Aws::Structure
end

#urlString

The presigned S3 URL that provides temporary, secure access to download the file. URLs expire within 15 minutes for security purposes.

Returns:

  • (String)


1844
1845
1846
1847
1848
1849
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 1844

class AuthorizedUrl < Struct.new(
  :url,
  :local_path)
  SENSITIVE = []
  include Aws::Structure
end