Show / Hide Table of Contents

Class CfnTypePropsMixin.FieldProperty

The name and data type of an individual field in a user-defined type (UDT).

Inheritance
object
CfnTypePropsMixin.FieldProperty
Implements
CfnTypePropsMixin.IFieldProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Cassandra.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTypePropsMixin.FieldProperty : CfnTypePropsMixin.IFieldProperty
Syntax (vb)
Public Class CfnTypePropsMixin.FieldProperty Implements CfnTypePropsMixin.IFieldProperty
Remarks

In addition to a Cassandra data type, you can also use another UDT. When you nest another UDT or collection data type, you have to declare them with the FROZEN keyword.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-type-field.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.Mixins.Preview.AWS.Cassandra.Mixins;

             var fieldProperty = new FieldProperty {
                 FieldName = "fieldName",
                 FieldType = "fieldType"
             };

Synopsis

Constructors

FieldProperty()

The name and data type of an individual field in a user-defined type (UDT).

Properties

FieldName

The name of the field.

FieldType

The data type of the field.

Constructors

FieldProperty()

The name and data type of an individual field in a user-defined type (UDT).

public FieldProperty()
Remarks

In addition to a Cassandra data type, you can also use another UDT. When you nest another UDT or collection data type, you have to declare them with the FROZEN keyword.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-type-field.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.Mixins.Preview.AWS.Cassandra.Mixins;

             var fieldProperty = new FieldProperty {
                 FieldName = "fieldName",
                 FieldType = "fieldType"
             };

Properties

FieldName

The name of the field.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-type-field.html#cfn-cassandra-type-field-fieldname

FieldType

The data type of the field.

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

string

Remarks

This can be any Cassandra data type or another user-defined type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-type-field.html#cfn-cassandra-type-field-fieldtype

Implements

CfnTypePropsMixin.IFieldProperty
Back to top Generated by DocFX