Class: Aws::CodeDeploy::Types::RawString

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#contentString

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.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
# File 'lib/aws-sdk-codedeploy/types.rb', line 4251

class RawString < Struct.new(
  :content,
  :sha256)
  SENSITIVE = []
  include Aws::Structure
end

#sha256String

The SHA256 hash value of the revision content.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
# File 'lib/aws-sdk-codedeploy/types.rb', line 4251

class RawString < Struct.new(
  :content,
  :sha256)
  SENSITIVE = []
  include Aws::Structure
end