Class: Aws::CodeBuild::Types::SourceCredentialsInfo
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeBuild::Types::SourceCredentialsInfo
 
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Information about the credentials for a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of the token. 
- 
  
    
      #auth_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of authentication used by the credentials. 
- 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The connection ARN if your authType is CODECONNECTIONS or SECRETS_MANAGER. 
- 
  
    
      #server_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of source provider. 
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the token.
| 6510 6511 6512 6513 6514 6515 6516 6517 | # File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6510 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type, :resource) SENSITIVE = [] include Aws::Structure end | 
#auth_type ⇒ String
The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS, or SECRETS_MANAGER.
| 6510 6511 6512 6513 6514 6515 6516 6517 | # File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6510 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type, :resource) SENSITIVE = [] include Aws::Structure end | 
#resource ⇒ String
The connection ARN if your authType is CODECONNECTIONS or SECRETS_MANAGER.
| 6510 6511 6512 6513 6514 6515 6516 6517 | # File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6510 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type, :resource) SENSITIVE = [] include Aws::Structure end | 
#server_type ⇒ String
The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, GITLAB, GITLAB_SELF_MANAGED, or BITBUCKET.
| 6510 6511 6512 6513 6514 6515 6516 6517 | # File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6510 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type, :resource) SENSITIVE = [] include Aws::Structure end |