interface CfnAssistantProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAssistantProps |
Java | software.amazon.awscdk.services.wisdom.CfnAssistantProps |
Python | aws_cdk.aws_wisdom.CfnAssistantProps |
TypeScript | @aws-cdk/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 * as wisdom from '@aws-cdk/aws-wisdom';
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 | Server | IResolvable | The KMS 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:
Server
|
IResolvable
(optional)
The KMS key used for encryption.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.