1. Registry
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. transitrouter
  6. TransitRouterForwardPolicyTable
Viewing docs for volcenginecc v0.0.60
published on Thursday, Sep 3, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.60
published on Thursday, Sep 3, 2026 by Volcengine

    Forwarding policy for the transit router. The forwarding policy controls the forwarding behavior of the transit router.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const example = new volcenginecc.transitrouter.TransitRouterForwardPolicyTable("example", {
        transitRouterId: "tr-xxxxxx",
        transitRouterForwardPolicyTableName: "ccapi-forward-policy-table-full",
        description: "transit router forward policy table full fields",
        transitRouterAttachmentIds: ["attachment_id-xxxx"],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    example = volcenginecc.transitrouter.TransitRouterForwardPolicyTable("example",
        transit_router_id="tr-xxxxxx",
        transit_router_forward_policy_table_name="ccapi-forward-policy-table-full",
        description="transit router forward policy table full fields",
        transit_router_attachment_ids=["attachment_id-xxxx"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/transitrouter"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := transitrouter.NewTransitRouterForwardPolicyTable(ctx, "example", &transitrouter.TransitRouterForwardPolicyTableArgs{
    			TransitRouterId:                     pulumi.String("tr-xxxxxx"),
    			TransitRouterForwardPolicyTableName: pulumi.String("ccapi-forward-policy-table-full"),
    			Description:                         pulumi.String("transit router forward policy table full fields"),
    			TransitRouterAttachmentIds: pulumi.StringArray{
    				pulumi.String("attachment_id-xxxx"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Volcenginecc.Transitrouter.TransitRouterForwardPolicyTable("example", new()
        {
            TransitRouterId = "tr-xxxxxx",
            TransitRouterForwardPolicyTableName = "ccapi-forward-policy-table-full",
            Description = "transit router forward policy table full fields",
            TransitRouterAttachmentIds = new[]
            {
                "attachment_id-xxxx",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.transitrouter.TransitRouterForwardPolicyTable;
    import com.volcengine.volcenginecc.transitrouter.TransitRouterForwardPolicyTableArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new TransitRouterForwardPolicyTable("example", TransitRouterForwardPolicyTableArgs.builder()
                .transitRouterId("tr-xxxxxx")
                .transitRouterForwardPolicyTableName("ccapi-forward-policy-table-full")
                .description("transit router forward policy table full fields")
                .transitRouterAttachmentIds("attachment_id-xxxx")
                .build());
    
        }
    }
    
    resources:
      example:
        type: volcenginecc:transitrouter:TransitRouterForwardPolicyTable
        properties:
          transitRouterId: tr-xxxxxx
          transitRouterForwardPolicyTableName: ccapi-forward-policy-table-full
          description: transit router forward policy table full fields
          transitRouterAttachmentIds:
            - attachment_id-xxxx
    
    pulumi {
      required_providers {
        volcenginecc = {
          source = "pulumi/volcenginecc"
        }
      }
    }
    
    resource "volcenginecc_transitrouter_transitrouterforwardpolicytable" "example" {
      transit_router_id                        = "tr-xxxxxx"
      transit_router_forward_policy_table_name = "ccapi-forward-policy-table-full"
      description                              = "transit router forward policy table full fields"
      transit_router_attachment_ids            = ["attachment_id-xxxx"]
    }
    

    Create TransitRouterForwardPolicyTable Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TransitRouterForwardPolicyTable(name: string, args: TransitRouterForwardPolicyTableArgs, opts?: CustomResourceOptions);
    @overload
    def TransitRouterForwardPolicyTable(resource_name: str,
                                        args: TransitRouterForwardPolicyTableArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def TransitRouterForwardPolicyTable(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        transit_router_id: Optional[str] = None,
                                        description: Optional[str] = None,
                                        transit_router_attachment_ids: Optional[Sequence[str]] = None,
                                        transit_router_forward_policy_table_name: Optional[str] = None)
    func NewTransitRouterForwardPolicyTable(ctx *Context, name string, args TransitRouterForwardPolicyTableArgs, opts ...ResourceOption) (*TransitRouterForwardPolicyTable, error)
    public TransitRouterForwardPolicyTable(string name, TransitRouterForwardPolicyTableArgs args, CustomResourceOptions? opts = null)
    public TransitRouterForwardPolicyTable(String name, TransitRouterForwardPolicyTableArgs args)
    public TransitRouterForwardPolicyTable(String name, TransitRouterForwardPolicyTableArgs args, CustomResourceOptions options)
    
    type: volcenginecc:transitrouter:TransitRouterForwardPolicyTable
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "volcenginecc_transitrouter_transit_router_forward_policy_table" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TransitRouterForwardPolicyTableArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TransitRouterForwardPolicyTableArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TransitRouterForwardPolicyTableArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransitRouterForwardPolicyTableArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransitRouterForwardPolicyTableArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var transitRouterForwardPolicyTableResource = new Volcenginecc.Transitrouter.TransitRouterForwardPolicyTable("transitRouterForwardPolicyTableResource", new()
    {
        TransitRouterId = "string",
        Description = "string",
        TransitRouterAttachmentIds = new[]
        {
            "string",
        },
        TransitRouterForwardPolicyTableName = "string",
    });
    
    example, err := transitrouter.NewTransitRouterForwardPolicyTable(ctx, "transitRouterForwardPolicyTableResource", &transitrouter.TransitRouterForwardPolicyTableArgs{
    	TransitRouterId: pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	TransitRouterAttachmentIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TransitRouterForwardPolicyTableName: pulumi.String("string"),
    })
    
    resource "volcenginecc_transitrouter_transit_router_forward_policy_table" "transitRouterForwardPolicyTableResource" {
      lifecycle {
        create_before_destroy = true
      }
      transit_router_id                        = "string"
      description                              = "string"
      transit_router_attachment_ids            = ["string"]
      transit_router_forward_policy_table_name = "string"
    }
    
    var transitRouterForwardPolicyTableResource = new TransitRouterForwardPolicyTable("transitRouterForwardPolicyTableResource", TransitRouterForwardPolicyTableArgs.builder()
        .transitRouterId("string")
        .description("string")
        .transitRouterAttachmentIds("string")
        .transitRouterForwardPolicyTableName("string")
        .build());
    
    transit_router_forward_policy_table_resource = volcenginecc.transitrouter.TransitRouterForwardPolicyTable("transitRouterForwardPolicyTableResource",
        transit_router_id="string",
        description="string",
        transit_router_attachment_ids=["string"],
        transit_router_forward_policy_table_name="string")
    
    const transitRouterForwardPolicyTableResource = new volcenginecc.transitrouter.TransitRouterForwardPolicyTable("transitRouterForwardPolicyTableResource", {
        transitRouterId: "string",
        description: "string",
        transitRouterAttachmentIds: ["string"],
        transitRouterForwardPolicyTableName: "string",
    });
    
    type: volcenginecc:transitrouter:TransitRouterForwardPolicyTable
    properties:
        description: string
        transitRouterAttachmentIds:
            - string
        transitRouterForwardPolicyTableName: string
        transitRouterId: string
    

    TransitRouterForwardPolicyTable Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The TransitRouterForwardPolicyTable resource accepts the following input properties:

    TransitRouterId string
    Transit router instance ID.
    Description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    TransitRouterAttachmentIds List<string>
    List of associated IDs for the transit router instance.
    TransitRouterForwardPolicyTableName string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    TransitRouterId string
    Transit router instance ID.
    Description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    TransitRouterAttachmentIds []string
    List of associated IDs for the transit router instance.
    TransitRouterForwardPolicyTableName string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transit_router_id string
    Transit router instance ID.
    description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    transit_router_attachment_ids list(string)
    List of associated IDs for the transit router instance.
    transit_router_forward_policy_table_name string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transitRouterId String
    Transit router instance ID.
    description String
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    transitRouterAttachmentIds List<String>
    List of associated IDs for the transit router instance.
    transitRouterForwardPolicyTableName String
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transitRouterId string
    Transit router instance ID.
    description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    transitRouterAttachmentIds string[]
    List of associated IDs for the transit router instance.
    transitRouterForwardPolicyTableName string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transit_router_id str
    Transit router instance ID.
    description str
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    transit_router_attachment_ids Sequence[str]
    List of associated IDs for the transit router instance.
    transit_router_forward_policy_table_name str
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transitRouterId String
    Transit router instance ID.
    description String
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    transitRouterAttachmentIds List<String>
    List of associated IDs for the transit router instance.
    transitRouterForwardPolicyTableName String
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TransitRouterForwardPolicyTable resource produces the following output properties:

    CreationTime string
    Creation time of the forwarding policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    TransitRouterForwardPolicyTableId string
    Forwarding policy ID.
    UpdateTime string
    Last operation time of the forwarding policy.
    CreationTime string
    Creation time of the forwarding policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    TransitRouterForwardPolicyTableId string
    Forwarding policy ID.
    UpdateTime string
    Last operation time of the forwarding policy.
    creation_time string
    Creation time of the forwarding policy.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transit_router_forward_policy_table_id string
    Forwarding policy ID.
    update_time string
    Last operation time of the forwarding policy.
    creationTime String
    Creation time of the forwarding policy.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transitRouterForwardPolicyTableId String
    Forwarding policy ID.
    updateTime String
    Last operation time of the forwarding policy.
    creationTime string
    Creation time of the forwarding policy.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transitRouterForwardPolicyTableId string
    Forwarding policy ID.
    updateTime string
    Last operation time of the forwarding policy.
    creation_time str
    Creation time of the forwarding policy.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transit_router_forward_policy_table_id str
    Forwarding policy ID.
    update_time str
    Last operation time of the forwarding policy.
    creationTime String
    Creation time of the forwarding policy.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transitRouterForwardPolicyTableId String
    Forwarding policy ID.
    updateTime String
    Last operation time of the forwarding policy.

    Look up Existing TransitRouterForwardPolicyTable Resource

    Get an existing TransitRouterForwardPolicyTable resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TransitRouterForwardPolicyTableState, opts?: CustomResourceOptions): TransitRouterForwardPolicyTable
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            creation_time: Optional[str] = None,
            description: Optional[str] = None,
            status: Optional[str] = None,
            transit_router_attachment_ids: Optional[Sequence[str]] = None,
            transit_router_forward_policy_table_id: Optional[str] = None,
            transit_router_forward_policy_table_name: Optional[str] = None,
            transit_router_id: Optional[str] = None,
            update_time: Optional[str] = None) -> TransitRouterForwardPolicyTable
    func GetTransitRouterForwardPolicyTable(ctx *Context, name string, id IDInput, state *TransitRouterForwardPolicyTableState, opts ...ResourceOption) (*TransitRouterForwardPolicyTable, error)
    public static TransitRouterForwardPolicyTable Get(string name, Input<string> id, TransitRouterForwardPolicyTableState? state, CustomResourceOptions? opts = null)
    public static TransitRouterForwardPolicyTable get(String name, Output<String> id, TransitRouterForwardPolicyTableState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:transitrouter:TransitRouterForwardPolicyTable    get:      id: ${id}
    import {
      to = volcenginecc_transitrouter_transit_router_forward_policy_table.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreationTime string
    Creation time of the forwarding policy.
    Description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    Status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    TransitRouterAttachmentIds List<string>
    List of associated IDs for the transit router instance.
    TransitRouterForwardPolicyTableId string
    Forwarding policy ID.
    TransitRouterForwardPolicyTableName string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    TransitRouterId string
    Transit router instance ID.
    UpdateTime string
    Last operation time of the forwarding policy.
    CreationTime string
    Creation time of the forwarding policy.
    Description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    Status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    TransitRouterAttachmentIds []string
    List of associated IDs for the transit router instance.
    TransitRouterForwardPolicyTableId string
    Forwarding policy ID.
    TransitRouterForwardPolicyTableName string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    TransitRouterId string
    Transit router instance ID.
    UpdateTime string
    Last operation time of the forwarding policy.
    creation_time string
    Creation time of the forwarding policy.
    description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transit_router_attachment_ids list(string)
    List of associated IDs for the transit router instance.
    transit_router_forward_policy_table_id string
    Forwarding policy ID.
    transit_router_forward_policy_table_name string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transit_router_id string
    Transit router instance ID.
    update_time string
    Last operation time of the forwarding policy.
    creationTime String
    Creation time of the forwarding policy.
    description String
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    status String
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transitRouterAttachmentIds List<String>
    List of associated IDs for the transit router instance.
    transitRouterForwardPolicyTableId String
    Forwarding policy ID.
    transitRouterForwardPolicyTableName String
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transitRouterId String
    Transit router instance ID.
    updateTime String
    Last operation time of the forwarding policy.
    creationTime string
    Creation time of the forwarding policy.
    description string
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    status string
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transitRouterAttachmentIds string[]
    List of associated IDs for the transit router instance.
    transitRouterForwardPolicyTableId string
    Forwarding policy ID.
    transitRouterForwardPolicyTableName string
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transitRouterId string
    Transit router instance ID.
    updateTime string
    Last operation time of the forwarding policy.
    creation_time str
    Creation time of the forwarding policy.
    description str
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    status str
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transit_router_attachment_ids Sequence[str]
    List of associated IDs for the transit router instance.
    transit_router_forward_policy_table_id str
    Forwarding policy ID.
    transit_router_forward_policy_table_name str
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transit_router_id str
    Transit router instance ID.
    update_time str
    Last operation time of the forwarding policy.
    creationTime String
    Creation time of the forwarding policy.
    description String
    Description of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
    status String
    Status of the forwarding policy. Creating: Being created. Deleting: Being deleted. Pending: Being configured. Available: Available.
    transitRouterAttachmentIds List<String>
    List of associated IDs for the transit router instance.
    transitRouterForwardPolicyTableId String
    Forwarding policy ID.
    transitRouterForwardPolicyTableName String
    Name of the forwarding policy. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the forwarding policy ID is used by default.
    transitRouterId String
    Transit router instance ID.
    updateTime String
    Last operation time of the forwarding policy.

    Import

    $ pulumi import volcenginecc:transitrouter/transitRouterForwardPolicyTable:TransitRouterForwardPolicyTable example "transit_router_id|transit_router_forward_policy_table_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.60
    published on Thursday, Sep 3, 2026 by Volcengine

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial