Interface CfnDataAccessorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAccessorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:29.231Z")
@Stability(Stable)
public interface CfnDataAccessorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDataAccessorPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.*;
AttributeFilterProperty attributeFilterProperty_;
CfnDataAccessorMixinProps cfnDataAccessorMixinProps = CfnDataAccessorMixinProps.builder()
.actionConfigurations(List.of(ActionConfigurationProperty.builder()
.action("action")
.filterConfiguration(ActionFilterConfigurationProperty.builder()
.documentAttributeFilter(AttributeFilterProperty.builder()
.andAllFilters(List.of(attributeFilterProperty_))
.containsAll(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.containsAny(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.equalsTo(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.greaterThan(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.greaterThanOrEquals(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.lessThan(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.lessThanOrEquals(DocumentAttributeProperty.builder()
.name("name")
.value(DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build())
.build())
.notFilter(attributeFilterProperty_)
.orAllFilters(List.of(attributeFilterProperty_))
.build())
.build())
.build()))
.applicationId("applicationId")
.authenticationDetail(DataAccessorAuthenticationDetailProperty.builder()
.authenticationConfiguration(DataAccessorAuthenticationConfigurationProperty.builder()
.idcTrustedTokenIssuerConfiguration(DataAccessorIdcTrustedTokenIssuerConfigurationProperty.builder()
.idcTrustedTokenIssuerArn("idcTrustedTokenIssuerArn")
.build())
.build())
.authenticationType("authenticationType")
.externalIds(List.of("externalIds"))
.build())
.displayName("displayName")
.principal("principal")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataAccessorMixinPropsstatic final classAn implementation forCfnDataAccessorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list of action configurations specifying the allowed actions and any associated filters.default StringThe unique identifier of the Amazon Q Business application.default ObjectThe authentication configuration details for the data accessor.default StringThe friendly name of the data accessor.default StringThe Amazon Resource Name (ARN) of the IAM role for the ISV associated with this data accessor.getTags()The tags to associate with the data accessor.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionConfigurations
A list of action configurations specifying the allowed actions and any associated filters.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataAccessorPropsMixin.ActionConfigurationProperty>- See Also:
-
getApplicationId
The unique identifier of the Amazon Q Business application.- See Also:
-
getAuthenticationDetail
The authentication configuration details for the data accessor.This specifies how the ISV authenticates when accessing data through this data accessor.
Returns union: either
IResolvableorCfnDataAccessorPropsMixin.DataAccessorAuthenticationDetailProperty- See Also:
-
getDisplayName
The friendly name of the data accessor.- See Also:
-
getPrincipal
The Amazon Resource Name (ARN) of the IAM role for the ISV associated with this data accessor.- See Also:
-
getTags
The tags to associate with the data accessor.- See Also:
-
builder
- Returns:
- a
CfnDataAccessorMixinProps.BuilderofCfnDataAccessorMixinProps
-