Interface CfnDataAccessorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAccessorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:17.286Z")
@Stability(Stable)
public interface CfnDataAccessorProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataAccessor.
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.qbusiness.*;
AttributeFilterProperty attributeFilterProperty_;
CfnDataAccessorProps cfnDataAccessorProps = CfnDataAccessorProps.builder()
.actionConfigurations(List.of(ActionConfigurationProperty.builder()
.action("action")
// the properties below are optional
.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")
.displayName("displayName")
.principal("principal")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataAccessorPropsstatic final classAn implementation forCfnDataAccessorProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDataAccessorProps.Builderbuilder()A list of action configurations specifying the allowed actions and any associated filters.The unique identifier of the Amazon Q Business application.The friendly name of the data accessor.The 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.- See Also:
-
getApplicationId
The unique identifier of the Amazon Q Business application.- 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
CfnDataAccessorProps.BuilderofCfnDataAccessorProps
-