/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { /** *

Container for granting information.

Buckets that use the bucket owner * enforced setting for Object Ownership don't support target grants. For more * information, see Permissions * server access log delivery in the Amazon S3 User Guide.

See * Also:

AWS API * Reference

*/ class TargetGrant { public: AWS_S3_API TargetGrant(); AWS_S3_API TargetGrant(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3_API TargetGrant& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

Container for the person being granted permissions.

*/ inline const Grantee& GetGrantee() const{ return m_grantee; } /** *

Container for the person being granted permissions.

*/ inline bool GranteeHasBeenSet() const { return m_granteeHasBeenSet; } /** *

Container for the person being granted permissions.

*/ inline void SetGrantee(const Grantee& value) { m_granteeHasBeenSet = true; m_grantee = value; } /** *

Container for the person being granted permissions.

*/ inline void SetGrantee(Grantee&& value) { m_granteeHasBeenSet = true; m_grantee = std::move(value); } /** *

Container for the person being granted permissions.

*/ inline TargetGrant& WithGrantee(const Grantee& value) { SetGrantee(value); return *this;} /** *

Container for the person being granted permissions.

*/ inline TargetGrant& WithGrantee(Grantee&& value) { SetGrantee(std::move(value)); return *this;} /** *

Logging permissions assigned to the grantee for the bucket.

*/ inline const BucketLogsPermission& GetPermission() const{ return m_permission; } /** *

Logging permissions assigned to the grantee for the bucket.

*/ inline bool PermissionHasBeenSet() const { return m_permissionHasBeenSet; } /** *

Logging permissions assigned to the grantee for the bucket.

*/ inline void SetPermission(const BucketLogsPermission& value) { m_permissionHasBeenSet = true; m_permission = value; } /** *

Logging permissions assigned to the grantee for the bucket.

*/ inline void SetPermission(BucketLogsPermission&& value) { m_permissionHasBeenSet = true; m_permission = std::move(value); } /** *

Logging permissions assigned to the grantee for the bucket.

*/ inline TargetGrant& WithPermission(const BucketLogsPermission& value) { SetPermission(value); return *this;} /** *

Logging permissions assigned to the grantee for the bucket.

*/ inline TargetGrant& WithPermission(BucketLogsPermission&& value) { SetPermission(std::move(value)); return *this;} private: Grantee m_grantee; bool m_granteeHasBeenSet = false; BucketLogsPermission m_permission; bool m_permissionHasBeenSet = false; }; } // namespace Model } // namespace S3 } // namespace Aws