Classes
Name | Description |
---|---|
FallbackPolicy | Add a fallback policy for fargate capacity provisioning errors. |
Structs
Name | Description |
---|---|
FallbackPolicyProps | Props for FallbackPolicy . |
Add a fallback policy for fargate capacity provisioning errors.
Implements: IConstruct, IDependable Extends: Construct
new FallbackPolicy(scope: Construct, id: string, props: FallbackPolicyProps)
- scope (
Construct
) No description - id (
string
) No description - props (
FallbackPolicyProps
) No description- fallbackService (
aws_ecs.IService
) The fallback service on which to increase the desired count when the primary service can't provision tasks. - primaryService (
aws_ecs.IService
) The primary service on which to watch for capacity provisioning errors.
- fallbackService (
Props for FallbackPolicy
.
Name | Type | Description |
---|---|---|
fallbackService | aws_ecs.IService |
The fallback service on which to increase the desired count when the primary service can't provision tasks. |
primaryService | aws_ecs.IService |
The primary service on which to watch for capacity provisioning errors. |