published on Thursday, Sep 3, 2026 by Volcengine
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:
- Transit
Router stringId - 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 List<string>Attachment Ids - List of associated IDs for the transit router instance.
- Transit
Router stringForward Policy Table Name - 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 stringId - 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 []stringAttachment Ids - List of associated IDs for the transit router instance.
- Transit
Router stringForward Policy Table Name - 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_ stringid - 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_ list(string)attachment_ ids - List of associated IDs for the transit router instance.
- transit_
router_ stringforward_ policy_ table_ name - 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 StringId - 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 List<String>Attachment Ids - List of associated IDs for the transit router instance.
- transit
Router StringForward Policy Table Name - 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 stringId - 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 string[]Attachment Ids - List of associated IDs for the transit router instance.
- transit
Router stringForward Policy Table Name - 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_ strid - 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_ Sequence[str]attachment_ ids - List of associated IDs for the transit router instance.
- transit_
router_ strforward_ policy_ table_ name - 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 StringId - 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 List<String>Attachment Ids - List of associated IDs for the transit router instance.
- transit
Router StringForward Policy Table Name - 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:
- 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 stringForward Policy Table Id - Forwarding policy ID.
- Update
Time 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 stringForward Policy Table Id - Forwarding policy ID.
- Update
Time 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_ stringforward_ policy_ table_ id - Forwarding policy ID.
- update_
time 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 StringForward Policy Table Id - Forwarding policy ID.
- update
Time 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 stringForward Policy Table Id - Forwarding policy ID.
- update
Time 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_ strforward_ policy_ table_ id - Forwarding policy ID.
- update_
time str - 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 StringForward Policy Table Id - Forwarding policy ID.
- update
Time 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) -> TransitRouterForwardPolicyTablefunc 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.
- 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 List<string>Attachment Ids - List of associated IDs for the transit router instance.
- Transit
Router stringForward Policy Table Id - Forwarding policy ID.
- Transit
Router stringForward Policy Table Name - 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 stringId - Transit router instance ID.
- Update
Time 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 []stringAttachment Ids - List of associated IDs for the transit router instance.
- Transit
Router stringForward Policy Table Id - Forwarding policy ID.
- Transit
Router stringForward Policy Table Name - 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 stringId - Transit router instance ID.
- Update
Time 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_ list(string)attachment_ ids - List of associated IDs for the transit router instance.
- transit_
router_ stringforward_ policy_ table_ id - Forwarding policy ID.
- transit_
router_ stringforward_ policy_ table_ name - 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_ stringid - Transit router instance ID.
- update_
time 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 List<String>Attachment Ids - List of associated IDs for the transit router instance.
- transit
Router StringForward Policy Table Id - Forwarding policy ID.
- transit
Router StringForward Policy Table Name - 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 StringId - Transit router instance ID.
- update
Time 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 string[]Attachment Ids - List of associated IDs for the transit router instance.
- transit
Router stringForward Policy Table Id - Forwarding policy ID.
- transit
Router stringForward Policy Table Name - 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 stringId - Transit router instance ID.
- update
Time 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_ Sequence[str]attachment_ ids - List of associated IDs for the transit router instance.
- transit_
router_ strforward_ policy_ table_ id - Forwarding policy ID.
- transit_
router_ strforward_ policy_ table_ name - 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_ strid - Transit router instance ID.
- update_
time str - 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 List<String>Attachment Ids - List of associated IDs for the transit router instance.
- transit
Router StringForward Policy Table Id - Forwarding policy ID.
- transit
Router StringForward Policy Table Name - 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 StringId - Transit router instance ID.
- update
Time 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
volcengineccTerraform Provider.
published on Thursday, Sep 3, 2026 by Volcengine