Class: Aws::SsmSap::Types::OperationEvent

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

Overview

An operation event returns details for an operation, including key milestones which can be used to monitor and track operations in progress.

Operation events contain:

  • Description string

  • Resource, including its ARN and type

  • Status

  • StatusMessage string

  • TimeStamp

Operation event examples include StartApplication or StopApplication.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of the operation event. For example, "Stop the EC2 instance i-abcdefgh987654321".

Returns:

  • (String)


1180
1181
1182
1183
1184
1185
1186
1187
1188
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1180

class OperationEvent < Struct.new(
  :description,
  :resource,
  :status,
  :status_message,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#resourceTypes::Resource

The resource involved in the operations event.

Contains ResourceArn ARN and ResourceType.

Returns:



1180
1181
1182
1183
1184
1185
1186
1187
1188
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1180

class OperationEvent < Struct.new(
  :description,
  :resource,
  :status,
  :status_message,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the operation event. The possible statuses are: IN_PROGRESS, COMPLETED, and FAILED.

Returns:

  • (String)


1180
1181
1182
1183
1184
1185
1186
1187
1188
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1180

class OperationEvent < Struct.new(
  :description,
  :resource,
  :status,
  :status_message,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#status_messageString

The status message relating to a specific operation event.

Returns:

  • (String)


1180
1181
1182
1183
1184
1185
1186
1187
1188
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1180

class OperationEvent < Struct.new(
  :description,
  :resource,
  :status,
  :status_message,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#timestampTime

The timestamp of the specified operation event.

Returns:

  • (Time)


1180
1181
1182
1183
1184
1185
1186
1187
1188
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1180

class OperationEvent < Struct.new(
  :description,
  :resource,
  :status,
  :status_message,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end