Class: Aws::CodeBuild::Types::SourceCredentialsInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::SourceCredentialsInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Information about the credentials for a GitHub, GitHub Enterprise, 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.
-
#server_type ⇒ String
The type of source provider.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the token.
4785 4786 4787 4788 4789 4790 4791 |
# File 'lib/aws-sdk-codebuild/types.rb', line 4785 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type) SENSITIVE = [] include Aws::Structure end |
#auth_type ⇒ String
The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN.
4785 4786 4787 4788 4789 4790 4791 |
# File 'lib/aws-sdk-codebuild/types.rb', line 4785 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type) SENSITIVE = [] include Aws::Structure end |
#server_type ⇒ String
The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET.
4785 4786 4787 4788 4789 4790 4791 |
# File 'lib/aws-sdk-codebuild/types.rb', line 4785 class SourceCredentialsInfo < Struct.new( :arn, :server_type, :auth_type) SENSITIVE = [] include Aws::Structure end |