Class CfnTaskTemplate.DefaultFieldValueProperty
Describes a default field and its corresponding value.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTaskTemplate.DefaultFieldValueProperty : CfnTaskTemplate.IDefaultFieldValueProperty
Syntax (vb)
Public Class CfnTaskTemplate.DefaultFieldValueProperty Implements CfnTaskTemplate.IDefaultFieldValueProperty
Remarks
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 defaultFieldValueProperty = new DefaultFieldValueProperty {
DefaultValue = "defaultValue",
Id = new FieldIdentifierProperty {
Name = "name"
}
};
Synopsis
Constructors
| DefaultFieldValueProperty() | Describes a default field and its corresponding value. |
Properties
| DefaultValue | Default value for the field. |
| Id | Identifier of a field. |
Constructors
DefaultFieldValueProperty()
Describes a default field and its corresponding value.
public DefaultFieldValueProperty()
Remarks
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 defaultFieldValueProperty = new DefaultFieldValueProperty {
DefaultValue = "defaultValue",
Id = new FieldIdentifierProperty {
Name = "name"
}
};
Properties
DefaultValue
Default value for the field.
public string DefaultValue { get; set; }
Property Value
Remarks
Id
Identifier of a field.
public object Id { get; set; }