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

The PublicAccessBlock configuration that you want to apply to this Amazon S3 * bucket. You can enable the configuration options in any combination. For more * information about when Amazon S3 considers a bucket or object public, see The * Meaning of "Public" in the Amazon S3 User Guide.

See * Also:

AWS * API Reference

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

Specifies whether Amazon S3 should block public access control lists (ACLs) * for this bucket and objects in this bucket. Setting this element to * TRUE causes the following behavior:

*

Enabling this setting doesn't affect existing policies or ACLs.

*/ inline bool GetBlockPublicAcls() const{ return m_blockPublicAcls; } /** *

Specifies whether Amazon S3 should block public access control lists (ACLs) * for this bucket and objects in this bucket. Setting this element to * TRUE causes the following behavior:

*

Enabling this setting doesn't affect existing policies or ACLs.

*/ inline bool BlockPublicAclsHasBeenSet() const { return m_blockPublicAclsHasBeenSet; } /** *

Specifies whether Amazon S3 should block public access control lists (ACLs) * for this bucket and objects in this bucket. Setting this element to * TRUE causes the following behavior:

*

Enabling this setting doesn't affect existing policies or ACLs.

*/ inline void SetBlockPublicAcls(bool value) { m_blockPublicAclsHasBeenSet = true; m_blockPublicAcls = value; } /** *

Specifies whether Amazon S3 should block public access control lists (ACLs) * for this bucket and objects in this bucket. Setting this element to * TRUE causes the following behavior:

*

Enabling this setting doesn't affect existing policies or ACLs.

*/ inline PublicAccessBlockConfiguration& WithBlockPublicAcls(bool value) { SetBlockPublicAcls(value); return *this;} /** *

Specifies whether Amazon S3 should ignore public ACLs for this bucket and * objects in this bucket. Setting this element to TRUE causes Amazon * S3 to ignore all public ACLs on this bucket and objects in this bucket.

*

Enabling this setting doesn't affect the persistence of any existing ACLs and * doesn't prevent new public ACLs from being set.

*/ inline bool GetIgnorePublicAcls() const{ return m_ignorePublicAcls; } /** *

Specifies whether Amazon S3 should ignore public ACLs for this bucket and * objects in this bucket. Setting this element to TRUE causes Amazon * S3 to ignore all public ACLs on this bucket and objects in this bucket.

*

Enabling this setting doesn't affect the persistence of any existing ACLs and * doesn't prevent new public ACLs from being set.

*/ inline bool IgnorePublicAclsHasBeenSet() const { return m_ignorePublicAclsHasBeenSet; } /** *

Specifies whether Amazon S3 should ignore public ACLs for this bucket and * objects in this bucket. Setting this element to TRUE causes Amazon * S3 to ignore all public ACLs on this bucket and objects in this bucket.

*

Enabling this setting doesn't affect the persistence of any existing ACLs and * doesn't prevent new public ACLs from being set.

*/ inline void SetIgnorePublicAcls(bool value) { m_ignorePublicAclsHasBeenSet = true; m_ignorePublicAcls = value; } /** *

Specifies whether Amazon S3 should ignore public ACLs for this bucket and * objects in this bucket. Setting this element to TRUE causes Amazon * S3 to ignore all public ACLs on this bucket and objects in this bucket.

*

Enabling this setting doesn't affect the persistence of any existing ACLs and * doesn't prevent new public ACLs from being set.

*/ inline PublicAccessBlockConfiguration& WithIgnorePublicAcls(bool value) { SetIgnorePublicAcls(value); return *this;} /** *

Specifies whether Amazon S3 should block public bucket policies for this * bucket. Setting this element to TRUE causes Amazon S3 to reject * calls to PUT Bucket policy if the specified bucket policy allows public access. *

Enabling this setting doesn't affect existing bucket policies.

*/ inline bool GetBlockPublicPolicy() const{ return m_blockPublicPolicy; } /** *

Specifies whether Amazon S3 should block public bucket policies for this * bucket. Setting this element to TRUE causes Amazon S3 to reject * calls to PUT Bucket policy if the specified bucket policy allows public access. *

Enabling this setting doesn't affect existing bucket policies.

*/ inline bool BlockPublicPolicyHasBeenSet() const { return m_blockPublicPolicyHasBeenSet; } /** *

Specifies whether Amazon S3 should block public bucket policies for this * bucket. Setting this element to TRUE causes Amazon S3 to reject * calls to PUT Bucket policy if the specified bucket policy allows public access. *

Enabling this setting doesn't affect existing bucket policies.

*/ inline void SetBlockPublicPolicy(bool value) { m_blockPublicPolicyHasBeenSet = true; m_blockPublicPolicy = value; } /** *

Specifies whether Amazon S3 should block public bucket policies for this * bucket. Setting this element to TRUE causes Amazon S3 to reject * calls to PUT Bucket policy if the specified bucket policy allows public access. *

Enabling this setting doesn't affect existing bucket policies.

*/ inline PublicAccessBlockConfiguration& WithBlockPublicPolicy(bool value) { SetBlockPublicPolicy(value); return *this;} /** *

Specifies whether Amazon S3 should restrict public bucket policies for this * bucket. Setting this element to TRUE restricts access to this * bucket to only Amazon Web Service principals and authorized users within this * account if the bucket has a public policy.

Enabling this setting doesn't * affect previously stored bucket policies, except that public and cross-account * access within any public bucket policy, including non-public delegation to * specific accounts, is blocked.

*/ inline bool GetRestrictPublicBuckets() const{ return m_restrictPublicBuckets; } /** *

Specifies whether Amazon S3 should restrict public bucket policies for this * bucket. Setting this element to TRUE restricts access to this * bucket to only Amazon Web Service principals and authorized users within this * account if the bucket has a public policy.

Enabling this setting doesn't * affect previously stored bucket policies, except that public and cross-account * access within any public bucket policy, including non-public delegation to * specific accounts, is blocked.

*/ inline bool RestrictPublicBucketsHasBeenSet() const { return m_restrictPublicBucketsHasBeenSet; } /** *

Specifies whether Amazon S3 should restrict public bucket policies for this * bucket. Setting this element to TRUE restricts access to this * bucket to only Amazon Web Service principals and authorized users within this * account if the bucket has a public policy.

Enabling this setting doesn't * affect previously stored bucket policies, except that public and cross-account * access within any public bucket policy, including non-public delegation to * specific accounts, is blocked.

*/ inline void SetRestrictPublicBuckets(bool value) { m_restrictPublicBucketsHasBeenSet = true; m_restrictPublicBuckets = value; } /** *

Specifies whether Amazon S3 should restrict public bucket policies for this * bucket. Setting this element to TRUE restricts access to this * bucket to only Amazon Web Service principals and authorized users within this * account if the bucket has a public policy.

Enabling this setting doesn't * affect previously stored bucket policies, except that public and cross-account * access within any public bucket policy, including non-public delegation to * specific accounts, is blocked.

*/ inline PublicAccessBlockConfiguration& WithRestrictPublicBuckets(bool value) { SetRestrictPublicBuckets(value); return *this;} private: bool m_blockPublicAcls; bool m_blockPublicAclsHasBeenSet; bool m_ignorePublicAcls; bool m_ignorePublicAclsHasBeenSet; bool m_blockPublicPolicy; bool m_blockPublicPolicyHasBeenSet; bool m_restrictPublicBuckets; bool m_restrictPublicBucketsHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws