Class CfnDataAutomationProject.AudioExtractionCategoryProperty
Settings for generating data from audio.
Inherited Members
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
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
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
Remarks
TypeConfiguration
This element contains information about extractions from different types.
public object? TypeConfiguration { get; set; }
Property Value
Remarks
Used to enable speaker and channel labeling for transcripts.
Type union: either IResolvable or CfnDataAutomationProject.IAudioExtractionCategoryTypeConfigurationProperty