113 lines
3.9 KiB
C++
113 lines
3.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/guardduty/GuardDuty_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace GuardDuty
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Contains information on the owner of the bucket.</p><p><h3>See Also:</h3>
|
|
* <a href="http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/Owner">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_GUARDDUTY_API Owner
|
|
{
|
|
public:
|
|
Owner();
|
|
Owner(Aws::Utils::Json::JsonView jsonValue);
|
|
Owner& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline const Aws::String& GetId() const{ return m_id; }
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline Owner& WithId(const Aws::String& value) { SetId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline Owner& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The canonical user ID of the bucket owner. For information about locating
|
|
* your canonical user ID see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding
|
|
* Your Account Canonical User ID.</a> </p>
|
|
*/
|
|
inline Owner& WithId(const char* value) { SetId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_id;
|
|
bool m_idHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace GuardDuty
|
|
} // namespace Aws
|