Class: Aws::SageMaker::Types::GitConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::GitConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Specifies configuration details for a Git repository in your Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #branch  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default branch for the Git repository.
 - 
  
    
      #repository_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL where the Git repository is located.
 - 
  
    
      #secret_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the git repository.
 
Instance Attribute Details
#branch ⇒ String
The default branch for the Git repository.
      22551 22552 22553 22554 22555 22556 22557  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 22551 class GitConfig < Struct.new( :repository_url, :branch, :secret_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_url ⇒ String
The URL where the Git repository is located.
      22551 22552 22553 22554 22555 22556 22557  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 22551 class GitConfig < Struct.new( :repository_url, :branch, :secret_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of ‘AWSCURRENT` and must be in the following format:
‘UserName, “password”: Password`
      22551 22552 22553 22554 22555 22556 22557  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 22551 class GitConfig < Struct.new( :repository_url, :branch, :secret_arn) SENSITIVE = [] include Aws::Structure end  |