File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff 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
1414abstract 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 */
3939export 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}
Original file line number Diff line number Diff 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
1313abstract 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 */
6363export 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}
You can’t perform that action at this time.
0 commit comments