interface FieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnRulePropsMixin.FieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnRulePropsMixin_FieldProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnRulePropsMixin.FieldProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnRulePropsMixin.FieldProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnRulePropsMixin » 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/cfn-property-mixins';
declare const emptyValue: any;
const fieldProperty: connect.CfnRulePropsMixin.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
(optional)
value?
Type:
IResolvable | Field
(optional)
Object for case field values.

.NET
Go
Java
Python
TypeScript