Class: Aws::CloudWatchRUM::Types::DeleteRumMetricsDestinationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::DeleteRumMetricsDestinationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchrum/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_monitor_name ⇒ String
The name of the app monitor that is sending metrics to the destination that you want to delete.
-
#destination ⇒ String
The type of destination to delete.
-
#destination_arn ⇒ String
This parameter is required if ‘Destination` is `Evidently`.
Instance Attribute Details
#app_monitor_name ⇒ String
The name of the app monitor that is sending metrics to the destination that you want to delete.
730 731 732 733 734 735 736 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 730 class DeleteRumMetricsDestinationRequest < Struct.new( :app_monitor_name, :destination, :destination_arn) SENSITIVE = [] include Aws::Structure end |
#destination ⇒ String
The type of destination to delete. Valid values are ‘CloudWatch` and `Evidently`.
730 731 732 733 734 735 736 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 730 class DeleteRumMetricsDestinationRequest < Struct.new( :app_monitor_name, :destination, :destination_arn) SENSITIVE = [] include Aws::Structure end |
#destination_arn ⇒ String
This parameter is required if ‘Destination` is `Evidently`. If `Destination` is `CloudWatch`, do not use this parameter. This parameter specifies the ARN of the Evidently experiment that corresponds to the destination to delete.
730 731 732 733 734 735 736 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 730 class DeleteRumMetricsDestinationRequest < Struct.new( :app_monitor_name, :destination, :destination_arn) SENSITIVE = [] include Aws::Structure end |