CfnAssistantAssociationMixinProps

class aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAssistantAssociationMixinProps(*, assistant_id=None, association=None, association_type=None, tags=None)

Bases: object

Properties for CfnAssistantAssociationPropsMixin.

Parameters:
  • assistant_id (Optional[str]) – The identifier of the Wisdom assistant.

  • association (Union[IResolvable, AssociationDataProperty, Dict[str, Any], None]) – The identifier of the associated resource.

  • association_type (Optional[str]) – The type of association.

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistantassociation.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_association_mixin_props = wisdom_mixins.CfnAssistantAssociationMixinProps(
    assistant_id="assistantId",
    association=wisdom_mixins.CfnAssistantAssociationPropsMixin.AssociationDataProperty(
        knowledge_base_id="knowledgeBaseId"
    ),
    association_type="associationType",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

assistant_id

The identifier of the Wisdom assistant.

See:

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

association

The identifier of the associated resource.

See:

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

association_type

The type of association.

See:

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

tags

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

See:

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