@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.827Z") @Stability(value=Stable) public interface CfnAssistantAssociationProps extends software.amazon.jsii.JsiiSerializable
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() |
String |
getAssistantId()
The identifier of the Wisdom assistant.
|
Object |
getAssociation()
The identifier of the associated resource.
|
String |
getAssociationType()
The type of association.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
@Stability(value=Stable) @NotNull String getAssistantId()
@Stability(value=Stable) @NotNull Object getAssociation()
@Stability(value=Stable) @NotNull String getAssociationType()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnAssistantAssociationProps.Builder builder()
Copyright © 2022. All rights reserved.