interface CfnAssistantMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAssistantMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAssistantMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAssistantMixinProps |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAssistantMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAssistantMixinProps |
Properties for CfnAssistantPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html
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 cfnAssistantMixinProps: wisdom_mixins.CfnAssistantMixinProps = {
description: 'description',
name: 'name',
serverSideEncryptionConfiguration: {
kmsKeyId: 'kmsKeyId',
},
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the assistant. |
| name? | string | The name of the assistant. |
| server | IResolvable | Server | The configuration information for the customer managed key used for encryption. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
| type? | string | The type of assistant. |
description?
Type:
string
(optional)
The description of the assistant.
name?
Type:
string
(optional)
The name of the assistant.
serverSideEncryptionConfiguration?
Type:
IResolvable | Server
(optional)
The configuration information for the customer managed key used for encryption.
The customer managed key must have a policy that allows kms:CreateGrant and kms:DescribeKey permissions to the IAM identity using the key to invoke Wisdom. To use Wisdom with chat, the key policy must also allow kms:Decrypt , kms:GenerateDataKey* , and kms:DescribeKey permissions to the connect.amazonaws.com service principal. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance .
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
type?
Type:
string
(optional)
The type of assistant.

.NET
Go
Java
Python
TypeScript