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

com.amazonaws.services.ecs.model.Cluster Maven / Gradle / Ivy

Go to download

The AWS Java SDK for the Amazon EC2 Container Service holds the client classes that are used for communicating with the Amazon EC2 Container Service

There is a newer version: 1.12.782
Show newest version
/*
 * Copyright 2014-2019 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.ecs.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* A regional grouping of one or more container instances on which you can run task requests. Each account receives a * default cluster the first time you use the Amazon ECS service, but you may also create other clusters. Clusters may * contain more than one instance type simultaneously. *

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

* The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. *

*/ private String clusterArn; /** *

* A user-generated string that you use to identify your cluster. *

*/ private String clusterName; /** *

* The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE * indicates that you can register container instances with the cluster and the associated instances can accept * tasks. *

*/ private String status; /** *

* The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. *

*/ private Integer registeredContainerInstancesCount; /** *

* The number of tasks in the cluster that are in the RUNNING state. *

*/ private Integer runningTasksCount; /** *

* The number of tasks in the cluster that are in the PENDING state. *

*/ private Integer pendingTasksCount; /** *

* The number of services that are running on the cluster in an ACTIVE state. You can view these * services with ListServices. *

*/ private Integer activeServicesCount; /** *

* Additional information about your clusters that are separated by launch type, including: *

*
    *
  • *

    * runningEC2TasksCount *

    *
  • *
  • *

    * RunningFargateTasksCount *

    *
  • *
  • *

    * pendingEC2TasksCount *

    *
  • *
  • *

    * pendingFargateTasksCount *

    *
  • *
  • *

    * activeEC2ServiceCount *

    *
  • *
  • *

    * activeFargateServiceCount *

    *
  • *
  • *

    * drainingEC2ServiceCount *

    *
  • *
  • *

    * drainingFargateServiceCount *

    *
  • *
*/ private com.amazonaws.internal.SdkInternalList statistics; /** *

* The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key * and an optional value, both of which you define. *

*

* The following basic restrictions apply to tags: *

*
    *
  • *

    * Maximum number of tags per resource - 50 *

    *
  • *
  • *

    * For each resource, each tag key must be unique, and each tag key can have only one value. *

    *
  • *
  • *

    * Maximum key length - 128 Unicode characters in UTF-8 *

    *
  • *
  • *

    * Maximum value length - 256 Unicode characters in UTF-8 *

    *
  • *
  • *

    * If your tagging schema is used across multiple services and resources, remember that other services may have * restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable * in UTF-8, and the following characters: + - = . _ : / @. *

    *
  • *
  • *

    * Tag keys and values are case-sensitive. *

    *
  • *
  • *

    * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for * either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this * prefix. Tags with this prefix do not count against your tags per resource limit. *

    *
  • *
*/ private com.amazonaws.internal.SdkInternalList tags; /** *

* The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. *

*/ private com.amazonaws.internal.SdkInternalList settings; /** *

* The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. *

* * @param clusterArn * The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. */ public void setClusterArn(String clusterArn) { this.clusterArn = clusterArn; } /** *

* The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. *

* * @return The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. */ public String getClusterArn() { return this.clusterArn; } /** *

* The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. *

* * @param clusterArn * The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs * namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the * cluster namespace, and then the cluster name. For example, * arn:aws:ecs:region:012345678910:cluster/test. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withClusterArn(String clusterArn) { setClusterArn(clusterArn); return this; } /** *

* A user-generated string that you use to identify your cluster. *

* * @param clusterName * A user-generated string that you use to identify your cluster. */ public void setClusterName(String clusterName) { this.clusterName = clusterName; } /** *

* A user-generated string that you use to identify your cluster. *

* * @return A user-generated string that you use to identify your cluster. */ public String getClusterName() { return this.clusterName; } /** *

* A user-generated string that you use to identify your cluster. *

* * @param clusterName * A user-generated string that you use to identify your cluster. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withClusterName(String clusterName) { setClusterName(clusterName); return this; } /** *

* The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE * indicates that you can register container instances with the cluster and the associated instances can accept * tasks. *

* * @param status * The status of the cluster. The valid values are ACTIVE or INACTIVE. * ACTIVE indicates that you can register container instances with the cluster and the * associated instances can accept tasks. */ public void setStatus(String status) { this.status = status; } /** *

* The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE * indicates that you can register container instances with the cluster and the associated instances can accept * tasks. *

* * @return The status of the cluster. The valid values are ACTIVE or INACTIVE. * ACTIVE indicates that you can register container instances with the cluster and the * associated instances can accept tasks. */ public String getStatus() { return this.status; } /** *

* The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE * indicates that you can register container instances with the cluster and the associated instances can accept * tasks. *

* * @param status * The status of the cluster. The valid values are ACTIVE or INACTIVE. * ACTIVE indicates that you can register container instances with the cluster and the * associated instances can accept tasks. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withStatus(String status) { setStatus(status); return this; } /** *

* The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. *

* * @param registeredContainerInstancesCount * The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. */ public void setRegisteredContainerInstancesCount(Integer registeredContainerInstancesCount) { this.registeredContainerInstancesCount = registeredContainerInstancesCount; } /** *

* The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. *

* * @return The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. */ public Integer getRegisteredContainerInstancesCount() { return this.registeredContainerInstancesCount; } /** *

* The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. *

* * @param registeredContainerInstancesCount * The number of container instances registered into the cluster. This includes container instances in both * ACTIVE and DRAINING status. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withRegisteredContainerInstancesCount(Integer registeredContainerInstancesCount) { setRegisteredContainerInstancesCount(registeredContainerInstancesCount); return this; } /** *

* The number of tasks in the cluster that are in the RUNNING state. *

* * @param runningTasksCount * The number of tasks in the cluster that are in the RUNNING state. */ public void setRunningTasksCount(Integer runningTasksCount) { this.runningTasksCount = runningTasksCount; } /** *

* The number of tasks in the cluster that are in the RUNNING state. *

* * @return The number of tasks in the cluster that are in the RUNNING state. */ public Integer getRunningTasksCount() { return this.runningTasksCount; } /** *

* The number of tasks in the cluster that are in the RUNNING state. *

* * @param runningTasksCount * The number of tasks in the cluster that are in the RUNNING state. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withRunningTasksCount(Integer runningTasksCount) { setRunningTasksCount(runningTasksCount); return this; } /** *

* The number of tasks in the cluster that are in the PENDING state. *

* * @param pendingTasksCount * The number of tasks in the cluster that are in the PENDING state. */ public void setPendingTasksCount(Integer pendingTasksCount) { this.pendingTasksCount = pendingTasksCount; } /** *

* The number of tasks in the cluster that are in the PENDING state. *

* * @return The number of tasks in the cluster that are in the PENDING state. */ public Integer getPendingTasksCount() { return this.pendingTasksCount; } /** *

* The number of tasks in the cluster that are in the PENDING state. *

* * @param pendingTasksCount * The number of tasks in the cluster that are in the PENDING state. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withPendingTasksCount(Integer pendingTasksCount) { setPendingTasksCount(pendingTasksCount); return this; } /** *

* The number of services that are running on the cluster in an ACTIVE state. You can view these * services with ListServices. *

* * @param activeServicesCount * The number of services that are running on the cluster in an ACTIVE state. You can view these * services with ListServices. */ public void setActiveServicesCount(Integer activeServicesCount) { this.activeServicesCount = activeServicesCount; } /** *

* The number of services that are running on the cluster in an ACTIVE state. You can view these * services with ListServices. *

* * @return The number of services that are running on the cluster in an ACTIVE state. You can view * these services with ListServices. */ public Integer getActiveServicesCount() { return this.activeServicesCount; } /** *

* The number of services that are running on the cluster in an ACTIVE state. You can view these * services with ListServices. *

* * @param activeServicesCount * The number of services that are running on the cluster in an ACTIVE state. You can view these * services with ListServices. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withActiveServicesCount(Integer activeServicesCount) { setActiveServicesCount(activeServicesCount); return this; } /** *

* Additional information about your clusters that are separated by launch type, including: *

*
    *
  • *

    * runningEC2TasksCount *

    *
  • *
  • *

    * RunningFargateTasksCount *

    *
  • *
  • *

    * pendingEC2TasksCount *

    *
  • *
  • *

    * pendingFargateTasksCount *

    *
  • *
  • *

    * activeEC2ServiceCount *

    *
  • *
  • *

    * activeFargateServiceCount *

    *
  • *
  • *

    * drainingEC2ServiceCount *

    *
  • *
  • *

    * drainingFargateServiceCount *

    *
  • *
* * @return Additional information about your clusters that are separated by launch type, including:

*
    *
  • *

    * runningEC2TasksCount *

    *
  • *
  • *

    * RunningFargateTasksCount *

    *
  • *
  • *

    * pendingEC2TasksCount *

    *
  • *
  • *

    * pendingFargateTasksCount *

    *
  • *
  • *

    * activeEC2ServiceCount *

    *
  • *
  • *

    * activeFargateServiceCount *

    *
  • *
  • *

    * drainingEC2ServiceCount *

    *
  • *
  • *

    * drainingFargateServiceCount *

    *
  • */ public java.util.List getStatistics() { if (statistics == null) { statistics = new com.amazonaws.internal.SdkInternalList(); } return statistics; } /** *

    * Additional information about your clusters that are separated by launch type, including: *

    *
      *
    • *

      * runningEC2TasksCount *

      *
    • *
    • *

      * RunningFargateTasksCount *

      *
    • *
    • *

      * pendingEC2TasksCount *

      *
    • *
    • *

      * pendingFargateTasksCount *

      *
    • *
    • *

      * activeEC2ServiceCount *

      *
    • *
    • *

      * activeFargateServiceCount *

      *
    • *
    • *

      * drainingEC2ServiceCount *

      *
    • *
    • *

      * drainingFargateServiceCount *

      *
    • *
    * * @param statistics * Additional information about your clusters that are separated by launch type, including:

    *
      *
    • *

      * runningEC2TasksCount *

      *
    • *
    • *

      * RunningFargateTasksCount *

      *
    • *
    • *

      * pendingEC2TasksCount *

      *
    • *
    • *

      * pendingFargateTasksCount *

      *
    • *
    • *

      * activeEC2ServiceCount *

      *
    • *
    • *

      * activeFargateServiceCount *

      *
    • *
    • *

      * drainingEC2ServiceCount *

      *
    • *
    • *

      * drainingFargateServiceCount *

      *
    • */ public void setStatistics(java.util.Collection statistics) { if (statistics == null) { this.statistics = null; return; } this.statistics = new com.amazonaws.internal.SdkInternalList(statistics); } /** *

      * Additional information about your clusters that are separated by launch type, including: *

      *
        *
      • *

        * runningEC2TasksCount *

        *
      • *
      • *

        * RunningFargateTasksCount *

        *
      • *
      • *

        * pendingEC2TasksCount *

        *
      • *
      • *

        * pendingFargateTasksCount *

        *
      • *
      • *

        * activeEC2ServiceCount *

        *
      • *
      • *

        * activeFargateServiceCount *

        *
      • *
      • *

        * drainingEC2ServiceCount *

        *
      • *
      • *

        * drainingFargateServiceCount *

        *
      • *
      *

      * NOTE: This method appends the values to the existing list (if any). Use * {@link #setStatistics(java.util.Collection)} or {@link #withStatistics(java.util.Collection)} if you want to * override the existing values. *

      * * @param statistics * Additional information about your clusters that are separated by launch type, including:

      *
        *
      • *

        * runningEC2TasksCount *

        *
      • *
      • *

        * RunningFargateTasksCount *

        *
      • *
      • *

        * pendingEC2TasksCount *

        *
      • *
      • *

        * pendingFargateTasksCount *

        *
      • *
      • *

        * activeEC2ServiceCount *

        *
      • *
      • *

        * activeFargateServiceCount *

        *
      • *
      • *

        * drainingEC2ServiceCount *

        *
      • *
      • *

        * drainingFargateServiceCount *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withStatistics(KeyValuePair... statistics) { if (this.statistics == null) { setStatistics(new com.amazonaws.internal.SdkInternalList(statistics.length)); } for (KeyValuePair ele : statistics) { this.statistics.add(ele); } return this; } /** *

        * Additional information about your clusters that are separated by launch type, including: *

        *
          *
        • *

          * runningEC2TasksCount *

          *
        • *
        • *

          * RunningFargateTasksCount *

          *
        • *
        • *

          * pendingEC2TasksCount *

          *
        • *
        • *

          * pendingFargateTasksCount *

          *
        • *
        • *

          * activeEC2ServiceCount *

          *
        • *
        • *

          * activeFargateServiceCount *

          *
        • *
        • *

          * drainingEC2ServiceCount *

          *
        • *
        • *

          * drainingFargateServiceCount *

          *
        • *
        * * @param statistics * Additional information about your clusters that are separated by launch type, including:

        *
          *
        • *

          * runningEC2TasksCount *

          *
        • *
        • *

          * RunningFargateTasksCount *

          *
        • *
        • *

          * pendingEC2TasksCount *

          *
        • *
        • *

          * pendingFargateTasksCount *

          *
        • *
        • *

          * activeEC2ServiceCount *

          *
        • *
        • *

          * activeFargateServiceCount *

          *
        • *
        • *

          * drainingEC2ServiceCount *

          *
        • *
        • *

          * drainingFargateServiceCount *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withStatistics(java.util.Collection statistics) { setStatistics(statistics); return this; } /** *

          * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key * and an optional value, both of which you define. *

          *

          * The following basic restrictions apply to tags: *

          *
            *
          • *

            * Maximum number of tags per resource - 50 *

            *
          • *
          • *

            * For each resource, each tag key must be unique, and each tag key can have only one value. *

            *
          • *
          • *

            * Maximum key length - 128 Unicode characters in UTF-8 *

            *
          • *
          • *

            * Maximum value length - 256 Unicode characters in UTF-8 *

            *
          • *
          • *

            * If your tagging schema is used across multiple services and resources, remember that other services may have * restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable * in UTF-8, and the following characters: + - = . _ : / @. *

            *
          • *
          • *

            * Tag keys and values are case-sensitive. *

            *
          • *
          • *

            * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for * either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this * prefix. Tags with this prefix do not count against your tags per resource limit. *

            *
          • *
          * * @return The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of * a key and an optional value, both of which you define.

          *

          * The following basic restrictions apply to tags: *

          *
            *
          • *

            * Maximum number of tags per resource - 50 *

            *
          • *
          • *

            * For each resource, each tag key must be unique, and each tag key can have only one value. *

            *
          • *
          • *

            * Maximum key length - 128 Unicode characters in UTF-8 *

            *
          • *
          • *

            * Maximum value length - 256 Unicode characters in UTF-8 *

            *
          • *
          • *

            * If your tagging schema is used across multiple services and resources, remember that other services may * have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces * representable in UTF-8, and the following characters: + - = . _ : / @. *

            *
          • *
          • *

            * Tag keys and values are case-sensitive. *

            *
          • *
          • *

            * Do not use aws:, AWS:, or any upper or lowercase combination of such as a * prefix for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or * values with this prefix. Tags with this prefix do not count against your tags per resource limit. *

            *
          • */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

            * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key * and an optional value, both of which you define. *

            *

            * The following basic restrictions apply to tags: *

            *
              *
            • *

              * Maximum number of tags per resource - 50 *

              *
            • *
            • *

              * For each resource, each tag key must be unique, and each tag key can have only one value. *

              *
            • *
            • *

              * Maximum key length - 128 Unicode characters in UTF-8 *

              *
            • *
            • *

              * Maximum value length - 256 Unicode characters in UTF-8 *

              *
            • *
            • *

              * If your tagging schema is used across multiple services and resources, remember that other services may have * restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable * in UTF-8, and the following characters: + - = . _ : / @. *

              *
            • *
            • *

              * Tag keys and values are case-sensitive. *

              *
            • *
            • *

              * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for * either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this * prefix. Tags with this prefix do not count against your tags per resource limit. *

              *
            • *
            * * @param tags * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of * a key and an optional value, both of which you define.

            *

            * The following basic restrictions apply to tags: *

            *
              *
            • *

              * Maximum number of tags per resource - 50 *

              *
            • *
            • *

              * For each resource, each tag key must be unique, and each tag key can have only one value. *

              *
            • *
            • *

              * Maximum key length - 128 Unicode characters in UTF-8 *

              *
            • *
            • *

              * Maximum value length - 256 Unicode characters in UTF-8 *

              *
            • *
            • *

              * If your tagging schema is used across multiple services and resources, remember that other services may * have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces * representable in UTF-8, and the following characters: + - = . _ : / @. *

              *
            • *
            • *

              * Tag keys and values are case-sensitive. *

              *
            • *
            • *

              * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix * for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with * this prefix. Tags with this prefix do not count against your tags per resource limit. *

              *
            • */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

              * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key * and an optional value, both of which you define. *

              *

              * The following basic restrictions apply to tags: *

              *
                *
              • *

                * Maximum number of tags per resource - 50 *

                *
              • *
              • *

                * For each resource, each tag key must be unique, and each tag key can have only one value. *

                *
              • *
              • *

                * Maximum key length - 128 Unicode characters in UTF-8 *

                *
              • *
              • *

                * Maximum value length - 256 Unicode characters in UTF-8 *

                *
              • *
              • *

                * If your tagging schema is used across multiple services and resources, remember that other services may have * restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable * in UTF-8, and the following characters: + - = . _ : / @. *

                *
              • *
              • *

                * Tag keys and values are case-sensitive. *

                *
              • *
              • *

                * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for * either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this * prefix. Tags with this prefix do not count against your tags per resource limit. *

                *
              • *
              *

              * NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

              * * @param tags * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of * a key and an optional value, both of which you define.

              *

              * The following basic restrictions apply to tags: *

              *
                *
              • *

                * Maximum number of tags per resource - 50 *

                *
              • *
              • *

                * For each resource, each tag key must be unique, and each tag key can have only one value. *

                *
              • *
              • *

                * Maximum key length - 128 Unicode characters in UTF-8 *

                *
              • *
              • *

                * Maximum value length - 256 Unicode characters in UTF-8 *

                *
              • *
              • *

                * If your tagging schema is used across multiple services and resources, remember that other services may * have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces * representable in UTF-8, and the following characters: + - = . _ : / @. *

                *
              • *
              • *

                * Tag keys and values are case-sensitive. *

                *
              • *
              • *

                * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix * for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with * this prefix. Tags with this prefix do not count against your tags per resource limit. *

                *
              • * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

                * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key * and an optional value, both of which you define. *

                *

                * The following basic restrictions apply to tags: *

                *
                  *
                • *

                  * Maximum number of tags per resource - 50 *

                  *
                • *
                • *

                  * For each resource, each tag key must be unique, and each tag key can have only one value. *

                  *
                • *
                • *

                  * Maximum key length - 128 Unicode characters in UTF-8 *

                  *
                • *
                • *

                  * Maximum value length - 256 Unicode characters in UTF-8 *

                  *
                • *
                • *

                  * If your tagging schema is used across multiple services and resources, remember that other services may have * restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable * in UTF-8, and the following characters: + - = . _ : / @. *

                  *
                • *
                • *

                  * Tag keys and values are case-sensitive. *

                  *
                • *
                • *

                  * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for * either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this * prefix. Tags with this prefix do not count against your tags per resource limit. *

                  *
                • *
                * * @param tags * The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of * a key and an optional value, both of which you define.

                *

                * The following basic restrictions apply to tags: *

                *
                  *
                • *

                  * Maximum number of tags per resource - 50 *

                  *
                • *
                • *

                  * For each resource, each tag key must be unique, and each tag key can have only one value. *

                  *
                • *
                • *

                  * Maximum key length - 128 Unicode characters in UTF-8 *

                  *
                • *
                • *

                  * Maximum value length - 256 Unicode characters in UTF-8 *

                  *
                • *
                • *

                  * If your tagging schema is used across multiple services and resources, remember that other services may * have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces * representable in UTF-8, and the following characters: + - = . _ : / @. *

                  *
                • *
                • *

                  * Tag keys and values are case-sensitive. *

                  *
                • *
                • *

                  * Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix * for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with * this prefix. Tags with this prefix do not count against your tags per resource limit. *

                  *
                • * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

                  * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. *

                  * * @return The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled * or disabled for a cluster. */ public java.util.List getSettings() { if (settings == null) { settings = new com.amazonaws.internal.SdkInternalList(); } return settings; } /** *

                  * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. *

                  * * @param settings * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. */ public void setSettings(java.util.Collection settings) { if (settings == null) { this.settings = null; return; } this.settings = new com.amazonaws.internal.SdkInternalList(settings); } /** *

                  * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. *

                  *

                  * NOTE: This method appends the values to the existing list (if any). Use * {@link #setSettings(java.util.Collection)} or {@link #withSettings(java.util.Collection)} if you want to override * the existing values. *

                  * * @param settings * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withSettings(ClusterSetting... settings) { if (this.settings == null) { setSettings(new com.amazonaws.internal.SdkInternalList(settings.length)); } for (ClusterSetting ele : settings) { this.settings.add(ele); } return this; } /** *

                  * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. *

                  * * @param settings * The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or * disabled for a cluster. * @return Returns a reference to this object so that method calls can be chained together. */ public Cluster withSettings(java.util.Collection settings) { setSettings(settings); 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 (getClusterArn() != null) sb.append("ClusterArn: ").append(getClusterArn()).append(","); if (getClusterName() != null) sb.append("ClusterName: ").append(getClusterName()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getRegisteredContainerInstancesCount() != null) sb.append("RegisteredContainerInstancesCount: ").append(getRegisteredContainerInstancesCount()).append(","); if (getRunningTasksCount() != null) sb.append("RunningTasksCount: ").append(getRunningTasksCount()).append(","); if (getPendingTasksCount() != null) sb.append("PendingTasksCount: ").append(getPendingTasksCount()).append(","); if (getActiveServicesCount() != null) sb.append("ActiveServicesCount: ").append(getActiveServicesCount()).append(","); if (getStatistics() != null) sb.append("Statistics: ").append(getStatistics()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getSettings() != null) sb.append("Settings: ").append(getSettings()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Cluster == false) return false; Cluster other = (Cluster) obj; if (other.getClusterArn() == null ^ this.getClusterArn() == null) return false; if (other.getClusterArn() != null && other.getClusterArn().equals(this.getClusterArn()) == false) return false; if (other.getClusterName() == null ^ this.getClusterName() == null) return false; if (other.getClusterName() != null && other.getClusterName().equals(this.getClusterName()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getRegisteredContainerInstancesCount() == null ^ this.getRegisteredContainerInstancesCount() == null) return false; if (other.getRegisteredContainerInstancesCount() != null && other.getRegisteredContainerInstancesCount().equals(this.getRegisteredContainerInstancesCount()) == false) return false; if (other.getRunningTasksCount() == null ^ this.getRunningTasksCount() == null) return false; if (other.getRunningTasksCount() != null && other.getRunningTasksCount().equals(this.getRunningTasksCount()) == false) return false; if (other.getPendingTasksCount() == null ^ this.getPendingTasksCount() == null) return false; if (other.getPendingTasksCount() != null && other.getPendingTasksCount().equals(this.getPendingTasksCount()) == false) return false; if (other.getActiveServicesCount() == null ^ this.getActiveServicesCount() == null) return false; if (other.getActiveServicesCount() != null && other.getActiveServicesCount().equals(this.getActiveServicesCount()) == false) return false; if (other.getStatistics() == null ^ this.getStatistics() == null) return false; if (other.getStatistics() != null && other.getStatistics().equals(this.getStatistics()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getSettings() == null ^ this.getSettings() == null) return false; if (other.getSettings() != null && other.getSettings().equals(this.getSettings()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClusterArn() == null) ? 0 : getClusterArn().hashCode()); hashCode = prime * hashCode + ((getClusterName() == null) ? 0 : getClusterName().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getRegisteredContainerInstancesCount() == null) ? 0 : getRegisteredContainerInstancesCount().hashCode()); hashCode = prime * hashCode + ((getRunningTasksCount() == null) ? 0 : getRunningTasksCount().hashCode()); hashCode = prime * hashCode + ((getPendingTasksCount() == null) ? 0 : getPendingTasksCount().hashCode()); hashCode = prime * hashCode + ((getActiveServicesCount() == null) ? 0 : getActiveServicesCount().hashCode()); hashCode = prime * hashCode + ((getStatistics() == null) ? 0 : getStatistics().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getSettings() == null) ? 0 : getSettings().hashCode()); return hashCode; } @Override public Cluster clone() { try { return (Cluster) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.ecs.model.transform.ClusterMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy