Class: Aws::CodeBuild::Types::SourceCredentialsInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codebuild/types.rb

Overview

Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket repository.

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the token.

Returns:

  • (String)


2221
2222
2223
2224
2225
2226
# File 'lib/aws-sdk-codebuild/types.rb', line 2221

class SourceCredentialsInfo < Struct.new(
  :arn,
  :server_type,
  :auth_type)
  include Aws::Structure
end

#auth_typeString

The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN.

Returns:

  • (String)


2221
2222
2223
2224
2225
2226
# File 'lib/aws-sdk-codebuild/types.rb', line 2221

class SourceCredentialsInfo < Struct.new(
  :arn,
  :server_type,
  :auth_type)
  include Aws::Structure
end

#server_typeString

The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET.

Returns:

  • (String)


2221
2222
2223
2224
2225
2226
# File 'lib/aws-sdk-codebuild/types.rb', line 2221

class SourceCredentialsInfo < Struct.new(
  :arn,
  :server_type,
  :auth_type)
  include Aws::Structure
end