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-ssm/include/aws/ssm/model/CreateMaintenanceWindowResult.h

78 lines
2.0 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 <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace SSM
{
namespace Model
{
class AWS_SSM_API CreateMaintenanceWindowResult
{
public:
CreateMaintenanceWindowResult();
CreateMaintenanceWindowResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateMaintenanceWindowResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ID of the created maintenance window.</p>
*/
inline const Aws::String& GetWindowId() const{ return m_windowId; }
/**
* <p>The ID of the created maintenance window.</p>
*/
inline void SetWindowId(const Aws::String& value) { m_windowId = value; }
/**
* <p>The ID of the created maintenance window.</p>
*/
inline void SetWindowId(Aws::String&& value) { m_windowId = std::move(value); }
/**
* <p>The ID of the created maintenance window.</p>
*/
inline void SetWindowId(const char* value) { m_windowId.assign(value); }
/**
* <p>The ID of the created maintenance window.</p>
*/
inline CreateMaintenanceWindowResult& WithWindowId(const Aws::String& value) { SetWindowId(value); return *this;}
/**
* <p>The ID of the created maintenance window.</p>
*/
inline CreateMaintenanceWindowResult& WithWindowId(Aws::String&& value) { SetWindowId(std::move(value)); return *this;}
/**
* <p>The ID of the created maintenance window.</p>
*/
inline CreateMaintenanceWindowResult& WithWindowId(const char* value) { SetWindowId(value); return *this;}
private:
Aws::String m_windowId;
};
} // namespace Model
} // namespace SSM
} // namespace Aws