Module: AWSCDK::SNS::BackoffFunction
- Defined in:
- sns/backoff_function.rb
Overview
Algorithms which can be used by SNS to calculate the delays associated with all of the retry attempts between the first and last retries in the backoff phase.
Constant Summary collapse
- ARITHMETIC =
Deprecated.Note:
Default:
Arithmetic, see https://docs.aws.amazon.com/images/sns/latest/dg/images/backoff-graph.png this image for how this function compares to others.
Jsii::Enum.new("aws-cdk-lib.aws_sns.BackoffFunction", "ARITHMETIC")
- EXPONENTIAL =
Deprecated.Note:
Default:
Exponential, see https://docs.aws.amazon.com/images/sns/latest/dg/images/backoff-graph.png this image for how this function compares to others.
Jsii::Enum.new("aws-cdk-lib.aws_sns.BackoffFunction", "EXPONENTIAL")
- GEOMETRIC =
Deprecated.Note:
Default:
Geometric, see https://docs.aws.amazon.com/images/sns/latest/dg/images/backoff-graph.png this image for how this function compares to others.
Jsii::Enum.new("aws-cdk-lib.aws_sns.BackoffFunction", "GEOMETRIC")
- LINEAR =
Deprecated.Note:
Default:
Linear, see https://docs.aws.amazon.com/images/sns/latest/dg/images/backoff-graph.png this image for how this function compares to others.
Jsii::Enum.new("aws-cdk-lib.aws_sns.BackoffFunction", "LINEAR")