Class: Aws::SageMaker::Types::PipelineDefinitionS3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::PipelineDefinitionS3Location
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass PipelineDefinitionS3Location data as a hash:
{
bucket: "BucketName", # required
object_key: "Key", # required
version_id: "VersionId",
}
The location of the pipeline definition stored in Amazon S3.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
Name of the S3 bucket.
-
#object_key ⇒ String
The object key (or key name) uniquely identifies the object in an S3 bucket.
-
#version_id ⇒ String
Version Id of the pipeline definition file.
Instance Attribute Details
#bucket ⇒ String
Name of the S3 bucket.
31741 31742 31743 31744 31745 31746 31747 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31741 class PipelineDefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end |
#object_key ⇒ String
The object key (or key name) uniquely identifies the object in an S3 bucket.
31741 31742 31743 31744 31745 31746 31747 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31741 class PipelineDefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
Version Id of the pipeline definition file. If not specified, Amazon SageMaker will retrieve the latest version.
31741 31742 31743 31744 31745 31746 31747 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31741 class PipelineDefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end |