Show / Hide Table of Contents

Class CfnTaskTemplate.DefaultFieldValueProperty

Describes a default field and its corresponding value.

Inheritance
object
CfnTaskTemplate.DefaultFieldValueProperty
Implements
CfnTaskTemplate.IDefaultFieldValueProperty
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 CfnTaskTemplate.DefaultFieldValueProperty : CfnTaskTemplate.IDefaultFieldValueProperty
Syntax (vb)
Public Class CfnTaskTemplate.DefaultFieldValueProperty Implements CfnTaskTemplate.IDefaultFieldValueProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-defaultfieldvalue.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-defaultfieldvalue.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 defaultFieldValueProperty = new DefaultFieldValueProperty {
                 DefaultValue = "defaultValue",
                 Id = new FieldIdentifierProperty {
                     Name = "name"
                 }
             };

Properties

DefaultValue

Default value for the field.

public string DefaultValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-defaultfieldvalue.html#cfn-connect-tasktemplate-defaultfieldvalue-defaultvalue

Id

Identifier of a field.

public object Id { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-defaultfieldvalue.html#cfn-connect-tasktemplate-defaultfieldvalue-id

Type union: either IResolvable or CfnTaskTemplate.IFieldIdentifierProperty

Implements

CfnTaskTemplate.IDefaultFieldValueProperty
Back to top Generated by DocFX