Class: Aws::XRay::Types::InsightsConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

Note:

When making an API call, you may pass InsightsConfiguration data as a hash:

{
  insights_enabled: false,
  notifications_enabled: false,
}

The structure containing configurations related to insights.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#insights_enabledBoolean

Set the InsightsEnabled value to true to enable insights or false to disable insights.

Returns:

  • (Boolean)


1966
1967
1968
1969
1970
1971
# File 'lib/aws-sdk-xray/types.rb', line 1966

class InsightsConfiguration < Struct.new(
  :insights_enabled,
  :notifications_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#notifications_enabledBoolean

Set the NotificationsEnabled value to true to enable insights notifications. Notifications can only be enabled on a group with InsightsEnabled set to true.

Returns:

  • (Boolean)


1966
1967
1968
1969
1970
1971
# File 'lib/aws-sdk-xray/types.rb', line 1966

class InsightsConfiguration < Struct.new(
  :insights_enabled,
  :notifications_enabled)
  SENSITIVE = []
  include Aws::Structure
end