All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.mediastore.model.PutMetricPolicyRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Elemental MediaStore module holds the client classes that are used for communicating with AWS Elemental MediaStore Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.mediastore.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PutMetricPolicyRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the container that you want to add the metric policy to. *

*/ private String containerName; /** *

* The metric policy that you want to associate with the container. In the policy, you must indicate whether you * want MediaStore to send container-level metrics. You can also include up to five rules to define groups of * objects that you want MediaStore to send object-level metrics for. If you include rules in the policy, construct * each rule with both of the following: *

*
    *
  • *

    * An object group that defines which objects to include in the group. The definition can be a path or a file name, * but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = (equal), : * (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) are acceptable. *

    *
  • *
  • *

    * An object group name that allows you to refer to the object group. The name can't have more than 30 characters. * Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

    *
  • *
*/ private MetricPolicy metricPolicy; /** *

* The name of the container that you want to add the metric policy to. *

* * @param containerName * The name of the container that you want to add the metric policy to. */ public void setContainerName(String containerName) { this.containerName = containerName; } /** *

* The name of the container that you want to add the metric policy to. *

* * @return The name of the container that you want to add the metric policy to. */ public String getContainerName() { return this.containerName; } /** *

* The name of the container that you want to add the metric policy to. *

* * @param containerName * The name of the container that you want to add the metric policy to. * @return Returns a reference to this object so that method calls can be chained together. */ public PutMetricPolicyRequest withContainerName(String containerName) { setContainerName(containerName); return this; } /** *

* The metric policy that you want to associate with the container. In the policy, you must indicate whether you * want MediaStore to send container-level metrics. You can also include up to five rules to define groups of * objects that you want MediaStore to send object-level metrics for. If you include rules in the policy, construct * each rule with both of the following: *

*
    *
  • *

    * An object group that defines which objects to include in the group. The definition can be a path or a file name, * but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = (equal), : * (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) are acceptable. *

    *
  • *
  • *

    * An object group name that allows you to refer to the object group. The name can't have more than 30 characters. * Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

    *
  • *
* * @param metricPolicy * The metric policy that you want to associate with the container. In the policy, you must indicate whether * you want MediaStore to send container-level metrics. You can also include up to five rules to define * groups of objects that you want MediaStore to send object-level metrics for. If you include rules in the * policy, construct each rule with both of the following:

*
    *
  • *

    * An object group that defines which objects to include in the group. The definition can be a path or a file * name, but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = * (equal), : (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) * are acceptable. *

    *
  • *
  • *

    * An object group name that allows you to refer to the object group. The name can't have more than 30 * characters. Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

    *
  • */ public void setMetricPolicy(MetricPolicy metricPolicy) { this.metricPolicy = metricPolicy; } /** *

    * The metric policy that you want to associate with the container. In the policy, you must indicate whether you * want MediaStore to send container-level metrics. You can also include up to five rules to define groups of * objects that you want MediaStore to send object-level metrics for. If you include rules in the policy, construct * each rule with both of the following: *

    *
      *
    • *

      * An object group that defines which objects to include in the group. The definition can be a path or a file name, * but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = (equal), : * (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) are acceptable. *

      *
    • *
    • *

      * An object group name that allows you to refer to the object group. The name can't have more than 30 characters. * Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

      *
    • *
    * * @return The metric policy that you want to associate with the container. In the policy, you must indicate whether * you want MediaStore to send container-level metrics. You can also include up to five rules to define * groups of objects that you want MediaStore to send object-level metrics for. If you include rules in the * policy, construct each rule with both of the following:

    *
      *
    • *

      * An object group that defines which objects to include in the group. The definition can be a path or a * file name, but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ * (underscore), = (equal), : (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * * (asterisk). Wildcards (*) are acceptable. *

      *
    • *
    • *

      * An object group name that allows you to refer to the object group. The name can't have more than 30 * characters. Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

      *
    • */ public MetricPolicy getMetricPolicy() { return this.metricPolicy; } /** *

      * The metric policy that you want to associate with the container. In the policy, you must indicate whether you * want MediaStore to send container-level metrics. You can also include up to five rules to define groups of * objects that you want MediaStore to send object-level metrics for. If you include rules in the policy, construct * each rule with both of the following: *

      *
        *
      • *

        * An object group that defines which objects to include in the group. The definition can be a path or a file name, * but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = (equal), : * (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) are acceptable. *

        *
      • *
      • *

        * An object group name that allows you to refer to the object group. The name can't have more than 30 characters. * Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

        *
      • *
      * * @param metricPolicy * The metric policy that you want to associate with the container. In the policy, you must indicate whether * you want MediaStore to send container-level metrics. You can also include up to five rules to define * groups of objects that you want MediaStore to send object-level metrics for. If you include rules in the * policy, construct each rule with both of the following:

      *
        *
      • *

        * An object group that defines which objects to include in the group. The definition can be a path or a file * name, but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = * (equal), : (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) * are acceptable. *

        *
      • *
      • *

        * An object group name that allows you to refer to the object group. The name can't have more than 30 * characters. Valid characters are: a-z, A-Z, 0-9, and _ (underscore). *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public PutMetricPolicyRequest withMetricPolicy(MetricPolicy metricPolicy) { setMetricPolicy(metricPolicy); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getContainerName() != null) sb.append("ContainerName: ").append(getContainerName()).append(","); if (getMetricPolicy() != null) sb.append("MetricPolicy: ").append(getMetricPolicy()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PutMetricPolicyRequest == false) return false; PutMetricPolicyRequest other = (PutMetricPolicyRequest) obj; if (other.getContainerName() == null ^ this.getContainerName() == null) return false; if (other.getContainerName() != null && other.getContainerName().equals(this.getContainerName()) == false) return false; if (other.getMetricPolicy() == null ^ this.getMetricPolicy() == null) return false; if (other.getMetricPolicy() != null && other.getMetricPolicy().equals(this.getMetricPolicy()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getContainerName() == null) ? 0 : getContainerName().hashCode()); hashCode = prime * hashCode + ((getMetricPolicy() == null) ? 0 : getMetricPolicy().hashCode()); return hashCode; } @Override public PutMetricPolicyRequest clone() { return (PutMetricPolicyRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy