Class: Aws::CodeBuild::Types::SourceAuth

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

Overview

Information about the authorization settings for CodeBuild to access the source code to be built.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resourceString

The resource value that applies to the specified authorization type.

Returns:

  • (String)


5528
5529
5530
5531
5532
5533
# File 'lib/aws-sdk-codebuild/types.rb', line 5528

class SourceAuth < Struct.new(
  :type,
  :resource)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.

Returns:

  • (String)


5528
5529
5530
5531
5532
5533
# File 'lib/aws-sdk-codebuild/types.rb', line 5528

class SourceAuth < Struct.new(
  :type,
  :resource)
  SENSITIVE = []
  include Aws::Structure
end