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)


2569
2570
2571
2572
2573
2574
2575
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2569

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)


2569
2570
2571
2572
2573
2574
2575
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2569

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)


2569
2570
2571
2572
2573
2574
2575
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2569

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