Class: Aws::EKS::Types::Cancellation
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::Cancellation
- 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
-
#reason ⇒ String
A message providing additional details about the cancellation, such as the reason for the cancellation or failure details.
-
#status ⇒ String
The current status of the cancellation.
Instance Attribute Details
#reason ⇒ String
A message providing additional details about the cancellation, such as the reason for the cancellation or failure details.
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 |
#status ⇒ String
The current status of the cancellation. Valid values are
InProgress, Failed, and Successful.
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 |