Class: Aws::SecurityAgent::Types::ProviderInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::ProviderInput
- Defined in:
- gems/aws-sdk-securityagent/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.
Provider-specific input parameters for integration
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#github ⇒ Types::GitHubIntegrationInput
GitHub integration input.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#github ⇒ Types::GitHubIntegrationInput
GitHub integration input
3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3198 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
3198 3199 3200 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3198 def unknown @unknown end |