CfnAssistantAssociationMixinProps
- class aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAssistantAssociationMixinProps(*, assistant_id=None, association=None, association_type=None, tags=None)
Bases:
objectProperties 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:
- 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.
- association
The identifier of the associated resource.
- association_type
The type of association.
- tags
The tags used to organize, track, or control access for this resource.