CfnAssistantAssociationProps
- class aws_cdk.aws_wisdom.CfnAssistantAssociationProps(*, assistant_id, association, association_type, tags=None)
Bases:
object
Properties for defining a
CfnAssistantAssociation
.- Parameters:
assistant_id (
str
) – The identifier of the Wisdom assistant.association (
Union
[IResolvable
,AssociationDataProperty
,Dict
[str
,Any
]]) – The identifier of the associated resource.association_type (
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.
- Link:
- 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_association_props = wisdom.CfnAssistantAssociationProps( assistant_id="assistantId", association=wisdom.CfnAssistantAssociation.AssociationDataProperty( knowledge_base_id="knowledgeBaseId" ), association_type="associationType", # the properties below are optional 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.