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
Note:
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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#github ⇒ Types::GitHubIntegrationInput
The GitHub-specific input for creating an integration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#github ⇒ Types::GitHubIntegrationInput
The GitHub-specific input for creating an integration.
3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 |
# File 'lib/aws-sdk-securityagent/types.rb', line 3346 class ProviderInput < Struct.new( :github, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Github < ProviderInput; end class Unknown < ProviderInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3346 3347 3348 |
# File 'lib/aws-sdk-securityagent/types.rb', line 3346 def unknown @unknown end |