Interface CfnCaseRuleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCaseRuleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.783Z")
@Stability(Stable)
public interface CfnCaseRuleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCaseRulePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cases.*;
Object emptyValue;
CfnCaseRuleMixinProps cfnCaseRuleMixinProps = CfnCaseRuleMixinProps.builder()
.description("description")
.domainId("domainId")
.name("name")
.rule(CaseRuleDetailsProperty.builder()
.hidden(HiddenCaseRuleProperty.builder()
.conditions(List.of(BooleanConditionProperty.builder()
.equalTo(BooleanOperandsProperty.builder()
.operandOne(OperandOneProperty.builder()
.fieldId("fieldId")
.build())
.operandTwo(OperandTwoProperty.builder()
.booleanValue(false)
.doubleValue(123)
.emptyValue(emptyValue)
.stringValue("stringValue")
.build())
.result(false)
.build())
.notEqualTo(BooleanOperandsProperty.builder()
.operandOne(OperandOneProperty.builder()
.fieldId("fieldId")
.build())
.operandTwo(OperandTwoProperty.builder()
.booleanValue(false)
.doubleValue(123)
.emptyValue(emptyValue)
.stringValue("stringValue")
.build())
.result(false)
.build())
.build()))
.defaultValue(false)
.build())
.required(RequiredCaseRuleProperty.builder()
.conditions(List.of(BooleanConditionProperty.builder()
.equalTo(BooleanOperandsProperty.builder()
.operandOne(OperandOneProperty.builder()
.fieldId("fieldId")
.build())
.operandTwo(OperandTwoProperty.builder()
.booleanValue(false)
.doubleValue(123)
.emptyValue(emptyValue)
.stringValue("stringValue")
.build())
.result(false)
.build())
.notEqualTo(BooleanOperandsProperty.builder()
.operandOne(OperandOneProperty.builder()
.fieldId("fieldId")
.build())
.operandTwo(OperandTwoProperty.builder()
.booleanValue(false)
.doubleValue(123)
.emptyValue(emptyValue)
.stringValue("stringValue")
.build())
.result(false)
.build())
.build()))
.defaultValue(false)
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCaseRuleMixinPropsstatic final classAn implementation forCfnCaseRuleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringDescription of a case rule.default StringUnique identifier of a Cases domain.default StringgetName()Name of the case rule.default ObjectgetRule()Represents what rule type should take place, under what conditions.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Description of a case rule.- See Also:
-
getDomainId
Unique identifier of a Cases domain.- See Also:
-
getName
Name of the case rule.- See Also:
-
getRule
Represents what rule type should take place, under what conditions.Returns union: either
IResolvableorCfnCaseRulePropsMixin.CaseRuleDetailsProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnCaseRuleMixinProps.BuilderofCfnCaseRuleMixinProps
-