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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


1885
1886
1887
1888
1889
1890
1891
# File 'lib/aws-sdk-securityagent/types.rb', line 1885

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)


1885
1886
1887
1888
1889
1890
1891
# File 'lib/aws-sdk-securityagent/types.rb', line 1885

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)


1885
1886
1887
1888
1889
1890
1891
# File 'lib/aws-sdk-securityagent/types.rb', line 1885

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