Show / Hide Table of Contents

Class CfnDataAutomationProject.AudioExtractionCategoryProperty

Settings for generating data from audio.

Inheritance
object
CfnDataAutomationProject.AudioExtractionCategoryProperty
Implements
CfnDataAutomationProject.IAudioExtractionCategoryProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataAutomationProject.AudioExtractionCategoryProperty : CfnDataAutomationProject.IAudioExtractionCategoryProperty
Syntax (vb)
Public Class CfnDataAutomationProject.AudioExtractionCategoryProperty Implements CfnDataAutomationProject.IAudioExtractionCategoryProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Bedrock;

             var audioExtractionCategoryProperty = new AudioExtractionCategoryProperty {
                 State = "state",

                 // the properties below are optional
                 TypeConfiguration = new AudioExtractionCategoryTypeConfigurationProperty {
                     Transcript = new TranscriptConfigurationProperty {
                         ChannelLabeling = new ChannelLabelingConfigurationProperty {
                             State = "state"
                         },
                         SpeakerLabeling = new SpeakerLabelingConfigurationProperty {
                             State = "state"
                         }
                     }
                 },
                 Types = new [] { "types" }
             };

Synopsis

Constructors

AudioExtractionCategoryProperty()

Settings for generating data from audio.

Properties

State

Whether generating categorical data from audio is enabled.

TypeConfiguration

This element contains information about extractions from different types.

Types

The types of data to generate.

Constructors

AudioExtractionCategoryProperty()

Settings for generating data from audio.

public AudioExtractionCategoryProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Bedrock;

             var audioExtractionCategoryProperty = new AudioExtractionCategoryProperty {
                 State = "state",

                 // the properties below are optional
                 TypeConfiguration = new AudioExtractionCategoryTypeConfigurationProperty {
                     Transcript = new TranscriptConfigurationProperty {
                         ChannelLabeling = new ChannelLabelingConfigurationProperty {
                             State = "state"
                         },
                         SpeakerLabeling = new SpeakerLabelingConfigurationProperty {
                             State = "state"
                         }
                     }
                 },
                 Types = new [] { "types" }
             };

Properties

State

Whether generating categorical data from audio is enabled.

public string State { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html#cfn-bedrock-dataautomationproject-audioextractioncategory-state

TypeConfiguration

This element contains information about extractions from different types.

public object? TypeConfiguration { get; set; }
Property Value

object

Remarks

Used to enable speaker and channel labeling for transcripts.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html#cfn-bedrock-dataautomationproject-audioextractioncategory-typeconfiguration

Type union: either IResolvable or CfnDataAutomationProject.IAudioExtractionCategoryTypeConfigurationProperty

Types

The types of data to generate.

public string[]? Types { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html#cfn-bedrock-dataautomationproject-audioextractioncategory-types

Implements

CfnDataAutomationProject.IAudioExtractionCategoryProperty
Back to top Generated by DocFX