Skip to content

RouteTablesProps

Properties for defining a RouteTables.

See https://www.alibabacloud.com/help/ros/developer-reference/datasource-vpc-routetables

Initializer

import { datasource } from '@alicloud/ros-cdk-vpc'
const routeTablesProps: datasource.RouteTablesProps = { ... }

Properties

Name Type Description
refreshOptions string | @alicloud/ros-cdk-core.IResolvable Property refreshOptions: The refresh strategy for the datasource resource when the stack is updated.
resourceGroupId string | @alicloud/ros-cdk-core.IResolvable Property resourceGroupId: The ID of the resource group to which the route table belongs.
routerId string | @alicloud/ros-cdk-core.IResolvable Property routerId: The ID of the VRouter to which the route table belongs.
routerType string | @alicloud/ros-cdk-core.IResolvable Property routerType: The type of the VRouter to which the route table belongs.
routeTableId string | @alicloud/ros-cdk-core.IResolvable Property routeTableId: The ID of the route table.
routeTableName string | @alicloud/ros-cdk-core.IResolvable Property routeTableName: The name of the route table.
vpcId string | @alicloud/ros-cdk-core.IResolvable Property vpcId: The ID of the VRouter to which the route table belongs.

refreshOptionsOptional

public readonly refreshOptions: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property refreshOptions: The refresh strategy for the datasource resource when the stack is updated.

Valid values: - Never: Never refresh the datasource resource when the stack is updated. - Always: Always refresh the datasource resource when the stack is updated. Default is Never.


resourceGroupIdOptional

public readonly resourceGroupId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property resourceGroupId: The ID of the resource group to which the route table belongs.


routerIdOptional

public readonly routerId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property routerId: The ID of the VRouter to which the route table belongs.


routerTypeOptional

public readonly routerType: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property routerType: The type of the VRouter to which the route table belongs.

Valid values: VRouter (default): VRouter. VBR: Virtual Border Router (VBR).


routeTableIdOptional

public readonly routeTableId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property routeTableId: The ID of the route table.


routeTableNameOptional

public readonly routeTableName: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property routeTableName: The name of the route table.


vpcIdOptional

public readonly vpcId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property vpcId: The ID of the VRouter to which the route table belongs.

The value of the RouterType parameter is set to VRouter automatically when this parameter is specified.