Class: Aws::CodeBuild::Types::SourceAuth
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::SourceAuth
- 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.
This information is for the CodeBuild console’s use only. Your code should not get or set this information directly.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource ⇒ String
The resource value that applies to the specified authorization type.
-
#type ⇒ String
The authorization type to use.
Instance Attribute Details
#resource ⇒ String
The resource value that applies to the specified authorization type.
5508 5509 5510 5511 5512 5513 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5508 class SourceAuth < Struct.new( :type, :resource) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.
5508 5509 5510 5511 5512 5513 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5508 class SourceAuth < Struct.new( :type, :resource) SENSITIVE = [] include Aws::Structure end |