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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataTableRecord.DataTableRecordPropertystatic final classAn implementation forCfnDataTableRecord.DataTableRecordProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataTableRecord.ValueProperty>Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataTableRecord.ValueProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValues
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataTableRecord.ValueProperty>- See Also:
-
getPrimaryValues
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataTableRecord.ValueProperty>- See Also:
-
builder
-