Class: Aws::SecurityAgent::Types::ProviderInput

Inherits:
Struct
  • Object
show all
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.

The provider-specific input for creating an integration. This is a union type that contains provider-specific configuration.

Defined Under Namespace

Classes: Github, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#githubTypes::GitHubIntegrationInput

The GitHub-specific input for creating an integration.



4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4203

class ProviderInput < Struct.new(
  :github,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Github < ProviderInput; end
  class Unknown < ProviderInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4203
4204
4205
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4203

def unknown
  @unknown
end