interface CfnCaseRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnCaseRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnCaseRuleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnCaseRuleMixinProps |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnCaseRuleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnCaseRuleMixinProps |
Properties for CfnCaseRulePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
declare const emptyValue: any;
const cfnCaseRuleMixinProps: cases_mixins.CfnCaseRuleMixinProps = {
description: 'description',
domainId: 'domainId',
name: 'name',
rule: {
hidden: {
conditions: [{
equalTo: {
operandOne: {
fieldId: 'fieldId',
},
operandTwo: {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
},
result: false,
},
notEqualTo: {
operandOne: {
fieldId: 'fieldId',
},
operandTwo: {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
},
result: false,
},
}],
defaultValue: false,
},
required: {
conditions: [{
equalTo: {
operandOne: {
fieldId: 'fieldId',
},
operandTwo: {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
},
result: false,
},
notEqualTo: {
operandOne: {
fieldId: 'fieldId',
},
operandTwo: {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
},
result: false,
},
}],
defaultValue: false,
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Description of a case rule. |
| domain | string | Unique identifier of a Cases domain. |
| name? | string | Name of the case rule. |
| rule? | IResolvable | Case | Represents what rule type should take place, under what conditions. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
Description of a case rule.
domainId?
Type:
string
(optional)
Unique identifier of a Cases domain.
name?
Type:
string
(optional)
Name of the case rule.
rule?
Type:
IResolvable | Case
(optional)
Represents what rule type should take place, under what conditions.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript