Class: Aws::CodeDeploy::Types::DeleteGitHubAccountTokenInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeleteGitHubAccountTokenInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass DeleteGitHubAccountTokenInput data as a hash:
{
token_name: "GitHubAccountTokenName",
}
Represents the input of a ‘DeleteGitHubAccount` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#token_name ⇒ String
The name of the GitHub account connection to delete.
Instance Attribute Details
#token_name ⇒ String
The name of the GitHub account connection to delete.
1534 1535 1536 1537 1538 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1534 class DeleteGitHubAccountTokenInput < Struct.new( :token_name) SENSITIVE = [] include Aws::Structure end |