Class: Aws::SecurityAgent::Types::ProviderInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::ProviderInput
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-securityagent/types.rb
Overview
ProviderInput is a union - when making an API calls you must set exactly one of the members.
The provider-specific input for creating an integration. This is a union type that contains provider-specific configuration.
Defined Under Namespace
Classes: Bitbucket, Confluence, Github, Gitlab, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bitbucket ⇒ Types::BitbucketIntegrationInput
The configuration for a Bitbucket integration.
-
#confluence ⇒ Types::ConfluenceIntegrationInput
The configuration for a Confluence integration.
-
#github ⇒ Types::GitHubIntegrationInput
The GitHub-specific input for creating an integration.
-
#gitlab ⇒ Types::GitLabIntegrationInput
The configuration for a GitLab integration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#bitbucket ⇒ Types::BitbucketIntegrationInput
The configuration for a Bitbucket integration.
6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 |
# File 'lib/aws-sdk-securityagent/types.rb', line 6482 class ProviderInput < Struct.new( :github, :gitlab, :bitbucket, :confluence, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Github < ProviderInput; end class Gitlab < ProviderInput; end class Bitbucket < ProviderInput; end class Confluence < ProviderInput; end class Unknown < ProviderInput; end end |
#confluence ⇒ Types::ConfluenceIntegrationInput
The configuration for a Confluence integration.
6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 |
# File 'lib/aws-sdk-securityagent/types.rb', line 6482 class ProviderInput < Struct.new( :github, :gitlab, :bitbucket, :confluence, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Github < ProviderInput; end class Gitlab < ProviderInput; end class Bitbucket < ProviderInput; end class Confluence < ProviderInput; end class Unknown < ProviderInput; end end |
#github ⇒ Types::GitHubIntegrationInput
The GitHub-specific input for creating an integration.
6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 |
# File 'lib/aws-sdk-securityagent/types.rb', line 6482 class ProviderInput < Struct.new( :github, :gitlab, :bitbucket, :confluence, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Github < ProviderInput; end class Gitlab < ProviderInput; end class Bitbucket < ProviderInput; end class Confluence < ProviderInput; end class Unknown < ProviderInput; end end |
#gitlab ⇒ Types::GitLabIntegrationInput
The configuration for a GitLab integration.
6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 |
# File 'lib/aws-sdk-securityagent/types.rb', line 6482 class ProviderInput < Struct.new( :github, :gitlab, :bitbucket, :confluence, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Github < ProviderInput; end class Gitlab < ProviderInput; end class Bitbucket < ProviderInput; end class Confluence < ProviderInput; end class Unknown < ProviderInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6482 6483 6484 |
# File 'lib/aws-sdk-securityagent/types.rb', line 6482 def unknown @unknown end |