Class: Aws::EKS::Types::CapabilityIssue

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

Overview

An issue affecting a capability’s health or operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

A code identifying the type of issue. This can be used to programmatically handle specific issue types.

Returns:

  • (String)


1140
1141
1142
1143
1144
1145
# File 'lib/aws-sdk-eks/types.rb', line 1140

class CapabilityIssue < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

A human-readable message describing the issue and potential remediation steps.

Returns:

  • (String)


1140
1141
1142
1143
1144
1145
# File 'lib/aws-sdk-eks/types.rb', line 1140

class CapabilityIssue < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end