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-iotthingsgraph/include/aws/iotthingsgraph/model/FlowTemplateSummary.h

193 lines
5.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iotthingsgraph/IoTThingsGraph_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/DateTime.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace IoTThingsGraph
{
namespace Model
{
/**
* <p>An object that contains summary information about a workflow.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iotthingsgraph-2018-09-06/FlowTemplateSummary">AWS
* API Reference</a></p>
*/
class AWS_IOTTHINGSGRAPH_API FlowTemplateSummary
{
public:
FlowTemplateSummary();
FlowTemplateSummary(Aws::Utils::Json::JsonView jsonValue);
FlowTemplateSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The ID of the workflow.</p>
*/
inline const Aws::String& GetId() const{ return m_id; }
/**
* <p>The ID of the workflow.</p>
*/
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
/**
* <p>The ID of the workflow.</p>
*/
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
/**
* <p>The ID of the workflow.</p>
*/
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
/**
* <p>The ID of the workflow.</p>
*/
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
/**
* <p>The ID of the workflow.</p>
*/
inline FlowTemplateSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
/**
* <p>The ID of the workflow.</p>
*/
inline FlowTemplateSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
/**
* <p>The ID of the workflow.</p>
*/
inline FlowTemplateSummary& WithId(const char* value) { SetId(value); return *this;}
/**
* <p>The ARN of the workflow.</p>
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* <p>The ARN of the workflow.</p>
*/
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
/**
* <p>The ARN of the workflow.</p>
*/
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
/**
* <p>The ARN of the workflow.</p>
*/
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
/**
* <p>The ARN of the workflow.</p>
*/
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
/**
* <p>The ARN of the workflow.</p>
*/
inline FlowTemplateSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* <p>The ARN of the workflow.</p>
*/
inline FlowTemplateSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* <p>The ARN of the workflow.</p>
*/
inline FlowTemplateSummary& WithArn(const char* value) { SetArn(value); return *this;}
/**
* <p>The revision number of the workflow.</p>
*/
inline long long GetRevisionNumber() const{ return m_revisionNumber; }
/**
* <p>The revision number of the workflow.</p>
*/
inline bool RevisionNumberHasBeenSet() const { return m_revisionNumberHasBeenSet; }
/**
* <p>The revision number of the workflow.</p>
*/
inline void SetRevisionNumber(long long value) { m_revisionNumberHasBeenSet = true; m_revisionNumber = value; }
/**
* <p>The revision number of the workflow.</p>
*/
inline FlowTemplateSummary& WithRevisionNumber(long long value) { SetRevisionNumber(value); return *this;}
/**
* <p>The date when the workflow was created.</p>
*/
inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
/**
* <p>The date when the workflow was created.</p>
*/
inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
/**
* <p>The date when the workflow was created.</p>
*/
inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
/**
* <p>The date when the workflow was created.</p>
*/
inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
/**
* <p>The date when the workflow was created.</p>
*/
inline FlowTemplateSummary& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
/**
* <p>The date when the workflow was created.</p>
*/
inline FlowTemplateSummary& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
private:
Aws::String m_id;
bool m_idHasBeenSet;
Aws::String m_arn;
bool m_arnHasBeenSet;
long long m_revisionNumber;
bool m_revisionNumberHasBeenSet;
Aws::Utils::DateTime m_createdAt;
bool m_createdAtHasBeenSet;
};
} // namespace Model
} // namespace IoTThingsGraph
} // namespace Aws