Show / Hide Table of Contents

Class CfnApplicationV2.RecordFormatProperty

For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

Inheritance
object
CfnApplicationV2.RecordFormatProperty
Implements
CfnApplicationV2.IRecordFormatProperty
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.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationV2.RecordFormatProperty : CfnApplicationV2.IRecordFormatProperty
Syntax (vb)
Public Class CfnApplicationV2.RecordFormatProperty Implements CfnApplicationV2.IRecordFormatProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-recordformat.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.KinesisAnalytics;

             var recordFormatProperty = new RecordFormatProperty {
                 RecordFormatType = "recordFormatType",

                 // the properties below are optional
                 MappingParameters = new MappingParametersProperty {
                     CsvMappingParameters = new CSVMappingParametersProperty {
                         RecordColumnDelimiter = "recordColumnDelimiter",
                         RecordRowDelimiter = "recordRowDelimiter"
                     },
                     JsonMappingParameters = new JSONMappingParametersProperty {
                         RecordRowPath = "recordRowPath"
                     }
                 }
             };

Synopsis

Constructors

RecordFormatProperty()

For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

Properties

MappingParameters

When you configure application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

RecordFormatType

The type of record format.

Constructors

RecordFormatProperty()

For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

public RecordFormatProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-recordformat.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.KinesisAnalytics;

             var recordFormatProperty = new RecordFormatProperty {
                 RecordFormatType = "recordFormatType",

                 // the properties below are optional
                 MappingParameters = new MappingParametersProperty {
                     CsvMappingParameters = new CSVMappingParametersProperty {
                         RecordColumnDelimiter = "recordColumnDelimiter",
                         RecordRowDelimiter = "recordRowDelimiter"
                     },
                     JsonMappingParameters = new JSONMappingParametersProperty {
                         RecordRowPath = "recordRowPath"
                     }
                 }
             };

Properties

MappingParameters

When you configure application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-recordformat.html#cfn-kinesisanalyticsv2-application-recordformat-mappingparameters

RecordFormatType

The type of record format.

public string RecordFormatType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-recordformat.html#cfn-kinesisanalyticsv2-application-recordformat-recordformattype

Implements

CfnApplicationV2.IRecordFormatProperty
Back to top Generated by DocFX