All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.chimesdkmediapipelines.inputs.MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.aws.chimesdkmediapipelines.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs extends com.pulumi.resources.ResourceArgs {

    public static final MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs Empty = new MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs();

    /**
     * Should output be redacted.
     * 
     */
    @Import(name="contentRedactionOutput")
    private @Nullable Output contentRedactionOutput;

    /**
     * @return Should output be redacted.
     * 
     */
    public Optional> contentRedactionOutput() {
        return Optional.ofNullable(this.contentRedactionOutput);
    }

    /**
     * ARN of the role used by AWS Transcribe to upload your post call analysis.
     * 
     */
    @Import(name="dataAccessRoleArn", required=true)
    private Output dataAccessRoleArn;

    /**
     * @return ARN of the role used by AWS Transcribe to upload your post call analysis.
     * 
     */
    public Output dataAccessRoleArn() {
        return this.dataAccessRoleArn;
    }

    /**
     * ID of the KMS key used to encrypt the output.
     * 
     */
    @Import(name="outputEncryptionKmsKeyId")
    private @Nullable Output outputEncryptionKmsKeyId;

    /**
     * @return ID of the KMS key used to encrypt the output.
     * 
     */
    public Optional> outputEncryptionKmsKeyId() {
        return Optional.ofNullable(this.outputEncryptionKmsKeyId);
    }

    /**
     * The Amazon S3 location where you want your Call Analytics post-call transcription output stored.
     * 
     */
    @Import(name="outputLocation", required=true)
    private Output outputLocation;

    /**
     * @return The Amazon S3 location where you want your Call Analytics post-call transcription output stored.
     * 
     */
    public Output outputLocation() {
        return this.outputLocation;
    }

    private MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs() {}

    private MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs(MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs $) {
        this.contentRedactionOutput = $.contentRedactionOutput;
        this.dataAccessRoleArn = $.dataAccessRoleArn;
        this.outputEncryptionKmsKeyId = $.outputEncryptionKmsKeyId;
        this.outputLocation = $.outputLocation;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs $;

        public Builder() {
            $ = new MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs();
        }

        public Builder(MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs defaults) {
            $ = new MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param contentRedactionOutput Should output be redacted.
         * 
         * @return builder
         * 
         */
        public Builder contentRedactionOutput(@Nullable Output contentRedactionOutput) {
            $.contentRedactionOutput = contentRedactionOutput;
            return this;
        }

        /**
         * @param contentRedactionOutput Should output be redacted.
         * 
         * @return builder
         * 
         */
        public Builder contentRedactionOutput(String contentRedactionOutput) {
            return contentRedactionOutput(Output.of(contentRedactionOutput));
        }

        /**
         * @param dataAccessRoleArn ARN of the role used by AWS Transcribe to upload your post call analysis.
         * 
         * @return builder
         * 
         */
        public Builder dataAccessRoleArn(Output dataAccessRoleArn) {
            $.dataAccessRoleArn = dataAccessRoleArn;
            return this;
        }

        /**
         * @param dataAccessRoleArn ARN of the role used by AWS Transcribe to upload your post call analysis.
         * 
         * @return builder
         * 
         */
        public Builder dataAccessRoleArn(String dataAccessRoleArn) {
            return dataAccessRoleArn(Output.of(dataAccessRoleArn));
        }

        /**
         * @param outputEncryptionKmsKeyId ID of the KMS key used to encrypt the output.
         * 
         * @return builder
         * 
         */
        public Builder outputEncryptionKmsKeyId(@Nullable Output outputEncryptionKmsKeyId) {
            $.outputEncryptionKmsKeyId = outputEncryptionKmsKeyId;
            return this;
        }

        /**
         * @param outputEncryptionKmsKeyId ID of the KMS key used to encrypt the output.
         * 
         * @return builder
         * 
         */
        public Builder outputEncryptionKmsKeyId(String outputEncryptionKmsKeyId) {
            return outputEncryptionKmsKeyId(Output.of(outputEncryptionKmsKeyId));
        }

        /**
         * @param outputLocation The Amazon S3 location where you want your Call Analytics post-call transcription output stored.
         * 
         * @return builder
         * 
         */
        public Builder outputLocation(Output outputLocation) {
            $.outputLocation = outputLocation;
            return this;
        }

        /**
         * @param outputLocation The Amazon S3 location where you want your Call Analytics post-call transcription output stored.
         * 
         * @return builder
         * 
         */
        public Builder outputLocation(String outputLocation) {
            return outputLocation(Output.of(outputLocation));
        }

        public MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs build() {
            if ($.dataAccessRoleArn == null) {
                throw new MissingRequiredPropertyException("MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs", "dataAccessRoleArn");
            }
            if ($.outputLocation == null) {
                throw new MissingRequiredPropertyException("MediaInsightsPipelineConfigurationElementAmazonTranscribeCallAnalyticsProcessorConfigurationPostCallAnalyticsSettingsArgs", "outputLocation");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy