CfnAssistantProps

class aws_cdk.aws_wisdom.CfnAssistantProps(*, name, type, description=None, server_side_encryption_configuration=None, tags=None)

Bases: object

Properties for defining a CfnAssistant.

Parameters:
  • name (str) – The name of the assistant.

  • type (str) – The type of assistant.

  • description (Optional[str]) – The description of the assistant.

  • server_side_encryption_configuration (Union[ServerSideEncryptionConfigurationProperty, Dict[str, Any], IResolvable, None]) – The KMS key used for encryption.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags used to organize, track, or control access for this resource.

Link:

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.
import aws_cdk.aws_wisdom as wisdom

cfn_assistant_props = wisdom.CfnAssistantProps(
    name="name",
    type="type",

    # the properties below are optional
    description="description",
    server_side_encryption_configuration=wisdom.CfnAssistant.ServerSideEncryptionConfigurationProperty(
        kms_key_id="kmsKeyId"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the assistant.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-description

name

The name of the assistant.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-name

server_side_encryption_configuration

The KMS key used for encryption.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-serversideencryptionconfiguration

tags

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

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-tags

type

The type of assistant.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-type