interface CfnAssistantProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAssistantProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAssistantProps |
Java | software.amazon.awscdk.services.wisdom.CfnAssistantProps |
Python | aws_cdk.aws_wisdom.CfnAssistantProps |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAssistantProps |
Properties for defining a CfnAssistant
.
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 { aws_wisdom as wisdom } from 'aws-cdk-lib';
const cfnAssistantProps: wisdom.CfnAssistantProps = {
name: 'name',
type: 'type',
// the properties below are optional
description: 'description',
serverSideEncryptionConfiguration: {
kmsKeyId: 'kmsKeyId',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the assistant. |
type | string | The type of assistant. |
description? | string | The description 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. |
name
Type:
string
The name of the assistant.
type
Type:
string
The type of assistant.
description?
Type:
string
(optional)
The description 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.