Class: Aws::Inspector2::Types::UpdateGitHubIntegrationDetail

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-inspector2/types.rb

Overview

Contains details required to update an integration with GitHub.

Constant Summary collapse

SENSITIVE =
[:code]

Instance Attribute Summary collapse

Instance Attribute Details

#code ⇒ String

The authorization code received from GitHub to update the integration.

Returns:

  • (String)


10836
10837
10838
10839
10840
10841
# File 'lib/aws-sdk-inspector2/types.rb', line 10836

class UpdateGitHubIntegrationDetail < Struct.new(
  :code,
  :installation_id)
  SENSITIVE = [:code]
  include Aws::Structure
end

#installation_id ⇒ String

The installation ID of the GitHub App associated with the integration.

Returns:

  • (String)


10836
10837
10838
10839
10840
10841
# File 'lib/aws-sdk-inspector2/types.rb', line 10836

class UpdateGitHubIntegrationDetail < Struct.new(
  :code,
  :installation_id)
  SENSITIVE = [:code]
  include Aws::Structure
end