Skip to content

Latest commit

 

History

History
56 lines (28 loc) · 1.87 KB

API.md

File metadata and controls

56 lines (28 loc) · 1.87 KB

API Reference

Classes

Name Description
FallbackPolicy Add a fallback policy for fargate capacity provisioning errors.

Structs

Name Description
FallbackPolicyProps Props for FallbackPolicy.

class FallbackPolicy

Add a fallback policy for fargate capacity provisioning errors.

Implements: IConstruct, IDependable Extends: Construct

Initializer

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.

struct FallbackPolicyProps

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.