Class: Aws::OpsWorksCM::Types::EngineAttribute

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-opsworkscm/types.rb

Overview

A name and value pair that is specific to the engine of the server.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the engine attribute.

Returns:

  • (String)


896
897
898
899
900
901
# File 'lib/aws-sdk-opsworkscm/types.rb', line 896

class EngineAttribute < Struct.new(
  :name,
  :value)
  SENSITIVE = [:value]
  include Aws::Structure
end

#valueString

The value of the engine attribute.

Returns:

  • (String)


896
897
898
899
900
901
# File 'lib/aws-sdk-opsworkscm/types.rb', line 896

class EngineAttribute < Struct.new(
  :name,
  :value)
  SENSITIVE = [:value]
  include Aws::Structure
end