Skip to content

Commit 34e92cd

Browse files
committed
fix: rename property ecsDeploymentConfig to deploymentConfig
1 parent 09a312c commit 34e92cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cdk-blue-green-container-deployment/src/ecs-deployment-configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Aws, Construct } from '@aws-cdk/core';
55
type EcsDeploymentConfigurationProps = Omit<CfnDeploymentConfigProps, 'computePlatform'>;
66

77
export class EcsDeploymentConfiguration extends Construct {
8-
readonly ecsDeploymentConfig: IEcsDeploymentConfig;
8+
readonly deploymentConfig: IEcsDeploymentConfig;
99

1010
constructor(scope: Construct, id: string, props: EcsDeploymentConfigurationProps) {
1111
super(scope, id);
@@ -17,7 +17,7 @@ export class EcsDeploymentConfiguration extends Construct {
1717

1818
const deployConfigurationName = props.deploymentConfigName ?? cfnDeploymentConfig.ref;
1919

20-
this.ecsDeploymentConfig = {
20+
this.deploymentConfig = {
2121
deploymentConfigName: deployConfigurationName,
2222
deploymentConfigArn: this.arnForDeploymentConfig(deployConfigurationName),
2323
};

0 commit comments

Comments
 (0)