Class: Aws::CodeDeploy::Types::ListGitHubAccountTokenNamesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListGitHubAccountTokenNamesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Represents the output of a ‘ListGitHubAccountTokenNames` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
-
#token_name_list ⇒ Array<String>
A list of names of connections to GitHub accounts.
Instance Attribute Details
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent ‘ListGitHubAccountTokenNames` call to return the next set of names in the list.
3935 3936 3937 3938 3939 3940 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3935 class ListGitHubAccountTokenNamesOutput < Struct.new( :token_name_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#token_name_list ⇒ Array<String>
A list of names of connections to GitHub accounts.
3935 3936 3937 3938 3939 3940 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3935 class ListGitHubAccountTokenNamesOutput < Struct.new( :token_name_list, :next_token) SENSITIVE = [] include Aws::Structure end |