Skip to content

Commit 2097216

Browse files
committed
ci: rename ids to camelCase
1 parent eada958 commit 2097216

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/transit-gateway-route-table-association.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ export interface ITransitGatewayRouteTableAssociation extends core.IResource {
88
* The ID of the transit gateway route table association
99
* @attribute
1010
*/
11-
readonly TransitGatewayRouteTableAssociationId: string;
11+
readonly transitGatewayRouteTableAssociationId: string;
1212
}
1313

1414
abstract class TransitGatewayRouteTableAssociationBase extends core.Resource implements ITransitGatewayRouteTableAssociation {
15-
public abstract readonly TransitGatewayRouteTableAssociationId: string;
15+
public abstract readonly transitGatewayRouteTableAssociationId: string;
1616
}
1717

1818
/**
@@ -37,7 +37,7 @@ export interface TransitGatewayRouteTableAssociationProps {
3737
* @resource AWS::EC2::TransitGatewayRouteTableAssociation
3838
*/
3939
export class TransitGatewayRouteTableAssociation extends TransitGatewayRouteTableAssociationBase {
40-
public readonly TransitGatewayRouteTableAssociationId: string;
40+
public readonly transitGatewayRouteTableAssociationId: string;
4141

4242
constructor(scope: core.Construct, id: string, props: TransitGatewayRouteTableAssociationProps) {
4343
super(scope, id);
@@ -48,6 +48,6 @@ export class TransitGatewayRouteTableAssociation extends TransitGatewayRouteTabl
4848
transitGatewayRouteTableId: props.transitGatewayRouteTable.transitGatewayRouteTableId,
4949
});
5050

51-
this.TransitGatewayRouteTableAssociationId = resource.ref;
51+
this.transitGatewayRouteTableAssociationId = resource.ref;
5252
}
5353
}

src/transit-gateway-route.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ export interface ITransitGatewayRoute extends core.IResource {
77
/**
88
* The ID of the transit gateway route
99
*/
10-
readonly TransitGatewayRouteId: string;
10+
readonly transitGatewayRouteId: string;
1111
}
1212

1313
abstract class TransitGatewayRouteBase extends core.Resource implements ITransitGatewayRoute {
14-
public abstract readonly TransitGatewayRouteId: string;
14+
public abstract readonly transitGatewayRouteId: string;
1515
}
1616

1717
/**
@@ -61,7 +61,7 @@ export interface TransitGatewayRouteProps {
6161
* @resource AWS::EC2::TransitGatewayRoute
6262
*/
6363
export class TransitGatewayRoute extends TransitGatewayRouteBase {
64-
public readonly TransitGatewayRouteId: string;
64+
public readonly transitGatewayRouteId: string;
6565

6666
constructor(scope: core.Construct, id: string, props: TransitGatewayRouteProps) {
6767
super(scope, id);
@@ -81,6 +81,6 @@ export class TransitGatewayRoute extends TransitGatewayRouteBase {
8181
transitGatewayRouteTableId: props.transitGatewayRouteTable?.transitGatewayRouteTableId || '', //TODO Make Different Interface between internal representation and "app" level
8282
});
8383

84-
this.TransitGatewayRouteId = resource.ref;
84+
this.transitGatewayRouteId = resource.ref;
8585
}
8686
}

0 commit comments

Comments
 (0)