/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information on the owner of the bucket.See Also:
* AWS
* API Reference
The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline Owner& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline Owner& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The canonical user ID of the bucket owner. For information about locating * your canonical user ID see Finding * Your Account Canonical User ID.
*/ inline Owner& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws