Class: Aws::SecurityAgent::Types::GitHubIntegrationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::GitHubIntegrationInput
- 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
-
#code ⇒ String
The OAuth authorization code received from GitHub.
-
#organization_name ⇒ String
The name of the GitHub organization to integrate with.
-
#state ⇒ String
The CSRF state token for validating the OAuth flow.
Instance Attribute Details
#code ⇒ String
The OAuth authorization code received from GitHub.
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_name ⇒ String
The name of the GitHub organization to integrate with.
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 |
#state ⇒ String
The CSRF state token for validating the OAuth flow.
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 |