Show / Hide Table of Contents

Class CfnDataAutomationProjectPropsMixin.ImageOverrideConfigurationProperty

Sets whether your project will process images or not.

Inheritance
object
CfnDataAutomationProjectPropsMixin.ImageOverrideConfigurationProperty
Implements
CfnDataAutomationProjectPropsMixin.IImageOverrideConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataAutomationProjectPropsMixin.ImageOverrideConfigurationProperty : CfnDataAutomationProjectPropsMixin.IImageOverrideConfigurationProperty
Syntax (vb)
Public Class CfnDataAutomationProjectPropsMixin.ImageOverrideConfigurationProperty Implements CfnDataAutomationProjectPropsMixin.IImageOverrideConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageoverrideconfiguration.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.Mixins.Preview.AWS.Bedrock.Mixins;

             var imageOverrideConfigurationProperty = new ImageOverrideConfigurationProperty {
                 ModalityProcessing = new ModalityProcessingConfigurationProperty {
                     State = "state"
                 },
                 SensitiveDataConfiguration = new SensitiveDataConfigurationProperty {
                     DetectionMode = "detectionMode",
                     DetectionScope = new [] { "detectionScope" },
                     PiiEntitiesConfiguration = new PIIEntitiesConfigurationProperty {
                         PiiEntityTypes = new [] { "piiEntityTypes" },
                         RedactionMaskMode = "redactionMaskMode"
                     }
                 }
             };

Synopsis

Constructors

ImageOverrideConfigurationProperty()

Sets whether your project will process images or not.

Properties

ModalityProcessing

Sets modality processing for image files.

SensitiveDataConfiguration

Configuration for sensitive data detection and redaction for image files.

Constructors

ImageOverrideConfigurationProperty()

Sets whether your project will process images or not.

public ImageOverrideConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageoverrideconfiguration.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.Mixins.Preview.AWS.Bedrock.Mixins;

             var imageOverrideConfigurationProperty = new ImageOverrideConfigurationProperty {
                 ModalityProcessing = new ModalityProcessingConfigurationProperty {
                     State = "state"
                 },
                 SensitiveDataConfiguration = new SensitiveDataConfigurationProperty {
                     DetectionMode = "detectionMode",
                     DetectionScope = new [] { "detectionScope" },
                     PiiEntitiesConfiguration = new PIIEntitiesConfigurationProperty {
                         PiiEntityTypes = new [] { "piiEntityTypes" },
                         RedactionMaskMode = "redactionMaskMode"
                     }
                 }
             };

Properties

ModalityProcessing

Sets modality processing for image files.

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

object

Remarks

All modalities are enabled by default.

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

Type union: either IResolvable or CfnDataAutomationProjectPropsMixin.IModalityProcessingConfigurationProperty

SensitiveDataConfiguration

Configuration for sensitive data detection and redaction for image files.

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

object

Remarks

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

Type union: either IResolvable or CfnDataAutomationProjectPropsMixin.ISensitiveDataConfigurationProperty

Implements

CfnDataAutomationProjectPropsMixin.IImageOverrideConfigurationProperty
Back to top Generated by DocFX