/* * 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 kendra-2019-02-03.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.Kendra.Model { /// /// Container for the parameters to the CreateAccessControlConfiguration operation. /// Creates an access configuration for your documents. This includes user and group access /// information for your documents. This is useful for user context filtering, where search /// results are filtered based on the user or their group access to documents. /// /// /// /// You can use this to re-configure your existing document level access control without /// indexing all of your documents again. For example, your index contains top-secret /// company documents that only certain employees or users should access. One of these /// users leaves the company or switches to a team that should be blocked from accessing /// top-secret documents. The user still has access to top-secret documents because the /// user had access when your documents were previously indexed. You can create a specific /// access control configuration for the user with deny access. You can later update the /// access control configuration to allow access if the user returns to the company and /// re-joins the 'top-secret' team. You can re-configure access control for your documents /// as circumstances change. /// /// /// /// To apply your access control configuration to certain documents, you call the BatchPutDocument /// API with the AccessControlConfigurationId included in the Document /// object. If you use an S3 bucket as a data source, you update the .metadata.json /// with the AccessControlConfigurationId and synchronize your data source. /// Amazon Kendra currently only supports access control configuration for S3 data sources /// and documents indexed using the BatchPutDocument API. /// /// public partial class CreateAccessControlConfigurationRequest : AmazonKendraRequest { private List _accessControlList = new List(); private string _clientToken; private string _description; private List _hierarchicalAccessControlList = new List(); private string _indexId; private string _name; /// /// Gets and sets the property AccessControlList. /// /// Information on principals (users and/or groups) and which documents they should have /// access to. This is useful for user context filtering, where search results are filtered /// based on the user or their group access to documents. /// /// public List AccessControlList { get { return this._accessControlList; } set { this._accessControlList = value; } } // Check to see if AccessControlList property is set internal bool IsSetAccessControlList() { return this._accessControlList != null && this._accessControlList.Count > 0; } /// /// Gets and sets the property ClientToken. /// /// A token that you provide to identify the request to create an access control configuration. /// Multiple calls to the CreateAccessControlConfiguration API with the same /// client token will create only one access control configuration. /// /// [AWSProperty(Min=1, Max=100)] public string ClientToken { get { return this._clientToken; } set { this._clientToken = value; } } // Check to see if ClientToken property is set internal bool IsSetClientToken() { return this._clientToken != null; } /// /// Gets and sets the property Description. /// /// A description for the access control configuration. /// /// [AWSProperty(Min=0, Max=1000)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// /// Gets and sets the property HierarchicalAccessControlList. /// /// The list of principal /// lists that define the hierarchy for which documents users should have access to. /// /// [AWSProperty(Min=1, Max=30)] public List HierarchicalAccessControlList { get { return this._hierarchicalAccessControlList; } set { this._hierarchicalAccessControlList = value; } } // Check to see if HierarchicalAccessControlList property is set internal bool IsSetHierarchicalAccessControlList() { return this._hierarchicalAccessControlList != null && this._hierarchicalAccessControlList.Count > 0; } /// /// Gets and sets the property IndexId. /// /// The identifier of the index to create an access control configuration for your documents. /// /// [AWSProperty(Required=true, Min=36, Max=36)] public string IndexId { get { return this._indexId; } set { this._indexId = value; } } // Check to see if IndexId property is set internal bool IsSetIndexId() { return this._indexId != null; } /// /// Gets and sets the property Name. /// /// A name for the access control configuration. /// /// [AWSProperty(Required=true, Min=1, Max=200)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }