public static interface CfnContainer.MetricPolicyProperty
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 .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.mediastore.*; MetricPolicyProperty metricPolicyProperty = MetricPolicyProperty.builder() .containerLevelMetrics("containerLevelMetrics") // the properties below are optional .metricPolicyRules(List.of(MetricPolicyRuleProperty.builder() .objectGroup("objectGroup") .objectGroupName("objectGroupName") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnContainer.MetricPolicyProperty.Builder
A builder for
CfnContainer.MetricPolicyProperty |
static class |
CfnContainer.MetricPolicyProperty.Jsii$Proxy
An implementation for
CfnContainer.MetricPolicyProperty |
Modifier and Type | Method and Description |
---|---|
static CfnContainer.MetricPolicyProperty.Builder |
builder() |
java.lang.String |
getContainerLevelMetrics()
A setting to enable or disable metrics at the container level.
|
default java.lang.Object |
getMetricPolicyRules()
A parameter that holds an array of rules that enable metrics at the object level.
|
java.lang.String getContainerLevelMetrics()
default java.lang.Object getMetricPolicyRules()
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.
static CfnContainer.MetricPolicyProperty.Builder builder()