interface RetryConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Synthetics.CfnCanaryPropsMixin.RetryConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssynthetics#CfnCanaryPropsMixin_RetryConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.synthetics.CfnCanaryPropsMixin.RetryConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_synthetics.CfnCanaryPropsMixin.RetryConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_synthetics » CfnCanaryPropsMixin » RetryConfigProperty |
The canary's retry configuration information.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_synthetics as synthetics } from '@aws-cdk/cfn-property-mixins';
const retryConfigProperty: synthetics.CfnCanaryPropsMixin.RetryConfigProperty = {
maxRetries: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum number of retries. |
maxRetries?
Type:
number
(optional)
The maximum number of retries.
The value must be less than or equal to two.

.NET
Go
Java
Python
TypeScript