Class: Aws::SageMaker::Types::PresignedUrlAccessConfig

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

Overview

Configuration for accessing hub content through presigned URLs, including license agreement acceptance and URL validation settings.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#accept_eulaBoolean

Indicates acceptance of the End User License Agreement (EULA) for gated models. Set to true to acknowledge acceptance of the license terms required for accessing gated content.



42744
42745
42746
42747
42748
42749
# File 'lib/aws-sdk-sagemaker/types.rb', line 42744

class PresignedUrlAccessConfig < Struct.new(
  :accept_eula,
  :expected_s3_url)
  SENSITIVE = []
  include Aws::Structure
end

#expected_s3_urlString

The expected S3 URL prefix for validation purposes. This parameter helps ensure consistency between the resolved S3 URIs and the deployment configuration, reducing potential compatibility issues.



42744
42745
42746
42747
42748
42749
# File 'lib/aws-sdk-sagemaker/types.rb', line 42744

class PresignedUrlAccessConfig < Struct.new(
  :accept_eula,
  :expected_s3_url)
  SENSITIVE = []
  include Aws::Structure
end