/* * 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 chime-sdk-media-pipelines-2021-07-15.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.ChimeSDKMediaPipelines.Model { /// /// Allows you to specify additional settings for your Call Analytics post-call request, /// including output locations for your redacted transcript, which IAM role to use, and /// which encryption key to use. /// /// /// /// DataAccessRoleArn and OutputLocation are required fields. /// /// /// /// PostCallAnalyticsSettings provides the same insights as a Call Analytics /// post-call transcription. For more information, refer to Post-call /// analytics with real-time transcriptions in the Amazon Transcribe Developer /// Guide. /// /// public partial class PostCallAnalyticsSettings { private ContentRedactionOutput _contentRedactionOutput; private string _dataAccessRoleArn; private string _outputEncryptionKMSKeyId; private string _outputLocation; /// /// Gets and sets the property ContentRedactionOutput. /// /// The content redaction output settings for a post-call analysis task. /// /// public ContentRedactionOutput ContentRedactionOutput { get { return this._contentRedactionOutput; } set { this._contentRedactionOutput = value; } } // Check to see if ContentRedactionOutput property is set internal bool IsSetContentRedactionOutput() { return this._contentRedactionOutput != null; } /// /// Gets and sets the property DataAccessRoleArn. /// /// The ARN of the role used by Amazon Web Services Transcribe to upload your post call /// analysis. For more information, see Post-call /// analytics with real-time transcriptions in the Amazon Transcribe Developer /// Guide. /// /// [AWSProperty(Required=true, Max=4096)] public string DataAccessRoleArn { get { return this._dataAccessRoleArn; } set { this._dataAccessRoleArn = value; } } // Check to see if DataAccessRoleArn property is set internal bool IsSetDataAccessRoleArn() { return this._dataAccessRoleArn != null; } /// /// Gets and sets the property OutputEncryptionKMSKeyId. /// /// The ID of the KMS (Key Management Service) key used to encrypt the output. /// /// [AWSProperty(Max=4096)] public string OutputEncryptionKMSKeyId { get { return this._outputEncryptionKMSKeyId; } set { this._outputEncryptionKMSKeyId = value; } } // Check to see if OutputEncryptionKMSKeyId property is set internal bool IsSetOutputEncryptionKMSKeyId() { return this._outputEncryptionKMSKeyId != null; } /// /// Gets and sets the property OutputLocation. /// /// The URL of the Amazon S3 bucket that contains the post-call data. /// /// [AWSProperty(Required=true, Max=4096)] public string OutputLocation { get { return this._outputLocation; } set { this._outputLocation = value; } } // Check to see if OutputLocation property is set internal bool IsSetOutputLocation() { return this._outputLocation != null; } } }