Class: Aws::Synthetics::Types::RetryConfigInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::RetryConfigInput
- 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
-
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>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_retries ⇒ Integer
The maximum number of retries.
Instance Attribute Details
#max_retries ⇒ Integer
The maximum number of retries. The value must be less than or equal to 2.
1721 1722 1723 1724 1725 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1721 class RetryConfigInput < Struct.new( :max_retries) SENSITIVE = [] include Aws::Structure end |