Class CfnTypePropsMixin.FieldProperty
The name and data type of an individual field in a user-defined type (UDT).
Implements
Inherited Members
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.
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.
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
Remarks
FieldType
The data type of the field.
public string? FieldType { get; set; }
Property Value
Remarks
This can be any Cassandra data type or another user-defined type.