Class: Aws::CodeDeploy::Types::ApplicationInfo
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeDeploy::Types::ApplicationInfo
 
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Information about an application.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #application_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The application ID. 
- 
  
    
      #application_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The application name. 
- 
  
    
      #compute_platform  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The destination platform type for deployment of the application ( LambdaorServer).
- 
  
    
      #create_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which the application was created. 
- 
  
    
      #git_hub_account_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name for a connection to a GitHub account. 
- 
  
    
      #linked_to_git_hub  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    True if the user has authenticated with GitHub for the specified application. 
Instance Attribute Details
#application_id ⇒ String
The application ID.
| 170 171 172 173 174 175 176 177 178 179 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 170 class ApplicationInfo < Struct.new( :application_id, :application_name, :create_time, :linked_to_git_hub, :git_hub_account_name, :compute_platform) SENSITIVE = [] include Aws::Structure end | 
#application_name ⇒ String
The application name.
| 170 171 172 173 174 175 176 177 178 179 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 170 class ApplicationInfo < Struct.new( :application_id, :application_name, :create_time, :linked_to_git_hub, :git_hub_account_name, :compute_platform) SENSITIVE = [] include Aws::Structure end | 
#compute_platform ⇒ String
The destination platform type for deployment of the application
(Lambda or Server).
| 170 171 172 173 174 175 176 177 178 179 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 170 class ApplicationInfo < Struct.new( :application_id, :application_name, :create_time, :linked_to_git_hub, :git_hub_account_name, :compute_platform) SENSITIVE = [] include Aws::Structure end | 
#create_time ⇒ Time
The time at which the application was created.
| 170 171 172 173 174 175 176 177 178 179 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 170 class ApplicationInfo < Struct.new( :application_id, :application_name, :create_time, :linked_to_git_hub, :git_hub_account_name, :compute_platform) SENSITIVE = [] include Aws::Structure end | 
#git_hub_account_name ⇒ String
The name for a connection to a GitHub account.
| 170 171 172 173 174 175 176 177 178 179 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 170 class ApplicationInfo < Struct.new( :application_id, :application_name, :create_time, :linked_to_git_hub, :git_hub_account_name, :compute_platform) SENSITIVE = [] include Aws::Structure end | 
#linked_to_git_hub ⇒ Boolean
True if the user has authenticated with GitHub for the specified application. Otherwise, false.
| 170 171 172 173 174 175 176 177 178 179 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 170 class ApplicationInfo < Struct.new( :application_id, :application_name, :create_time, :linked_to_git_hub, :git_hub_account_name, :compute_platform) SENSITIVE = [] include Aws::Structure end |