File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## NOT RELEASED
4
4
5
+ ### Added
6
+
7
+ - AWS api-change: Add ` AUTOSCALING_TERMINATION ` const to ` DeploymentCreator ` .
8
+
5
9
### Changed
6
10
7
11
- Allow passing explicit null values for optional fields of input objects
Original file line number Diff line number Diff line change 5
5
final class DeploymentCreator
6
6
{
7
7
public const AUTOSCALING = 'autoscaling ' ;
8
+ public const AUTOSCALING_TERMINATION = 'autoscalingTermination ' ;
8
9
public const CLOUD_FORMATION = 'CloudFormation ' ;
9
10
public const CLOUD_FORMATION_ROLLBACK = 'CloudFormationRollback ' ;
10
11
public const CODE_DEPLOY = 'CodeDeploy ' ;
@@ -16,6 +17,7 @@ public static function exists(string $value): bool
16
17
{
17
18
return isset ([
18
19
self ::AUTOSCALING => true ,
20
+ self ::AUTOSCALING_TERMINATION => true ,
19
21
self ::CLOUD_FORMATION => true ,
20
22
self ::CLOUD_FORMATION_ROLLBACK => true ,
21
23
self ::CODE_DEPLOY => true ,
You can’t perform that action at this time.
0 commit comments