1011 lines
53 KiB
C
1011 lines
53 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/ecs/ECS_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/ecs/model/KeyValuePair.h>
|
|||
|
|
#include <aws/ecs/model/Tag.h>
|
|||
|
|
#include <aws/ecs/model/ClusterSetting.h>
|
|||
|
|
#include <aws/ecs/model/CapacityProviderStrategyItem.h>
|
|||
|
|
#include <aws/ecs/model/Attachment.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace ECS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p><p><h3>See Also:</h3>
|
|||
|
|
* <a href="http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Cluster">AWS API
|
|||
|
|
* Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_ECS_API Cluster
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
Cluster();
|
|||
|
|
Cluster(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Cluster& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetClusterArn() const{ return m_clusterArn; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ClusterArnHasBeenSet() const { return m_clusterArnHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClusterArn(const Aws::String& value) { m_clusterArnHasBeenSet = true; m_clusterArn = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClusterArn(Aws::String&& value) { m_clusterArnHasBeenSet = true; m_clusterArn = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClusterArn(const char* value) { m_clusterArnHasBeenSet = true; m_clusterArn.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithClusterArn(const Aws::String& value) { SetClusterArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithClusterArn(Aws::String&& value) { SetClusterArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
|
|||
|
|
* the <code>arn:aws:ecs</code> namespace, followed by the Region of the cluster,
|
|||
|
|
* the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and
|
|||
|
|
* then the cluster name. For example,
|
|||
|
|
* <code>arn:aws:ecs:region:012345678910:cluster/test</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithClusterArn(const char* value) { SetClusterArn(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetClusterName() const{ return m_clusterName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ClusterNameHasBeenSet() const { return m_clusterNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClusterName(const Aws::String& value) { m_clusterNameHasBeenSet = true; m_clusterName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClusterName(Aws::String&& value) { m_clusterNameHasBeenSet = true; m_clusterName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClusterName(const char* value) { m_clusterNameHasBeenSet = true; m_clusterName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithClusterName(const Aws::String& value) { SetClusterName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithClusterName(Aws::String&& value) { SetClusterName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-generated string that you use to identify your cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithClusterName(const char* value) { SetClusterName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetStatus() const{ return m_status; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithStatus(const Aws::String& value) { SetStatus(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the cluster. The following are the possible states that will be
|
|||
|
|
* returned.</p> <dl> <dt>ACTIVE</dt> <dd> <p>The cluster is ready to accept tasks
|
|||
|
|
* and if applicable you can register container instances with the cluster.</p>
|
|||
|
|
* </dd> <dt>PROVISIONING</dt> <dd> <p>The cluster has capacity providers
|
|||
|
|
* associated with it and the resources needed for the capacity provider are being
|
|||
|
|
* created.</p> </dd> <dt>DEPROVISIONING</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* are being deleted.</p> </dd> <dt>FAILED</dt> <dd> <p>The cluster has capacity
|
|||
|
|
* providers associated with it and the resources needed for the capacity provider
|
|||
|
|
* have failed to create.</p> </dd> <dt>INACTIVE</dt> <dd> <p>The cluster has been
|
|||
|
|
* deleted. Clusters with an <code>INACTIVE</code> status may remain discoverable
|
|||
|
|
* in your account for a period of time. However, this behavior is subject to
|
|||
|
|
* change in the future, so you should not rely on <code>INACTIVE</code> clusters
|
|||
|
|
* persisting.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithStatus(const char* value) { SetStatus(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of container instances registered into the cluster. This includes
|
|||
|
|
* container instances in both <code>ACTIVE</code> and <code>DRAINING</code>
|
|||
|
|
* status.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetRegisteredContainerInstancesCount() const{ return m_registeredContainerInstancesCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of container instances registered into the cluster. This includes
|
|||
|
|
* container instances in both <code>ACTIVE</code> and <code>DRAINING</code>
|
|||
|
|
* status.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool RegisteredContainerInstancesCountHasBeenSet() const { return m_registeredContainerInstancesCountHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of container instances registered into the cluster. This includes
|
|||
|
|
* container instances in both <code>ACTIVE</code> and <code>DRAINING</code>
|
|||
|
|
* status.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRegisteredContainerInstancesCount(int value) { m_registeredContainerInstancesCountHasBeenSet = true; m_registeredContainerInstancesCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of container instances registered into the cluster. This includes
|
|||
|
|
* container instances in both <code>ACTIVE</code> and <code>DRAINING</code>
|
|||
|
|
* status.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithRegisteredContainerInstancesCount(int value) { SetRegisteredContainerInstancesCount(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>RUNNING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetRunningTasksCount() const{ return m_runningTasksCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>RUNNING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool RunningTasksCountHasBeenSet() const { return m_runningTasksCountHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>RUNNING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRunningTasksCount(int value) { m_runningTasksCountHasBeenSet = true; m_runningTasksCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>RUNNING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithRunningTasksCount(int value) { SetRunningTasksCount(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>PENDING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetPendingTasksCount() const{ return m_pendingTasksCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>PENDING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool PendingTasksCountHasBeenSet() const { return m_pendingTasksCountHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>PENDING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetPendingTasksCount(int value) { m_pendingTasksCountHasBeenSet = true; m_pendingTasksCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of tasks in the cluster that are in the <code>PENDING</code>
|
|||
|
|
* state.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithPendingTasksCount(int value) { SetPendingTasksCount(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of services that are running on the cluster in an
|
|||
|
|
* <code>ACTIVE</code> state. You can view these services with
|
|||
|
|
* <a>ListServices</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetActiveServicesCount() const{ return m_activeServicesCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of services that are running on the cluster in an
|
|||
|
|
* <code>ACTIVE</code> state. You can view these services with
|
|||
|
|
* <a>ListServices</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ActiveServicesCountHasBeenSet() const { return m_activeServicesCountHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of services that are running on the cluster in an
|
|||
|
|
* <code>ACTIVE</code> state. You can view these services with
|
|||
|
|
* <a>ListServices</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetActiveServicesCount(int value) { m_activeServicesCountHasBeenSet = true; m_activeServicesCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of services that are running on the cluster in an
|
|||
|
|
* <code>ACTIVE</code> state. You can view these services with
|
|||
|
|
* <a>ListServices</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithActiveServicesCount(int value) { SetActiveServicesCount(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<KeyValuePair>& GetStatistics() const{ return m_statistics; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline bool StatisticsHasBeenSet() const { return m_statisticsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetStatistics(const Aws::Vector<KeyValuePair>& value) { m_statisticsHasBeenSet = true; m_statistics = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetStatistics(Aws::Vector<KeyValuePair>&& value) { m_statisticsHasBeenSet = true; m_statistics = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithStatistics(const Aws::Vector<KeyValuePair>& value) { SetStatistics(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithStatistics(Aws::Vector<KeyValuePair>&& value) { SetStatistics(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddStatistics(const KeyValuePair& value) { m_statisticsHasBeenSet = true; m_statistics.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Additional information about your clusters that are separated by launch type,
|
|||
|
|
* including:</p> <ul> <li> <p>runningEC2TasksCount</p> </li> <li>
|
|||
|
|
* <p>RunningFargateTasksCount</p> </li> <li> <p>pendingEC2TasksCount</p> </li>
|
|||
|
|
* <li> <p>pendingFargateTasksCount</p> </li> <li> <p>activeEC2ServiceCount</p>
|
|||
|
|
* </li> <li> <p>activeFargateServiceCount</p> </li> <li>
|
|||
|
|
* <p>drainingEC2ServiceCount</p> </li> <li> <p>drainingFargateServiceCount</p>
|
|||
|
|
* </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddStatistics(KeyValuePair&& value) { m_statisticsHasBeenSet = true; m_statistics.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>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.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li>
|
|||
|
|
* <p>Maximum number of tags per resource - 50</p> </li> <li> <p>For each resource,
|
|||
|
|
* each tag key must be unique, and each tag key can have only one value.</p> </li>
|
|||
|
|
* <li> <p>Maximum key length - 128 Unicode characters in UTF-8</p> </li> <li>
|
|||
|
|
* <p>Maximum value length - 256 Unicode characters in UTF-8</p> </li> <li> <p>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: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values
|
|||
|
|
* are case-sensitive.</p> </li> <li> <p>Do not use <code>aws:</code>,
|
|||
|
|
* <code>AWS:</code>, 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.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<ClusterSetting>& GetSettings() const{ return m_settings; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool SettingsHasBeenSet() const { return m_settingsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSettings(const Aws::Vector<ClusterSetting>& value) { m_settingsHasBeenSet = true; m_settings = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSettings(Aws::Vector<ClusterSetting>&& value) { m_settingsHasBeenSet = true; m_settings = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithSettings(const Aws::Vector<ClusterSetting>& value) { SetSettings(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithSettings(Aws::Vector<ClusterSetting>&& value) { SetSettings(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddSettings(const ClusterSetting& value) { m_settingsHasBeenSet = true; m_settings.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The settings for the cluster. This parameter indicates whether CloudWatch
|
|||
|
|
* Container Insights is enabled or disabled for a cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddSettings(ClusterSetting&& value) { m_settingsHasBeenSet = true; m_settings.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Aws::String>& GetCapacityProviders() const{ return m_capacityProviders; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CapacityProvidersHasBeenSet() const { return m_capacityProvidersHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCapacityProviders(const Aws::Vector<Aws::String>& value) { m_capacityProvidersHasBeenSet = true; m_capacityProviders = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCapacityProviders(Aws::Vector<Aws::String>&& value) { m_capacityProvidersHasBeenSet = true; m_capacityProviders = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithCapacityProviders(const Aws::Vector<Aws::String>& value) { SetCapacityProviders(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithCapacityProviders(Aws::Vector<Aws::String>&& value) { SetCapacityProviders(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddCapacityProviders(const Aws::String& value) { m_capacityProvidersHasBeenSet = true; m_capacityProviders.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddCapacityProviders(Aws::String&& value) { m_capacityProvidersHasBeenSet = true; m_capacityProviders.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The capacity providers associated with the cluster.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddCapacityProviders(const char* value) { m_capacityProvidersHasBeenSet = true; m_capacityProviders.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<CapacityProviderStrategyItem>& GetDefaultCapacityProviderStrategy() const{ return m_defaultCapacityProviderStrategy; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool DefaultCapacityProviderStrategyHasBeenSet() const { return m_defaultCapacityProviderStrategyHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDefaultCapacityProviderStrategy(const Aws::Vector<CapacityProviderStrategyItem>& value) { m_defaultCapacityProviderStrategyHasBeenSet = true; m_defaultCapacityProviderStrategy = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDefaultCapacityProviderStrategy(Aws::Vector<CapacityProviderStrategyItem>&& value) { m_defaultCapacityProviderStrategyHasBeenSet = true; m_defaultCapacityProviderStrategy = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithDefaultCapacityProviderStrategy(const Aws::Vector<CapacityProviderStrategyItem>& value) { SetDefaultCapacityProviderStrategy(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithDefaultCapacityProviderStrategy(Aws::Vector<CapacityProviderStrategyItem>&& value) { SetDefaultCapacityProviderStrategy(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddDefaultCapacityProviderStrategy(const CapacityProviderStrategyItem& value) { m_defaultCapacityProviderStrategyHasBeenSet = true; m_defaultCapacityProviderStrategy.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The default capacity provider strategy for the cluster. When services or
|
|||
|
|
* tasks are run in the cluster with no launch type or capacity provider strategy
|
|||
|
|
* specified, the default capacity provider strategy is used.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddDefaultCapacityProviderStrategy(CapacityProviderStrategyItem&& value) { m_defaultCapacityProviderStrategyHasBeenSet = true; m_defaultCapacityProviderStrategy.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Attachment>& GetAttachments() const{ return m_attachments; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool AttachmentsHasBeenSet() const { return m_attachmentsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttachments(const Aws::Vector<Attachment>& value) { m_attachmentsHasBeenSet = true; m_attachments = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttachments(Aws::Vector<Attachment>&& value) { m_attachmentsHasBeenSet = true; m_attachments = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithAttachments(const Aws::Vector<Attachment>& value) { SetAttachments(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithAttachments(Aws::Vector<Attachment>&& value) { SetAttachments(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddAttachments(const Attachment& value) { m_attachmentsHasBeenSet = true; m_attachments.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resources attached to a cluster. When using a capacity provider with a
|
|||
|
|
* cluster, the Auto Scaling plan that is created will be returned as a cluster
|
|||
|
|
* attachment.</p>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& AddAttachments(Attachment&& value) { m_attachmentsHasBeenSet = true; m_attachments.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetAttachmentsStatus() const{ return m_attachmentsStatus; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline bool AttachmentsStatusHasBeenSet() const { return m_attachmentsStatusHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttachmentsStatus(const Aws::String& value) { m_attachmentsStatusHasBeenSet = true; m_attachmentsStatus = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttachmentsStatus(Aws::String&& value) { m_attachmentsStatusHasBeenSet = true; m_attachmentsStatus = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttachmentsStatus(const char* value) { m_attachmentsStatusHasBeenSet = true; m_attachmentsStatus.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithAttachmentsStatus(const Aws::String& value) { SetAttachmentsStatus(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithAttachmentsStatus(Aws::String&& value) { SetAttachmentsStatus(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The status of the capacity providers associated with the cluster. The
|
|||
|
|
* following are the states that will be returned:</p> <dl>
|
|||
|
|
* <dt>UPDATE_IN_PROGRESS</dt> <dd> <p>The available capacity providers for the
|
|||
|
|
* cluster are updating. This occurs when the Auto Scaling plan is provisioning or
|
|||
|
|
* deprovisioning.</p> </dd> <dt>UPDATE_COMPLETE</dt> <dd> <p>The capacity
|
|||
|
|
* providers have successfully updated.</p> </dd> <dt>UPDATE_FAILED</dt> <dd>
|
|||
|
|
* <p>The capacity provider updates failed.</p> </dd> </dl>
|
|||
|
|
*/
|
|||
|
|
inline Cluster& WithAttachmentsStatus(const char* value) { SetAttachmentsStatus(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_clusterArn;
|
|||
|
|
bool m_clusterArnHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_clusterName;
|
|||
|
|
bool m_clusterNameHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_status;
|
|||
|
|
bool m_statusHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_registeredContainerInstancesCount;
|
|||
|
|
bool m_registeredContainerInstancesCountHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_runningTasksCount;
|
|||
|
|
bool m_runningTasksCountHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_pendingTasksCount;
|
|||
|
|
bool m_pendingTasksCountHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_activeServicesCount;
|
|||
|
|
bool m_activeServicesCountHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<KeyValuePair> m_statistics;
|
|||
|
|
bool m_statisticsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<Tag> m_tags;
|
|||
|
|
bool m_tagsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<ClusterSetting> m_settings;
|
|||
|
|
bool m_settingsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<Aws::String> m_capacityProviders;
|
|||
|
|
bool m_capacityProvidersHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<CapacityProviderStrategyItem> m_defaultCapacityProviderStrategy;
|
|||
|
|
bool m_defaultCapacityProviderStrategyHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<Attachment> m_attachments;
|
|||
|
|
bool m_attachmentsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_attachmentsStatus;
|
|||
|
|
bool m_attachmentsStatusHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ECS
|
|||
|
|
} // namespace Aws
|