Class: Aws::SageMaker::Types::PresignedUrlAccessConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::PresignedUrlAccessConfig
- Defined in:
- gems/aws-sdk-sagemaker/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.
42890 42891 42892 42893 42894 42895 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42890 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.
42890 42891 42892 42893 42894 42895 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42890 class PresignedUrlAccessConfig < Struct.new( :accept_eula, :expected_s3_url) SENSITIVE = [] include Aws::Structure end |