Class: Aws::Synthetics::Types::RetryConfigInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-synthetics/types.rb

Overview

This structure contains information about the canary’s retry configuration.

<note markdown=“1”> The default account level concurrent execution limit from Lambda is

  1. When you have more than 1000 canaries, it’s possible there are

more than 1000 Lambda invocations due to retries and the console might hang. For more information on the Lambda execution limit, see [Understanding Lambda function scaling].

</note>

<note markdown=“1”> For canary with ‘MaxRetries = 2`, you need to set the `CanaryRunConfigInput.TimeoutInSeconds` to less than 600 seconds to avoid validation errors.

</note>

[1]: docs.aws.amazon.com/lambda/latest/dg/lambda-concurrency.html#:~:text=As%20your%20functions%20receive%20more,functions%20in%20an%20AWS%20Region

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_retriesInteger

The maximum number of retries. The value must be less than or equal to 2.

Returns:

  • (Integer)


1945
1946
1947
1948
1949
# File 'lib/aws-sdk-synthetics/types.rb', line 1945

class RetryConfigInput < Struct.new(
  :max_retries)
  SENSITIVE = []
  include Aws::Structure
end