Show / Hide Table of Contents

Class CfnDataAutomationProjectPropsMixin.DocumentOverrideConfigurationProperty

Additional settings for a project.

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

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

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

Synopsis

Constructors

DocumentOverrideConfigurationProperty()

Additional settings for a project.

Properties

ModalityProcessing

Sets modality processing for document files.

SensitiveDataConfiguration

Configuration for sensitive data detection and redaction for document files.

Splitter

Whether document splitter is enabled for a project.

Constructors

DocumentOverrideConfigurationProperty()

Additional settings for a project.

public DocumentOverrideConfigurationProperty()
Remarks

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

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

Properties

ModalityProcessing

Sets modality processing for document 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-documentoverrideconfiguration.html#cfn-bedrock-dataautomationproject-documentoverrideconfiguration-modalityprocessing

Type union: either IResolvable or CfnDataAutomationProjectPropsMixin.IModalityProcessingConfigurationProperty

SensitiveDataConfiguration

Configuration for sensitive data detection and redaction for document files.

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

object

Remarks

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

Type union: either IResolvable or CfnDataAutomationProjectPropsMixin.ISensitiveDataConfigurationProperty

Splitter

Whether document splitter is enabled for a project.

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

object

Remarks

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

Type union: either IResolvable or CfnDataAutomationProjectPropsMixin.ISplitterConfigurationProperty

Implements

CfnDataAutomationProjectPropsMixin.IDocumentOverrideConfigurationProperty
Back to top Generated by DocFX