Class: Aws::CodeBuild::Types::SourceAuth
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::SourceAuth
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Note:
When making an API call, you may pass SourceAuth data as a hash:
{
type: "OAUTH", # required, accepts OAUTH
resource: "String",
}
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
This data type is deprecated and is no longer accurate or used.
Instance Attribute Details
#resource ⇒ String
The resource value that applies to the specified authorization type.
5472 5473 5474 5475 5476 5477 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5472 class SourceAuth < Struct.new( :type, :resource) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The authorization type to use. The only valid value is OAUTH
,
which represents the OAuth authorization type.
5472 5473 5474 5475 5476 5477 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5472 class SourceAuth < Struct.new( :type, :resource) SENSITIVE = [] include Aws::Structure end |