Interface CfnDataAccessor.DocumentAttributeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAccessor.DocumentAttributeProperty.Jsii$Proxy
- Enclosing class:
CfnDataAccessor
@Stability(Stable)
public static interface CfnDataAccessor.DocumentAttributeProperty
extends software.amazon.jsii.JsiiSerializable
A document attribute or metadata field.
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.*; DocumentAttributeProperty documentAttributeProperty = DocumentAttributeProperty.builder() .name("name") .value(DocumentAttributeValueProperty.builder() .dateValue("dateValue") .longValue(123) .stringListValue(List.of("stringListValue")) .stringValue("stringValue") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataAccessor.DocumentAttributeProperty
static final class
An implementation forCfnDataAccessor.DocumentAttributeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The identifier for the attribute.- See Also:
-
getValue
The value of the attribute.- See Also:
-
builder
-