Interface CfnDataTableRecord.DataTableRecordProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataTableRecord.DataTableRecordProperty.Jsii$Proxy
Enclosing class:
CfnDataTableRecord

@Stability(Stable) public static interface CfnDataTableRecord.DataTableRecordProperty extends software.amazon.jsii.JsiiSerializable
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.connect.*;
 DataTableRecordProperty dataTableRecordProperty = DataTableRecordProperty.builder()
         .values(List.of(ValueProperty.builder()
                 .attributeId("attributeId")
                 .attributeValue("attributeValue")
                 .build()))
         // the properties below are optional
         .primaryValues(List.of(ValueProperty.builder()
                 .attributeId("attributeId")
                 .attributeValue("attributeValue")
                 .build()))
         .build();
 

See Also: