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.
40983 40984 40985 40986 40987 40988 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40983 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.
40983 40984 40985 40986 40987 40988 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40983 class PresignedUrlAccessConfig < Struct.new( :accept_eula, :expected_s3_url) SENSITIVE = [] include Aws::Structure end |