Class: Aws::CodeDeploy::Types::AutoRollbackConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb

Overview

Information about a configuration for automatically rolling back to a previous version of an application revision when a deployment is not completed successfully.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Indicates whether a defined automatic rollback configuration is currently enabled.

Returns:

  • (Boolean)


215
216
217
218
219
220
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 215

class AutoRollbackConfiguration < Struct.new(
  :enabled,
  :events)
  SENSITIVE = []
  include Aws::Structure
end

#eventsArray<String>

The event type or types that trigger a rollback.

Returns:

  • (Array<String>)


215
216
217
218
219
220
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 215

class AutoRollbackConfiguration < Struct.new(
  :enabled,
  :events)
  SENSITIVE = []
  include Aws::Structure
end