interface GuardrailTopicConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIGuardrailPropsMixin_GuardrailTopicConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIGuardrailPropsMixin » GuardrailTopicConfigProperty |
Topic configuration in topic policy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const guardrailTopicConfigProperty: wisdom_mixins.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty = {
definition: 'definition',
examples: ['examples'],
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| definition? | string | Definition of topic in topic policy. |
| examples? | string[] | Text example in topic policy. |
| name? | string | Name of topic in topic policy. |
| type? | string | Type of topic in a policy. |
definition?
Type:
string
(optional)
Definition of topic in topic policy.
examples?
Type:
string[]
(optional)
Text example in topic policy.
name?
Type:
string
(optional)
Name of topic in topic policy.
type?
Type:
string
(optional)
Type of topic in a policy.

.NET
Go
Java
Python
TypeScript