Class: Aws::Connect::Types::CalculationComponent

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

Overview

Represents a component metric referenced in a custom metric calculation formula.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aliasString

The alias used to reference this component in the calculation expression.

Returns:

  • (String)


3126
3127
3128
3129
3130
3131
3132
3133
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 3126

class CalculationComponent < Struct.new(
  :alias,
  :metric_name,
  :metric_id,
  :metric_filters)
  SENSITIVE = []
  include Aws::Structure
end

#metric_filtersArray<Types::MetricFilter>

The filters applied to the calculation component.

Returns:



3126
3127
3128
3129
3130
3131
3132
3133
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 3126

class CalculationComponent < Struct.new(
  :alias,
  :metric_name,
  :metric_id,
  :metric_filters)
  SENSITIVE = []
  include Aws::Structure
end

#metric_idString

The ARN of an AWS-managed metric used in this calculation component. Mutually exclusive with MetricName.

Returns:

  • (String)


3126
3127
3128
3129
3130
3131
3132
3133
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 3126

class CalculationComponent < Struct.new(
  :alias,
  :metric_name,
  :metric_id,
  :metric_filters)
  SENSITIVE = []
  include Aws::Structure
end

#metric_nameString

The name of an AWS-managed metric used in this calculation component (for example, CONTACTS_HANDLED). Mutually exclusive with MetricId.

Returns:

  • (String)


3126
3127
3128
3129
3130
3131
3132
3133
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 3126

class CalculationComponent < Struct.new(
  :alias,
  :metric_name,
  :metric_id,
  :metric_filters)
  SENSITIVE = []
  include Aws::Structure
end