Show / Hide Table of Contents

Class CfnGuardrailPropsMixin.WordPolicyConfigProperty

Contains details about the word policy to configured for the guardrail.

Inheritance
object
CfnGuardrailPropsMixin.WordPolicyConfigProperty
Implements
CfnGuardrailPropsMixin.IWordPolicyConfigProperty
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 CfnGuardrailPropsMixin.WordPolicyConfigProperty : CfnGuardrailPropsMixin.IWordPolicyConfigProperty
Syntax (vb)
Public Class CfnGuardrailPropsMixin.WordPolicyConfigProperty Implements CfnGuardrailPropsMixin.IWordPolicyConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordpolicyconfig.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 wordPolicyConfigProperty = new WordPolicyConfigProperty {
                 ManagedWordListsConfig = new [] { new ManagedWordsConfigProperty {
                     InputAction = "inputAction",
                     InputEnabled = false,
                     OutputAction = "outputAction",
                     OutputEnabled = false,
                     Type = "type"
                 } },
                 WordsConfig = new [] { new WordConfigProperty {
                     InputAction = "inputAction",
                     InputEnabled = false,
                     OutputAction = "outputAction",
                     OutputEnabled = false,
                     Text = "text"
                 } }
             };

Synopsis

Constructors

WordPolicyConfigProperty()

Contains details about the word policy to configured for the guardrail.

Properties

ManagedWordListsConfig

A list of managed words to configure for the guardrail.

WordsConfig

A list of words to configure for the guardrail.

Constructors

WordPolicyConfigProperty()

Contains details about the word policy to configured for the guardrail.

public WordPolicyConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordpolicyconfig.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 wordPolicyConfigProperty = new WordPolicyConfigProperty {
                 ManagedWordListsConfig = new [] { new ManagedWordsConfigProperty {
                     InputAction = "inputAction",
                     InputEnabled = false,
                     OutputAction = "outputAction",
                     OutputEnabled = false,
                     Type = "type"
                 } },
                 WordsConfig = new [] { new WordConfigProperty {
                     InputAction = "inputAction",
                     InputEnabled = false,
                     OutputAction = "outputAction",
                     OutputEnabled = false,
                     Text = "text"
                 } }
             };

Properties

ManagedWordListsConfig

A list of managed words to configure for the guardrail.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordpolicyconfig.html#cfn-bedrock-guardrail-wordpolicyconfig-managedwordlistsconfig

Type union: either IResolvable or (either IResolvable or CfnGuardrailPropsMixin.IManagedWordsConfigProperty)[]

WordsConfig

A list of words to configure for the guardrail.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordpolicyconfig.html#cfn-bedrock-guardrail-wordpolicyconfig-wordsconfig

Type union: either IResolvable or (either IResolvable or CfnGuardrailPropsMixin.IWordConfigProperty)[]

Implements

CfnGuardrailPropsMixin.IWordPolicyConfigProperty
Back to top Generated by DocFX