interface GuardrailTopicConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAIGuardrailPropsMixin_GuardrailTopicConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAIGuardrailPropsMixin.GuardrailTopicConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » 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 { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
const guardrailTopicConfigProperty: wisdom.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