387 lines
14 KiB
C
387 lines
14 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/ssm/SSM_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/ssm/model/MaintenanceWindowResourceType.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/ssm/model/Target.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace SSM
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The target registered with the maintenance window.</p><p><h3>See Also:</h3>
|
|||
|
|
* <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowTarget">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_SSM_API MaintenanceWindowTarget
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
MaintenanceWindowTarget();
|
|||
|
|
MaintenanceWindowTarget(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
MaintenanceWindowTarget& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetWindowId() const{ return m_windowId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool WindowIdHasBeenSet() const { return m_windowIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWindowId(const Aws::String& value) { m_windowIdHasBeenSet = true; m_windowId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWindowId(Aws::String&& value) { m_windowIdHasBeenSet = true; m_windowId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWindowId(const char* value) { m_windowIdHasBeenSet = true; m_windowId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithWindowId(const Aws::String& value) { SetWindowId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithWindowId(Aws::String&& value) { SetWindowId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the maintenance window to register the target with.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithWindowId(const char* value) { SetWindowId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetWindowTargetId() const{ return m_windowTargetId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool WindowTargetIdHasBeenSet() const { return m_windowTargetIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWindowTargetId(const Aws::String& value) { m_windowTargetIdHasBeenSet = true; m_windowTargetId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWindowTargetId(Aws::String&& value) { m_windowTargetIdHasBeenSet = true; m_windowTargetId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWindowTargetId(const char* value) { m_windowTargetIdHasBeenSet = true; m_windowTargetId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithWindowTargetId(const Aws::String& value) { SetWindowTargetId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithWindowTargetId(Aws::String&& value) { SetWindowTargetId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithWindowTargetId(const char* value) { SetWindowTargetId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The type of target that is being registered with the maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline const MaintenanceWindowResourceType& GetResourceType() const{ return m_resourceType; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The type of target that is being registered with the maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The type of target that is being registered with the maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourceType(const MaintenanceWindowResourceType& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The type of target that is being registered with the maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourceType(MaintenanceWindowResourceType&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The type of target that is being registered with the maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithResourceType(const MaintenanceWindowResourceType& value) { SetResourceType(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The type of target that is being registered with the maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithResourceType(MaintenanceWindowResourceType&& value) { SetResourceType(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Target>& GetTargets() const{ return m_targets; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool TargetsHasBeenSet() const { return m_targetsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTargets(const Aws::Vector<Target>& value) { m_targetsHasBeenSet = true; m_targets = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTargets(Aws::Vector<Target>&& value) { m_targetsHasBeenSet = true; m_targets = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithTargets(const Aws::Vector<Target>& value) { SetTargets(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithTargets(Aws::Vector<Target>&& value) { SetTargets(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& AddTargets(const Target& value) { m_targetsHasBeenSet = true; m_targets.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The targets, either instances or tags.</p> <p>Specify instances using the
|
|||
|
|
* following format:</p> <p>
|
|||
|
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code> </p>
|
|||
|
|
* <p>Tags are specified using the following format:</p> <p> <code>Key=<tag
|
|||
|
|
* name>,Values=<tag value></code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& AddTargets(Target&& value) { m_targetsHasBeenSet = true; m_targets.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetOwnerInformation() const{ return m_ownerInformation; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool OwnerInformationHasBeenSet() const { return m_ownerInformationHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetOwnerInformation(const Aws::String& value) { m_ownerInformationHasBeenSet = true; m_ownerInformation = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetOwnerInformation(Aws::String&& value) { m_ownerInformationHasBeenSet = true; m_ownerInformation = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetOwnerInformation(const char* value) { m_ownerInformationHasBeenSet = true; m_ownerInformation.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithOwnerInformation(const Aws::String& value) { SetOwnerInformation(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithOwnerInformation(Aws::String&& value) { SetOwnerInformation(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A user-provided value that will be included in any CloudWatch events that are
|
|||
|
|
* raised while running tasks for these targets in this maintenance window.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithOwnerInformation(const char* value) { SetOwnerInformation(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name for the maintenance window target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithName(const char* value) { SetName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A description for the target.</p>
|
|||
|
|
*/
|
|||
|
|
inline MaintenanceWindowTarget& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_windowId;
|
|||
|
|
bool m_windowIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_windowTargetId;
|
|||
|
|
bool m_windowTargetIdHasBeenSet;
|
|||
|
|
|
|||
|
|
MaintenanceWindowResourceType m_resourceType;
|
|||
|
|
bool m_resourceTypeHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<Target> m_targets;
|
|||
|
|
bool m_targetsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_ownerInformation;
|
|||
|
|
bool m_ownerInformationHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_name;
|
|||
|
|
bool m_nameHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_description;
|
|||
|
|
bool m_descriptionHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace SSM
|
|||
|
|
} // namespace Aws
|