Class: Aws::MediaStore::Types::MetricPolicy

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

Overview

The metric policy that is associated with the container. A metric policy allows AWS Elemental MediaStore to send metrics to Amazon CloudWatch. In the policy, you must indicate whether you want MediaStore to send container-level metrics. You can also include rules to define groups of objects that you want MediaStore to send object-level metrics for.

To view examples of how to construct a metric policy for your use case, see Example Metric Policies.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_level_metricsString

A setting to enable or disable metrics at the container level.

Returns:

  • (String)


556
557
558
559
560
561
# File 'gems/aws-sdk-mediastore/lib/aws-sdk-mediastore/types.rb', line 556

class MetricPolicy < Struct.new(
  :container_level_metrics,
  :metric_policy_rules)
  SENSITIVE = []
  include Aws::Structure
end

#metric_policy_rulesArray<Types::MetricPolicyRule>

A parameter that holds an array of rules that enable metrics at the object level. This parameter is optional, but if you choose to include it, you must also include at least one rule. By default, you can include up to five rules. You can also request a quota increase to allow up to 300 rules per policy.

Returns:



556
557
558
559
560
561
# File 'gems/aws-sdk-mediastore/lib/aws-sdk-mediastore/types.rb', line 556

class MetricPolicy < Struct.new(
  :container_level_metrics,
  :metric_policy_rules)
  SENSITIVE = []
  include Aws::Structure
end