CfnAssistantMixinProps
- class aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAssistantMixinProps(*, description=None, name=None, server_side_encryption_configuration=None, tags=None, type=None)
Bases:
objectProperties for CfnAssistantPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the assistant.name (
Optional[str]) – The name of the assistant.server_side_encryption_configuration (
Union[IResolvable,ServerSideEncryptionConfigurationProperty,Dict[str,Any],None]) – The configuration information for the customer managed key used for encryption. The customer managed key must have a policy that allowskms:CreateGrantandkms:DescribeKeypermissions to the IAM identity using the key to invoke Wisdom. To use Wisdom with chat, the key policy must also allowkms:Decrypt,kms:GenerateDataKey*, andkms:DescribeKeypermissions to theconnect.amazonaws.com.rproxy.govskope.caservice principal. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance .tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource.type (
Optional[str]) – The type of assistant.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_wisdom import mixins as wisdom_mixins cfn_assistant_mixin_props = wisdom_mixins.CfnAssistantMixinProps( description="description", name="name", server_side_encryption_configuration=wisdom_mixins.CfnAssistantPropsMixin.ServerSideEncryptionConfigurationProperty( kms_key_id="kmsKeyId" ), tags=[CfnTag( key="key", value="value" )], type="type" )
Attributes
- description
The description of the assistant.
- name
The name of the assistant.
- server_side_encryption_configuration
The configuration information for the customer managed key used for encryption.
The customer managed key must have a policy that allows
kms:CreateGrantandkms:DescribeKeypermissions to the IAM identity using the key to invoke Wisdom. To use Wisdom with chat, the key policy must also allowkms:Decrypt,kms:GenerateDataKey*, andkms:DescribeKeypermissions to theconnect.amazonaws.com.rproxy.govskope.caservice principal. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance .
- tags
The tags used to organize, track, or control access for this resource.
- type
The type of assistant.