Class: Aws::CodeDeploy::Types::ListGitHubAccountTokenNamesOutput

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

Overview

Represents the output of a ListGitHubAccountTokenNames operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


3935
3936
3937
3938
3939
3940
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3935

class ListGitHubAccountTokenNamesOutput < Struct.new(
  :token_name_list,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#token_name_listArray<String>

A list of names of connections to GitHub accounts.

Returns:

  • (Array<String>)


3935
3936
3937
3938
3939
3940
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3935

class ListGitHubAccountTokenNamesOutput < Struct.new(
  :token_name_list,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end