Class CfnField.FieldAttributesProperty
Union of field attributes.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Cases
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnField.FieldAttributesProperty : CfnField.IFieldAttributesProperty
Syntax (vb)
Public Class CfnField.FieldAttributesProperty Implements CfnField.IFieldAttributesProperty
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.Cases;
var fieldAttributesProperty = new FieldAttributesProperty {
Text = new TextAttributesProperty {
IsMultiline = false
}
};
Synopsis
Constructors
| FieldAttributesProperty() | Union of field attributes. |
Properties
| Text | Field attributes for Text field type. |
Constructors
FieldAttributesProperty()
Union of field attributes.
public FieldAttributesProperty()
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.Cases;
var fieldAttributesProperty = new FieldAttributesProperty {
Text = new TextAttributesProperty {
IsMultiline = false
}
};
Properties
Text
Field attributes for Text field type.
public object? Text { get; set; }