You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CodeDeploy::Types::GetApplicationRevisionInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeDeploy::Types::GetApplicationRevisionInput
 
- Defined in:
- (unknown)
Overview
    Note:
    
  
When passing GetApplicationRevisionInput as input to an Aws::Client method, you can use a vanilla Hash:
{
  application_name: "ApplicationName", # required
  revision: { # required
    revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
    s3_location: {
      bucket: "S3Bucket",
      key: "S3Key",
      bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
      version: "VersionId",
      e_tag: "ETag",
    },
    git_hub_location: {
      repository: "Repository",
      commit_id: "CommitId",
    },
    string: {
      content: "RawStringContent",
      sha256: "RawStringSha256",
    },
    app_spec_content: {
      content: "RawStringContent",
      sha256: "RawStringSha256",
    },
  },
}
Represents the input of a GetApplicationRevision operation.
Instance Attribute Summary collapse
- 
  
    
      #application_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the application that corresponds to the revision. 
- 
  
    
      #revision  ⇒ Types::RevisionLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about the application revision to get, including type and location. 
Instance Attribute Details
#application_name ⇒ String
The name of the application that corresponds to the revision.
#revision ⇒ Types::RevisionLocation
Information about the application revision to get, including type and location.