/* * 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 voice-id-2021-09-27.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.VoiceID.Model { /// <summary> /// Container for the parameters to the CreateDomain operation. /// Creates a domain that contains all Amazon Connect Voice ID data, such as speakers, /// fraudsters, customer audio, and voiceprints. Every domain is created with a default /// watchlist that fraudsters can be a part of. /// </summary> public partial class CreateDomainRequest : AmazonVoiceIDRequest { private string _clientToken; private string _description; private string _name; private ServerSideEncryptionConfiguration _serverSideEncryptionConfiguration; private List<Tag> _tags = new List<Tag>(); /// <summary> /// Gets and sets the property ClientToken. /// <para> /// A unique, case-sensitive identifier that you provide to ensure the idempotency of /// the request. If not provided, the Amazon Web Services SDK populates this field. For /// more information about idempotency, see <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making /// retries safe with idempotent APIs</a>. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] 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; } /// <summary> /// Gets and sets the property Description. /// <para> /// A brief description of this domain. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=1, Max=1024)] 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; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the domain. /// </para> /// </summary> [AWSProperty(Required=true, Sensitive=true, Min=1, Max=256)] 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; } /// <summary> /// Gets and sets the property ServerSideEncryptionConfiguration. /// <para> /// The configuration, containing the KMS key identifier, to be used by Voice ID for the /// server-side encryption of your data. Refer to <a href="https://docs.aws.amazon.com/connect/latest/adminguide/encryption-at-rest.html#encryption-at-rest-voiceid"> /// Amazon Connect Voice ID encryption at rest</a> for more details on how the KMS key /// is used. /// </para> /// </summary> [AWSProperty(Required=true)] public ServerSideEncryptionConfiguration ServerSideEncryptionConfiguration { get { return this._serverSideEncryptionConfiguration; } set { this._serverSideEncryptionConfiguration = value; } } // Check to see if ServerSideEncryptionConfiguration property is set internal bool IsSetServerSideEncryptionConfiguration() { return this._serverSideEncryptionConfiguration != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// A list of tags you want added to the domain. /// </para> /// </summary> [AWSProperty(Min=0, Max=200)] public List<Tag> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }