Class: Aws::CloudWatchRUM::Types::MetricDestinationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::MetricDestinationSummary
- Defined in:
- gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb
Overview
A structure that displays information about one destination that CloudWatch RUM sends extended metrics to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ String
Specifies whether the destination is
CloudWatch
orEvidently
. -
#destination_arn ⇒ String
If the destination is
Evidently
, this specifies the ARN of the Evidently experiment that receives the metrics. -
#iam_role_arn ⇒ String
This field appears only when the destination is
Evidently
.
Instance Attribute Details
#destination ⇒ String
Specifies whether the destination is CloudWatch
or Evidently
.
1397 1398 1399 1400 1401 1402 1403 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1397 class MetricDestinationSummary < Struct.new( :destination, :destination_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |
#destination_arn ⇒ String
If the destination is Evidently
, this specifies the ARN of the
Evidently experiment that receives the metrics.
1397 1398 1399 1400 1401 1402 1403 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1397 class MetricDestinationSummary < Struct.new( :destination, :destination_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |
#iam_role_arn ⇒ String
This field appears only when the destination is Evidently
. It
specifies the ARN of the IAM role that is used to write to the
Evidently experiment that receives the metrics.
1397 1398 1399 1400 1401 1402 1403 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1397 class MetricDestinationSummary < Struct.new( :destination, :destination_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |