Class: Aws::EKS::Types::Cancellation

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

Overview

Contains information about the latest cancellation of an update to an Amazon EKS cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#reasonString

A message providing additional details about the cancellation, such as the reason for the cancellation or failure details.

Returns:

  • (String)


1008
1009
1010
1011
1012
1013
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 1008

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

#statusString

The current status of the cancellation. Valid values are InProgress, Failed, and Successful.

Returns:

  • (String)


1008
1009
1010
1011
1012
1013
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 1008

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