interface FieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnRule.FieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnRule_FieldProperty |
Java | software.amazon.awscdk.services.connect.CfnRule.FieldProperty |
Python | aws_cdk.aws_connect.CfnRule.FieldProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnRule » FieldProperty |
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-field.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
declare const emptyValue: any;
const fieldProperty: connect.CfnRule.FieldProperty = {
id: 'id',
value: {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| value | IResolvable | Field | Object for case field values. |
id
Type:
string
value
Type:
IResolvable | Field
Object for case field values.

.NET
Go
Java
Python
TypeScript