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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-inspector2/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

#codeString

The authorization code received from GitHub to update the integration.

Returns:

  • (String)


8862
8863
8864
8865
8866
8867
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8862

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

#installation_idString

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

Returns:

  • (String)


8862
8863
8864
8865
8866
8867
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8862

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