Class: Aws::SageMaker::Types::AuthorizedUrl
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AuthorizedUrl
- 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
-
#local_path ⇒ String
The recommended local file path where the downloaded file should be stored to maintain proper directory structure and file organization.
-
#url ⇒ String
The presigned S3 URL that provides temporary, secure access to download the file.
Instance Attribute Details
#local_path ⇒ String
The recommended local file path where the downloaded file should be stored to maintain proper directory structure and file organization.
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 |
#url ⇒ String
The presigned S3 URL that provides temporary, secure access to download the file. URLs expire within 15 minutes for security purposes.
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 |