Method: Aws::ConfigService::Types::ConfigurationItem#related_events

Defined in:
lib/aws-sdk-configservice/types.rb

A list of CloudTrail event IDs.

A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see [What Is CloudTrail].

An empty field indicates that the current configuration was not initiated by any event. As of Version 1.3, the relatedEvents field is empty. You can access the [LookupEvents API] in the *CloudTrail API Reference* to retrieve the events for the resource.

[1]: docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html [2]: docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_LookupEvents.html

Returns:

  • (Array<String>)


1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
# File 'lib/aws-sdk-configservice/types.rb', line 1560

class ConfigurationItem < Struct.new(
  :version,
  :account_id,
  :configuration_item_capture_time,
  :configuration_item_status,
  :configuration_state_id,
  :configuration_item_md5_hash,
  :arn,
  :resource_type,
  :resource_id,
  :resource_name,
  :aws_region,
  :availability_zone,
  :resource_creation_time,
  :tags,
  :related_events,
  :relationships,
  :configuration,
  :supplementary_configuration,
  :recording_frequency,
  :configuration_item_delivery_time)
  SENSITIVE = []
  include Aws::Structure
end