- Newest
- Most votes
- Most comments
The new line delimiter configuration is a type under the Processing Configuration within your Cloud Formation Template for your S3 Destination.
For JSON this will look like:
{ "Type": "AppendDelimiterToRecord", "Parameters": [ { "ParameterName": "Delimiter", "ParameterValue": "\n" } ]
For the YAML this will look like:
- Type: AppendDelimiterToRecord Parameters: - ParameterName: Delimiter ParameterValue: "\n"
For a more detailed example of how this should look from a higher level within your template, please refer to the documentation [1] below:
[1] AWS::KinesisFirehose::DeliveryStream - Specify an Amazon S3 Destination for the Delivery Stream - https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#aws-resource-kinesisfirehose-deliverystream--examples--Specify_an_Amazon_S3_Destination_for_the_Delivery_Stream
For a list of all Processor type configurations, please refer to the documentation [2] below:
Relevant content
- asked 3 years ago
- Accepted Answerasked 5 months ago
- asked 2 months ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
Will this incur additional pricing if I try to do it without dynamic partitioning?