package awskinesisanalytics // Describes the data format when records are written to the destination. // // For more information, see [Configuring Application Output](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html) . // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // destinationSchemaProperty := &DestinationSchemaProperty{ // RecordFormatType: jsii.String("recordFormatType"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html // type CfnApplicationOutput_DestinationSchemaProperty struct { // Specifies the format of the records on the output stream. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype // RecordFormatType *string `field:"optional" json:"recordFormatType" yaml:"recordFormatType"` }