Class: Aws::SageMaker::Types::PipelineDefinitionS3Location
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::PipelineDefinitionS3Location
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
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.
      37901 37902 37903 37904 37905 37906 37907  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 37901 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.
      37901 37902 37903 37904 37905 37906 37907  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 37901 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.
      37901 37902 37903 37904 37905 37906 37907  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 37901 class PipelineDefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end  |