@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:51.079Z")
public interface CfnAssistantAssociationProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.wisdom.*; CfnAssistantAssociationProps cfnAssistantAssociationProps = CfnAssistantAssociationProps.builder() .assistantId("assistantId") .association(AssociationDataProperty.builder() .knowledgeBaseId("knowledgeBaseId") .build()) .associationType("associationType") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAssistantAssociationProps.Builder
A builder for
CfnAssistantAssociationProps |
static class |
CfnAssistantAssociationProps.Jsii$Proxy
An implementation for
CfnAssistantAssociationProps |
Modifier and Type | Method and Description |
---|---|
static CfnAssistantAssociationProps.Builder |
builder() |
java.lang.String |
getAssistantId()
The identifier of the Wisdom assistant.
|
java.lang.Object |
getAssociation()
The identifier of the associated resource.
|
java.lang.String |
getAssociationType()
The type of association.
|
default java.util.List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
java.lang.String getAssistantId()
java.lang.Object getAssociation()
java.lang.String getAssociationType()
default java.util.List<CfnTag> getTags()
static CfnAssistantAssociationProps.Builder builder()