116 lines
3.3 KiB
C++
116 lines
3.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/greengrass/Greengrass_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 Greengrass
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_GREENGRASS_API GetAssociatedRoleResult
|
|
{
|
|
public:
|
|
GetAssociatedRoleResult();
|
|
GetAssociatedRoleResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetAssociatedRoleResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline const Aws::String& GetAssociatedAt() const{ return m_associatedAt; }
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline void SetAssociatedAt(const Aws::String& value) { m_associatedAt = value; }
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline void SetAssociatedAt(Aws::String&& value) { m_associatedAt = std::move(value); }
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline void SetAssociatedAt(const char* value) { m_associatedAt.assign(value); }
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline GetAssociatedRoleResult& WithAssociatedAt(const Aws::String& value) { SetAssociatedAt(value); return *this;}
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline GetAssociatedRoleResult& WithAssociatedAt(Aws::String&& value) { SetAssociatedAt(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* The time when the role was associated with the group.
|
|
*/
|
|
inline GetAssociatedRoleResult& WithAssociatedAt(const char* value) { SetAssociatedAt(value); return *this;}
|
|
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline void SetRoleArn(const Aws::String& value) { m_roleArn = value; }
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline void SetRoleArn(Aws::String&& value) { m_roleArn = std::move(value); }
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline void SetRoleArn(const char* value) { m_roleArn.assign(value); }
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline GetAssociatedRoleResult& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline GetAssociatedRoleResult& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* The ARN of the role that is associated with the group.
|
|
*/
|
|
inline GetAssociatedRoleResult& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_associatedAt;
|
|
|
|
Aws::String m_roleArn;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Greengrass
|
|
} // namespace Aws
|