GetRouteTableAssociation constructor

const GetRouteTableAssociation({
  1. required Input<String> gatewayId,
  2. required Input<bool> main,
  3. required Input<String> routeTableAssociationId,
  4. required Input<String> routeTableId,
  5. required Input<String> subnetId,
})

Creates a new GetRouteTableAssociation. gatewayId ID of an Internet Gateway or Virtual Private Gateway which is connected to the Route Table (not exported if not passed as a parameter). main Whether the association is due to the main route table. routeTableAssociationId Association ID. routeTableId ID of the specific Route Table to retrieve. subnetId ID of a Subnet which is connected to the Route Table (not exported if not passed as a parameter).

Implementation

const GetRouteTableAssociation({
  required this.gatewayId,
  required this.main,
  required this.routeTableAssociationId,
  required this.routeTableId,
  required this.subnetId,
});