Show / Hide Table of Contents

Class CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty

An item enablement configuration.

Inheritance
object
CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty
Implements
CfnEvaluationForm.IEvaluationFormItemEnablementConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty : CfnEvaluationForm.IEvaluationFormItemEnablementConfigurationProperty
Syntax (vb)
Public Class CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty Implements CfnEvaluationForm.IEvaluationFormItemEnablementConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Connect;

             var evaluationFormItemEnablementConfigurationProperty = new EvaluationFormItemEnablementConfigurationProperty {
                 Action = "action",
                 Condition = new EvaluationFormItemEnablementConditionProperty {
                     Operands = new [] { new EvaluationFormItemEnablementConditionOperandProperty {
                         Expression = new EvaluationFormItemEnablementExpressionProperty {
                             Comparator = "comparator",
                             Source = new EvaluationFormItemEnablementSourceProperty {
                                 Type = "type",

                                 // the properties below are optional
                                 RefId = "refId"
                             },
                             Values = new [] { new EvaluationFormItemEnablementSourceValueProperty {
                                 RefId = "refId",
                                 Type = "type"
                             } }
                         }
                     } },

                     // the properties below are optional
                     Operator = "operator"
                 },

                 // the properties below are optional
                 DefaultAction = "defaultAction"
             };

Synopsis

Constructors

EvaluationFormItemEnablementConfigurationProperty()

An item enablement configuration.

Properties

Action

An enablement action that if condition is satisfied.

Condition

A condition for item enablement configuration.

DefaultAction

An enablement action that if condition is not satisfied.

Constructors

EvaluationFormItemEnablementConfigurationProperty()

An item enablement configuration.

public EvaluationFormItemEnablementConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Connect;

             var evaluationFormItemEnablementConfigurationProperty = new EvaluationFormItemEnablementConfigurationProperty {
                 Action = "action",
                 Condition = new EvaluationFormItemEnablementConditionProperty {
                     Operands = new [] { new EvaluationFormItemEnablementConditionOperandProperty {
                         Expression = new EvaluationFormItemEnablementExpressionProperty {
                             Comparator = "comparator",
                             Source = new EvaluationFormItemEnablementSourceProperty {
                                 Type = "type",

                                 // the properties below are optional
                                 RefId = "refId"
                             },
                             Values = new [] { new EvaluationFormItemEnablementSourceValueProperty {
                                 RefId = "refId",
                                 Type = "type"
                             } }
                         }
                     } },

                     // the properties below are optional
                     Operator = "operator"
                 },

                 // the properties below are optional
                 DefaultAction = "defaultAction"
             };

Properties

Action

An enablement action that if condition is satisfied.

public string Action { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html#cfn-connect-evaluationform-evaluationformitemenablementconfiguration-action

Condition

A condition for item enablement configuration.

public object Condition { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html#cfn-connect-evaluationform-evaluationformitemenablementconfiguration-condition

Type union: either IResolvable or CfnEvaluationForm.IEvaluationFormItemEnablementConditionProperty

DefaultAction

An enablement action that if condition is not satisfied.

public string? DefaultAction { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html#cfn-connect-evaluationform-evaluationformitemenablementconfiguration-defaultaction

Implements

CfnEvaluationForm.IEvaluationFormItemEnablementConfigurationProperty
Back to top Generated by DocFX