Class CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty
A custom type definition within the policy.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty : CfnAutomatedReasoningPolicyPropsMixin.IPolicyDefinitionTypeProperty
Syntax (vb)
Public Class CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty Implements CfnAutomatedReasoningPolicyPropsMixin.IPolicyDefinitionTypeProperty
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.CfnPropertyMixins.AWS.Bedrock;
var policyDefinitionTypeProperty = new PolicyDefinitionTypeProperty {
Description = "description",
Name = "name",
Values = new [] { new PolicyDefinitionTypeValueProperty {
Description = "description",
Value = "value"
} }
};
Synopsis
Constructors
| PolicyDefinitionTypeProperty() | A custom type definition within the policy. |
Properties
| Description | A description of the custom type defined in the policy. |
| Name | The name of a custom type defined in the policy. |
| Values | The possible values for a custom type defined in the policy. |
Constructors
PolicyDefinitionTypeProperty()
A custom type definition within the policy.
public PolicyDefinitionTypeProperty()
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.CfnPropertyMixins.AWS.Bedrock;
var policyDefinitionTypeProperty = new PolicyDefinitionTypeProperty {
Description = "description",
Name = "name",
Values = new [] { new PolicyDefinitionTypeValueProperty {
Description = "description",
Value = "value"
} }
};
Properties
Description
A description of the custom type defined in the policy.
public string? Description { get; set; }
Property Value
Remarks
Name
The name of a custom type defined in the policy.
public string? Name { get; set; }
Property Value
Remarks
Values
The possible values for a custom type defined in the policy.
public object? Values { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAutomatedReasoningPolicyPropsMixin.IPolicyDefinitionTypeValueProperty)[]