Interface CfnRetrieverMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRetrieverMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:30.914Z")
@Stability(Stable)
public interface CfnRetrieverMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRetrieverPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.qbusiness.*;
CfnRetrieverMixinProps cfnRetrieverMixinProps = CfnRetrieverMixinProps.builder()
.applicationId("applicationId")
.configuration(RetrieverConfigurationProperty.builder()
.kendraIndexConfiguration(KendraIndexConfigurationProperty.builder()
.indexId("indexId")
.build())
.nativeIndexConfiguration(NativeIndexConfigurationProperty.builder()
.indexId("indexId")
.build())
.build())
.displayName("displayName")
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRetrieverMixinPropsstatic final classAn implementation forCfnRetrieverMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe identifier of the Amazon Q Business application using the retriever.default ObjectProvides information on how the retriever used for your Amazon Q Business application is configured.default StringThe name of your retriever.default StringThe ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret.getTags()A list of key-value pairs that identify or categorize the retriever.default StringgetType()The type of your retriever.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The identifier of the Amazon Q Business application using the retriever.- See Also:
-
getConfiguration
Provides information on how the retriever used for your Amazon Q Business application is configured.Returns union: either
IResolvableorCfnRetrieverPropsMixin.RetrieverConfigurationProperty- See Also:
-
getDisplayName
The name of your retriever.- See Also:
-
getRoleArn
The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret.- See Also:
-
getTags
A list of key-value pairs that identify or categorize the retriever.You can also use tags to help control access to the retriever. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
- See Also:
-
getType
The type of your retriever.- See Also:
-
builder
- Returns:
- a
CfnRetrieverMixinProps.BuilderofCfnRetrieverMixinProps
-