Class: Aws::CodeDeploy::Types::RawString
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeDeploy::Types::RawString
 
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
A revision for an Lambda deployment that is a YAML-formatted or JSON-formatted string. For Lambda deployments, the revision is the same as the AppSpec file.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The YAML-formatted or JSON-formatted revision string. 
- 
  
    
      #sha256  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The SHA256 hash value of the revision content. 
Instance Attribute Details
#content ⇒ String
The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.
| 4251 4252 4253 4254 4255 4256 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4251 class RawString < Struct.new( :content, :sha256) SENSITIVE = [] include Aws::Structure end |