Class: Aws::SecurityAgent::Types::GitHubIntegrationInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb

Overview

The input required to create a GitHub integration, including the OAuth authorization code and CSRF state.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The OAuth authorization code received from GitHub.

Returns:

  • (String)


2576
2577
2578
2579
2580
2581
2582
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2576

class GitHubIntegrationInput < Struct.new(
  :code,
  :state,
  :organization_name)
  SENSITIVE = []
  include Aws::Structure
end

#organization_nameString

The name of the GitHub organization to integrate with.

Returns:

  • (String)


2576
2577
2578
2579
2580
2581
2582
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2576

class GitHubIntegrationInput < Struct.new(
  :code,
  :state,
  :organization_name)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

The CSRF state token for validating the OAuth flow.

Returns:

  • (String)


2576
2577
2578
2579
2580
2581
2582
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2576

class GitHubIntegrationInput < Struct.new(
  :code,
  :state,
  :organization_name)
  SENSITIVE = []
  include Aws::Structure
end