/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the s3control-2018-08-20.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.S3Control.Model { /// /// The PublicAccessBlock configuration that you want to apply to this Amazon /// S3 account. 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. /// /// /// /// This data type is not supported for Amazon S3 on Outposts. /// /// public partial class PublicAccessBlockConfiguration { private bool? _blockPublicAcls; private bool? _blockPublicPolicy; private bool? _ignorePublicAcls; private bool? _restrictPublicBuckets; /// /// Gets and sets the property BlockPublicAcls. /// /// Specifies whether Amazon S3 should block public access control lists (ACLs) for buckets /// in this account. Setting this element to TRUE causes the following behavior: /// /// /// /// Enabling this setting doesn't affect existing policies or ACLs. /// /// /// /// This property is not supported for Amazon S3 on Outposts. /// /// public bool BlockPublicAcls { get { return this._blockPublicAcls.GetValueOrDefault(); } set { this._blockPublicAcls = value; } } // Check to see if BlockPublicAcls property is set internal bool IsSetBlockPublicAcls() { return this._blockPublicAcls.HasValue; } /// /// Gets and sets the property BlockPublicPolicy. /// /// Specifies whether Amazon S3 should block public bucket policies for buckets in this /// account. 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. /// /// /// /// This property is not supported for Amazon S3 on Outposts. /// /// public bool BlockPublicPolicy { get { return this._blockPublicPolicy.GetValueOrDefault(); } set { this._blockPublicPolicy = value; } } // Check to see if BlockPublicPolicy property is set internal bool IsSetBlockPublicPolicy() { return this._blockPublicPolicy.HasValue; } /// /// Gets and sets the property IgnorePublicAcls. /// /// Specifies whether Amazon S3 should ignore public ACLs for buckets in this account. /// Setting this element to TRUE causes Amazon S3 to ignore all public ACLs /// on buckets in this account and any objects that they contain. /// /// /// /// Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't /// prevent new public ACLs from being set. /// /// /// /// This property is not supported for Amazon S3 on Outposts. /// /// public bool IgnorePublicAcls { get { return this._ignorePublicAcls.GetValueOrDefault(); } set { this._ignorePublicAcls = value; } } // Check to see if IgnorePublicAcls property is set internal bool IsSetIgnorePublicAcls() { return this._ignorePublicAcls.HasValue; } /// /// Gets and sets the property RestrictPublicBuckets. /// /// Specifies whether Amazon S3 should restrict public bucket policies for buckets in /// this account. Setting this element to TRUE restricts access to buckets /// with public policies to only Amazon Web Service principals and authorized users within /// this account. /// /// /// /// 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. /// /// /// /// This property is not supported for Amazon S3 on Outposts. /// /// public bool RestrictPublicBuckets { get { return this._restrictPublicBuckets.GetValueOrDefault(); } set { this._restrictPublicBuckets = value; } } // Check to see if RestrictPublicBuckets property is set internal bool IsSetRestrictPublicBuckets() { return this._restrictPublicBuckets.HasValue; } } }