Class: Aws::CodeBuild::Types::ScopeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ScopeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Contains configuration information about the scope for a webhook.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain of the GitHub Enterprise organization.
-
#name ⇒ String
The name of either the enterprise or organization that will send webhook events to CodeBuild, depending on if the webhook is a global or organization webhook respectively.
-
#scope ⇒ String
The type of scope for a GitHub webhook.
Instance Attribute Details
#domain ⇒ String
The domain of the GitHub Enterprise organization. Note that this parameter is only required if your project’s source type is GITHUB_ENTERPRISE
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5483 class ScopeConfiguration < Struct.new( :name, :domain, :scope) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of either the enterprise or organization that will send webhook events to CodeBuild, depending on if the webhook is a global or organization webhook respectively.
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5483 class ScopeConfiguration < Struct.new( :name, :domain, :scope) SENSITIVE = [] include Aws::Structure end |
#scope ⇒ String
The type of scope for a GitHub webhook.
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5483 class ScopeConfiguration < Struct.new( :name, :domain, :scope) SENSITIVE = [] include Aws::Structure end |