Show / Hide Table of Contents

Class CfnField.FieldAttributesProperty

Union of field attributes.

Inheritance
object
CfnField.FieldAttributesProperty
Implements
CfnField.IFieldAttributesProperty
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.Cases
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnField.FieldAttributesProperty : CfnField.IFieldAttributesProperty
Syntax (vb)
Public Class CfnField.FieldAttributesProperty Implements CfnField.IFieldAttributesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-field-fieldattributes.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-field-fieldattributes.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.Cases;

             var fieldAttributesProperty = new FieldAttributesProperty {
                 Text = new TextAttributesProperty {
                     IsMultiline = false
                 }
             };

Properties

Text

Field attributes for Text field type.

public object? Text { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-field-fieldattributes.html#cfn-cases-field-fieldattributes-text

Type union: either IResolvable or CfnField.ITextAttributesProperty

Implements

CfnField.IFieldAttributesProperty
Back to top Generated by DocFX