Show / Hide Table of Contents

Class CfnDeliveryStream.RedshiftRetryOptionsProperty

Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift.

Inheritance
System.Object
CfnDeliveryStream.RedshiftRetryOptionsProperty
Implements
CfnDeliveryStream.IRedshiftRetryOptionsProperty
Namespace: Amazon.CDK.AWS.KinesisFirehose
Assembly: Amazon.CDK.AWS.KinesisFirehose.dll
Syntax (csharp)
public class RedshiftRetryOptionsProperty : Object, CfnDeliveryStream.IRedshiftRetryOptionsProperty
Syntax (vb)
Public Class RedshiftRetryOptionsProperty
    Inherits Object
    Implements CfnDeliveryStream.IRedshiftRetryOptionsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.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.KinesisFirehose;

var redshiftRetryOptionsProperty = new RedshiftRetryOptionsProperty {
    DurationInSeconds = 123
};

Synopsis

Constructors

RedshiftRetryOptionsProperty()

Properties

DurationInSeconds

The length of time during which Kinesis Data Firehose retries delivery after a failure, starting from the initial request and including the first attempt.

Constructors

RedshiftRetryOptionsProperty()

public RedshiftRetryOptionsProperty()

Properties

DurationInSeconds

The length of time during which Kinesis Data Firehose retries delivery after a failure, starting from the initial request and including the first attempt.

public Nullable<double> DurationInSeconds { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

The default value is 3600 seconds (60 minutes). Kinesis Data Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftretryoptions.html#cfn-kinesisfirehose-deliverystream-redshiftretryoptions-durationinseconds

Implements

CfnDeliveryStream.IRedshiftRetryOptionsProperty
Back to top Generated by DocFX