Interface CfnRule.UpdateCaseActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.UpdateCaseActionProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.UpdateCaseActionProperty
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.*;
Object emptyValue;
UpdateCaseActionProperty updateCaseActionProperty = UpdateCaseActionProperty.builder()
.fields(List.of(FieldProperty.builder()
.id("id")
.value(FieldValueProperty.builder()
.booleanValue(false)
.doubleValue(123)
.emptyValue(emptyValue)
.stringValue("stringValue")
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.UpdateCaseActionPropertystatic final classAn implementation forCfnRule.UpdateCaseActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFields
An array of case fields.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRule.FieldProperty>- See Also:
-
builder
-