/* * 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 securityhub-2018-10-26.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.SecurityHub.Model { /// /// provides information about the Amazon S3 Public Access Block configuration for accounts. /// public partial class AwsS3AccountPublicAccessBlockDetails { private bool? _blockPublicAcls; private bool? _blockPublicPolicy; private bool? _ignorePublicAcls; private bool? _restrictPublicBuckets; /// /// Gets and sets the property BlockPublicAcls. /// /// Indicates whether to reject calls to update an S3 bucket if the calls include a public /// access control list (ACL). /// /// 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. /// /// Indicates whether to reject calls to update the access policy for an S3 bucket or /// access point if the policy allows public access. /// /// 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. /// /// Indicates whether Amazon S3 ignores public ACLs that are associated with an S3 bucket. /// /// 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. /// /// Indicates whether to restrict access to an access point or S3 bucket that has a public /// policy to only Amazon Web Services service principals and authorized users within /// the S3 bucket owner's account. /// /// 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; } } }