Class: Aws::WellArchitected::Types::RemediationStep

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

Overview

One step within a remediation procedure.

Constant Summary collapse

SENSITIVE =
[:title, :content]

Instance Attribute Summary collapse

Instance Attribute Details

#contentString

The content describing the step, which can include code examples and verification checklists.

Returns:

  • (String)


6697
6698
6699
6700
6701
6702
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 6697

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

#titleString

An optional short label for the step.

Returns:

  • (String)


6697
6698
6699
6700
6701
6702
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 6697

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