This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-codedeploy/include/aws/codedeploy/model/InstanceTarget.h

343 lines
12 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codedeploy/CodeDeploy_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/codedeploy/model/TargetStatus.h>
#include <aws/core/utils/DateTime.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/codedeploy/model/TargetLabel.h>
#include <aws/codedeploy/model/LifecycleEvent.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace CodeDeploy
{
namespace Model
{
/**
* <p> A target Amazon EC2 or on-premises instance during a deployment that uses
* the EC2/On-premises compute platform. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/InstanceTarget">AWS
* API Reference</a></p>
*/
class AWS_CODEDEPLOY_API InstanceTarget
{
public:
InstanceTarget();
InstanceTarget(Aws::Utils::Json::JsonView jsonValue);
InstanceTarget& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p> The unique ID of a deployment. </p>
*/
inline const Aws::String& GetDeploymentId() const{ return m_deploymentId; }
/**
* <p> The unique ID of a deployment. </p>
*/
inline bool DeploymentIdHasBeenSet() const { return m_deploymentIdHasBeenSet; }
/**
* <p> The unique ID of a deployment. </p>
*/
inline void SetDeploymentId(const Aws::String& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = value; }
/**
* <p> The unique ID of a deployment. </p>
*/
inline void SetDeploymentId(Aws::String&& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = std::move(value); }
/**
* <p> The unique ID of a deployment. </p>
*/
inline void SetDeploymentId(const char* value) { m_deploymentIdHasBeenSet = true; m_deploymentId.assign(value); }
/**
* <p> The unique ID of a deployment. </p>
*/
inline InstanceTarget& WithDeploymentId(const Aws::String& value) { SetDeploymentId(value); return *this;}
/**
* <p> The unique ID of a deployment. </p>
*/
inline InstanceTarget& WithDeploymentId(Aws::String&& value) { SetDeploymentId(std::move(value)); return *this;}
/**
* <p> The unique ID of a deployment. </p>
*/
inline InstanceTarget& WithDeploymentId(const char* value) { SetDeploymentId(value); return *this;}
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline const Aws::String& GetTargetId() const{ return m_targetId; }
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline bool TargetIdHasBeenSet() const { return m_targetIdHasBeenSet; }
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline void SetTargetId(const Aws::String& value) { m_targetIdHasBeenSet = true; m_targetId = value; }
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline void SetTargetId(Aws::String&& value) { m_targetIdHasBeenSet = true; m_targetId = std::move(value); }
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline void SetTargetId(const char* value) { m_targetIdHasBeenSet = true; m_targetId.assign(value); }
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline InstanceTarget& WithTargetId(const Aws::String& value) { SetTargetId(value); return *this;}
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline InstanceTarget& WithTargetId(Aws::String&& value) { SetTargetId(std::move(value)); return *this;}
/**
* <p> The unique ID of a deployment target that has a type of
* <code>instanceTarget</code>. </p>
*/
inline InstanceTarget& WithTargetId(const char* value) { SetTargetId(value); return *this;}
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline const Aws::String& GetTargetArn() const{ return m_targetArn; }
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline bool TargetArnHasBeenSet() const { return m_targetArnHasBeenSet; }
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline void SetTargetArn(const Aws::String& value) { m_targetArnHasBeenSet = true; m_targetArn = value; }
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline void SetTargetArn(Aws::String&& value) { m_targetArnHasBeenSet = true; m_targetArn = std::move(value); }
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline void SetTargetArn(const char* value) { m_targetArnHasBeenSet = true; m_targetArn.assign(value); }
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline InstanceTarget& WithTargetArn(const Aws::String& value) { SetTargetArn(value); return *this;}
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline InstanceTarget& WithTargetArn(Aws::String&& value) { SetTargetArn(std::move(value)); return *this;}
/**
* <p> The Amazon Resource Name (ARN) of the target. </p>
*/
inline InstanceTarget& WithTargetArn(const char* value) { SetTargetArn(value); return *this;}
/**
* <p> The status an EC2/On-premises deployment's target instance. </p>
*/
inline const TargetStatus& GetStatus() const{ return m_status; }
/**
* <p> The status an EC2/On-premises deployment's target instance. </p>
*/
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
/**
* <p> The status an EC2/On-premises deployment's target instance. </p>
*/
inline void SetStatus(const TargetStatus& value) { m_statusHasBeenSet = true; m_status = value; }
/**
* <p> The status an EC2/On-premises deployment's target instance. </p>
*/
inline void SetStatus(TargetStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
/**
* <p> The status an EC2/On-premises deployment's target instance. </p>
*/
inline InstanceTarget& WithStatus(const TargetStatus& value) { SetStatus(value); return *this;}
/**
* <p> The status an EC2/On-premises deployment's target instance. </p>
*/
inline InstanceTarget& WithStatus(TargetStatus&& value) { SetStatus(std::move(value)); return *this;}
/**
* <p> The date and time when the target instance was updated by a deployment. </p>
*/
inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; }
/**
* <p> The date and time when the target instance was updated by a deployment. </p>
*/
inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; }
/**
* <p> The date and time when the target instance was updated by a deployment. </p>
*/
inline void SetLastUpdatedAt(const Aws::Utils::DateTime& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = value; }
/**
* <p> The date and time when the target instance was updated by a deployment. </p>
*/
inline void SetLastUpdatedAt(Aws::Utils::DateTime&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::move(value); }
/**
* <p> The date and time when the target instance was updated by a deployment. </p>
*/
inline InstanceTarget& WithLastUpdatedAt(const Aws::Utils::DateTime& value) { SetLastUpdatedAt(value); return *this;}
/**
* <p> The date and time when the target instance was updated by a deployment. </p>
*/
inline InstanceTarget& WithLastUpdatedAt(Aws::Utils::DateTime&& value) { SetLastUpdatedAt(std::move(value)); return *this;}
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline const Aws::Vector<LifecycleEvent>& GetLifecycleEvents() const{ return m_lifecycleEvents; }
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline bool LifecycleEventsHasBeenSet() const { return m_lifecycleEventsHasBeenSet; }
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline void SetLifecycleEvents(const Aws::Vector<LifecycleEvent>& value) { m_lifecycleEventsHasBeenSet = true; m_lifecycleEvents = value; }
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline void SetLifecycleEvents(Aws::Vector<LifecycleEvent>&& value) { m_lifecycleEventsHasBeenSet = true; m_lifecycleEvents = std::move(value); }
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline InstanceTarget& WithLifecycleEvents(const Aws::Vector<LifecycleEvent>& value) { SetLifecycleEvents(value); return *this;}
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline InstanceTarget& WithLifecycleEvents(Aws::Vector<LifecycleEvent>&& value) { SetLifecycleEvents(std::move(value)); return *this;}
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline InstanceTarget& AddLifecycleEvents(const LifecycleEvent& value) { m_lifecycleEventsHasBeenSet = true; m_lifecycleEvents.push_back(value); return *this; }
/**
* <p> The lifecycle events of the deployment to this target instance. </p>
*/
inline InstanceTarget& AddLifecycleEvents(LifecycleEvent&& value) { m_lifecycleEventsHasBeenSet = true; m_lifecycleEvents.push_back(std::move(value)); return *this; }
/**
* <p> A label that identifies whether the instance is an original target
* (<code>BLUE</code>) or a replacement target (<code>GREEN</code>). </p>
*/
inline const TargetLabel& GetInstanceLabel() const{ return m_instanceLabel; }
/**
* <p> A label that identifies whether the instance is an original target
* (<code>BLUE</code>) or a replacement target (<code>GREEN</code>). </p>
*/
inline bool InstanceLabelHasBeenSet() const { return m_instanceLabelHasBeenSet; }
/**
* <p> A label that identifies whether the instance is an original target
* (<code>BLUE</code>) or a replacement target (<code>GREEN</code>). </p>
*/
inline void SetInstanceLabel(const TargetLabel& value) { m_instanceLabelHasBeenSet = true; m_instanceLabel = value; }
/**
* <p> A label that identifies whether the instance is an original target
* (<code>BLUE</code>) or a replacement target (<code>GREEN</code>). </p>
*/
inline void SetInstanceLabel(TargetLabel&& value) { m_instanceLabelHasBeenSet = true; m_instanceLabel = std::move(value); }
/**
* <p> A label that identifies whether the instance is an original target
* (<code>BLUE</code>) or a replacement target (<code>GREEN</code>). </p>
*/
inline InstanceTarget& WithInstanceLabel(const TargetLabel& value) { SetInstanceLabel(value); return *this;}
/**
* <p> A label that identifies whether the instance is an original target
* (<code>BLUE</code>) or a replacement target (<code>GREEN</code>). </p>
*/
inline InstanceTarget& WithInstanceLabel(TargetLabel&& value) { SetInstanceLabel(std::move(value)); return *this;}
private:
Aws::String m_deploymentId;
bool m_deploymentIdHasBeenSet;
Aws::String m_targetId;
bool m_targetIdHasBeenSet;
Aws::String m_targetArn;
bool m_targetArnHasBeenSet;
TargetStatus m_status;
bool m_statusHasBeenSet;
Aws::Utils::DateTime m_lastUpdatedAt;
bool m_lastUpdatedAtHasBeenSet;
Aws::Vector<LifecycleEvent> m_lifecycleEvents;
bool m_lifecycleEventsHasBeenSet;
TargetLabel m_instanceLabel;
bool m_instanceLabelHasBeenSet;
};
} // namespace Model
} // namespace CodeDeploy
} // namespace Aws