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.
41081 41082 41083 41084 41085 41086 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 41081 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.
41081 41082 41083 41084 41085 41086 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 41081 class PresignedUrlAccessConfig < Struct.new( :accept_eula, :expected_s3_url) SENSITIVE = [] include Aws::Structure end |