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