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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


1192
1193
1194
1195
1196
1197
1198
1199
1200
# File 'lib/aws-sdk-ssmsap/types.rb', line 1192

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:



1192
1193
1194
1195
1196
1197
1198
1199
1200
# File 'lib/aws-sdk-ssmsap/types.rb', line 1192

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)


1192
1193
1194
1195
1196
1197
1198
1199
1200
# File 'lib/aws-sdk-ssmsap/types.rb', line 1192

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)


1192
1193
1194
1195
1196
1197
1198
1199
1200
# File 'lib/aws-sdk-ssmsap/types.rb', line 1192

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)


1192
1193
1194
1195
1196
1197
1198
1199
1200
# File 'lib/aws-sdk-ssmsap/types.rb', line 1192

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