Class: Aws::SageMaker::Types::ArtifactSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ArtifactSource
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ArtifactSource data as a hash:
{
source_uri: "String2048", # required
source_types: [
{
source_id_type: "MD5Hash", # required, accepts MD5Hash, S3ETag, S3Version, Custom
value: "String256", # required
},
],
}
A structure describing the source of an artifact.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source_types ⇒ Array<Types::ArtifactSourceType>
A list of source types.
-
#source_uri ⇒ String
The URI of the source.
Instance Attribute Details
#source_types ⇒ Array<Types::ArtifactSourceType>
A list of source types.
1594 1595 1596 1597 1598 1599 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 1594 class ArtifactSource < Struct.new( :source_uri, :source_types) SENSITIVE = [] include Aws::Structure end |
#source_uri ⇒ String
The URI of the source.
1594 1595 1596 1597 1598 1599 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 1594 class ArtifactSource < Struct.new( :source_uri, :source_types) SENSITIVE = [] include Aws::Structure end |