Class: Aws::PI::Types::FeatureMetadata

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

Overview

The metadata for a feature. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The status of the feature on the DB instance. Possible values include the following:

  • ‘ENABLED` - The feature is enabled on the instance.

  • ‘DISABLED` - The feature is disabled on the instance.

  • ‘UNSUPPORTED` - The feature isn’t supported on the instance.

  • ‘ENABLED_PENDING_REBOOT` - The feature is enabled on the instance but requires a reboot to take effect.

  • ‘DISABLED_PENDING_REBOOT` - The feature is disabled on the instance but requires a reboot to take effect.

  • ‘UNKNOWN` - The feature status couldn’t be determined.

Returns:

  • (String)


759
760
761
762
763
# File 'lib/aws-sdk-pi/types.rb', line 759

class FeatureMetadata < Struct.new(
  :status)
  SENSITIVE = []
  include Aws::Structure
end