Class: Aws::SageMaker::Types::PresignedUrlAccessConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::PresignedUrlAccessConfig
- 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
-
#accept_eula ⇒ Boolean
Indicates acceptance of the End User License Agreement (EULA) for gated models.
-
#expected_s3_url ⇒ String
The expected S3 URL prefix for validation purposes.
Instance Attribute Details
#accept_eula ⇒ Boolean
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.
40901 40902 40903 40904 40905 40906 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40901 class PresignedUrlAccessConfig < Struct.new( :accept_eula, :expected_s3_url) SENSITIVE = [] include Aws::Structure end |
#expected_s3_url ⇒ String
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.
40901 40902 40903 40904 40905 40906 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40901 class PresignedUrlAccessConfig < Struct.new( :accept_eula, :expected_s3_url) SENSITIVE = [] include Aws::Structure end |