@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.826Z") @Stability(value=Stable) public class CfnAssistantAssociation extends CfnResource implements IInspectable
Specifies an association between an Amazon Connect Wisdom assistant and another resource. Currently, the only supported association is with a knowledge base. An assistant can have only a single association.
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.*;
CfnAssistantAssociation cfnAssistantAssociation = CfnAssistantAssociation.Builder.create(this, "MyCfnAssistantAssociation")
.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 | Class and Description |
|---|---|
static interface |
CfnAssistantAssociation.AssociationDataProperty
A union type that currently has a single argument, which is the knowledge base ID.
|
static class |
CfnAssistantAssociation.Builder
A fluent builder for
CfnAssistantAssociation. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnAssistantAssociation(software.constructs.Construct scope,
String id,
CfnAssistantAssociationProps props)
Create a new `AWS::Wisdom::AssistantAssociation`.
|
protected |
CfnAssistantAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnAssistantAssociation(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAssistantId()
The identifier of the Wisdom assistant.
|
Object |
getAssociation()
The identifier of the associated resource.
|
String |
getAssociationType()
The type of association.
|
String |
getAttrAssistantArn()
The Amazon Resource Name (ARN) of the Wisdom assistant.
|
String |
getAttrAssistantAssociationArn()
The Amazon Resource Name (ARN) of the assistant association.
|
String |
getAttrAssistantAssociationId()
The ID of the association.
|
protected Map<String,Object> |
getCfnProperties() |
TagManager |
getTags()
The tags used to organize, track, or control access for this resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setAssistantId(String value)
The identifier of the Wisdom assistant.
|
void |
setAssociation(CfnAssistantAssociation.AssociationDataProperty value)
The identifier of the associated resource.
|
void |
setAssociation(IResolvable value)
The identifier of the associated resource.
|
void |
setAssociationType(String value)
The type of association.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnAssistantAssociation(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnAssistantAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnAssistantAssociation(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnAssistantAssociationProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrAssistantArn()
@Stability(value=Stable) @NotNull public String getAttrAssistantAssociationArn()
@Stability(value=Stable) @NotNull public String getAttrAssistantAssociationId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @NotNull public String getAssistantId()
@Stability(value=Stable)
public void setAssistantId(@NotNull
String value)
@Stability(value=Stable) @NotNull public Object getAssociation()
@Stability(value=Stable)
public void setAssociation(@NotNull
CfnAssistantAssociation.AssociationDataProperty value)
@Stability(value=Stable)
public void setAssociation(@NotNull
IResolvable value)
@Stability(value=Stable) @NotNull public String getAssociationType()
@Stability(value=Stable)
public void setAssociationType(@NotNull
String value)
Copyright © 2022. All rights reserved.