Class: Aws::SageMaker::Types::ContextSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ContextSource
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ContextSource data as a hash:
{
source_uri: "String2048", # required
source_type: "String256",
source_id: "String256",
}
A structure describing the source of a context.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source_id ⇒ String
The ID of the source.
-
#source_type ⇒ String
The type of the source.
-
#source_uri ⇒ String
The URI of the source.
Instance Attribute Details
#source_id ⇒ String
The ID of the source.
3039 3040 3041 3042 3043 3044 3045 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3039 class ContextSource < Struct.new( :source_uri, :source_type, :source_id) SENSITIVE = [] include Aws::Structure end |
#source_type ⇒ String
The type of the source.
3039 3040 3041 3042 3043 3044 3045 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3039 class ContextSource < Struct.new( :source_uri, :source_type, :source_id) SENSITIVE = [] include Aws::Structure end |
#source_uri ⇒ String
The URI of the source.
3039 3040 3041 3042 3043 3044 3045 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3039 class ContextSource < Struct.new( :source_uri, :source_type, :source_id) SENSITIVE = [] include Aws::Structure end |