aws-cdk-lib.aws_wisdom.CfnAssistantProps

interface CfnAssistantProps

LanguageType name
.NETAmazon.CDK.AWS.Wisdom.CfnAssistantProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAssistantProps
Javasoftware.amazon.awscdk.services.wisdom.CfnAssistantProps
Pythonaws_cdk.aws_wisdom.CfnAssistantProps
TypeScript aws-cdk-lib » aws_wisdom » CfnAssistantProps

Properties for defining a CfnAssistant.

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

NameTypeDescription
namestringThe name of the assistant.
typestringThe type of assistant.
description?stringThe description of the assistant.
serverSideEncryptionConfiguration?IResolvable | ServerSideEncryptionConfigurationPropertyThe KMS key used for encryption.
tags?CfnTag[]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 | ServerSideEncryptionConfigurationProperty (optional)

The KMS key used for encryption.


tags?

Type: CfnTag[] (optional)

The tags used to organize, track, or control access for this resource.