Show / Hide Table of Contents

Class CfnDataAutomationProject.VideoStandardOutputConfigurationProperty

Output settings for processing video.

Inheritance
object
CfnDataAutomationProject.VideoStandardOutputConfigurationProperty
Implements
CfnDataAutomationProject.IVideoStandardOutputConfigurationProperty
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.VideoStandardOutputConfigurationProperty : CfnDataAutomationProject.IVideoStandardOutputConfigurationProperty
Syntax (vb)
Public Class CfnDataAutomationProject.VideoStandardOutputConfigurationProperty Implements CfnDataAutomationProject.IVideoStandardOutputConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardoutputconfiguration.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 videoStandardOutputConfigurationProperty = new VideoStandardOutputConfigurationProperty {
                 Extraction = new VideoStandardExtractionProperty {
                     BoundingBox = new VideoBoundingBoxProperty {
                         State = "state"
                     },
                     Category = new VideoExtractionCategoryProperty {
                         State = "state",

                         // the properties below are optional
                         Types = new [] { "types" }
                     }
                 },
                 GenerativeField = new VideoStandardGenerativeFieldProperty {
                     State = "state",

                     // the properties below are optional
                     Types = new [] { "types" }
                 }
             };

Synopsis

Constructors

VideoStandardOutputConfigurationProperty()

Output settings for processing video.

Properties

Extraction

Settings for populating data fields that describe the video.

GenerativeField

Whether to generate descriptions of the video.

Constructors

VideoStandardOutputConfigurationProperty()

Output settings for processing video.

public VideoStandardOutputConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardoutputconfiguration.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 videoStandardOutputConfigurationProperty = new VideoStandardOutputConfigurationProperty {
                 Extraction = new VideoStandardExtractionProperty {
                     BoundingBox = new VideoBoundingBoxProperty {
                         State = "state"
                     },
                     Category = new VideoExtractionCategoryProperty {
                         State = "state",

                         // the properties below are optional
                         Types = new [] { "types" }
                     }
                 },
                 GenerativeField = new VideoStandardGenerativeFieldProperty {
                     State = "state",

                     // the properties below are optional
                     Types = new [] { "types" }
                 }
             };

Properties

Extraction

Settings for populating data fields that describe the video.

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

object

Remarks

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

Type union: either IResolvable or CfnDataAutomationProject.IVideoStandardExtractionProperty

GenerativeField

Whether to generate descriptions of the video.

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

object

Remarks

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

Type union: either IResolvable or CfnDataAutomationProject.IVideoStandardGenerativeFieldProperty

Implements

CfnDataAutomationProject.IVideoStandardOutputConfigurationProperty
Back to top Generated by DocFX