1. Packages
  2. AWS
  3. API Docs
  4. odb
  5. NetworkPeeringConnection
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

aws.odb.NetworkPeeringConnection

Deploy with Pulumi
aws logo
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.odb.NetworkPeeringConnection("example", {
        displayName: "example",
        odbNetworkId: "my-odb-network-id",
        peerNetworkId: "my-vpc-id",
        tags: {
            env: "dev",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.odb.NetworkPeeringConnection("example",
        display_name="example",
        odb_network_id="my-odb-network-id",
        peer_network_id="my-vpc-id",
        tags={
            "env": "dev",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := odb.NewNetworkPeeringConnection(ctx, "example", &odb.NetworkPeeringConnectionArgs{
    			DisplayName:   pulumi.String("example"),
    			OdbNetworkId:  pulumi.String("my-odb-network-id"),
    			PeerNetworkId: pulumi.String("my-vpc-id"),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("dev"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Odb.NetworkPeeringConnection("example", new()
        {
            DisplayName = "example",
            OdbNetworkId = "my-odb-network-id",
            PeerNetworkId = "my-vpc-id",
            Tags = 
            {
                { "env", "dev" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.odb.NetworkPeeringConnection;
    import com.pulumi.aws.odb.NetworkPeeringConnectionArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 NetworkPeeringConnection("example", NetworkPeeringConnectionArgs.builder()
                .displayName("example")
                .odbNetworkId("my-odb-network-id")
                .peerNetworkId("my-vpc-id")
                .tags(Map.of("env", "dev"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:odb:NetworkPeeringConnection
        properties:
          displayName: example
          odbNetworkId: my-odb-network-id
          peerNetworkId: my-vpc-id
          tags:
            env: dev
    

    Create NetworkPeeringConnection Resource

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

    Constructor syntax

    new NetworkPeeringConnection(name: string, args: NetworkPeeringConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkPeeringConnection(resource_name: str,
                                 args: NetworkPeeringConnectionArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkPeeringConnection(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 display_name: Optional[str] = None,
                                 odb_network_id: Optional[str] = None,
                                 peer_network_id: Optional[str] = None,
                                 region: Optional[str] = None,
                                 tags: Optional[Mapping[str, str]] = None,
                                 timeouts: Optional[NetworkPeeringConnectionTimeoutsArgs] = None)
    func NewNetworkPeeringConnection(ctx *Context, name string, args NetworkPeeringConnectionArgs, opts ...ResourceOption) (*NetworkPeeringConnection, error)
    public NetworkPeeringConnection(string name, NetworkPeeringConnectionArgs args, CustomResourceOptions? opts = null)
    public NetworkPeeringConnection(String name, NetworkPeeringConnectionArgs args)
    public NetworkPeeringConnection(String name, NetworkPeeringConnectionArgs args, CustomResourceOptions options)
    
    type: aws:odb:NetworkPeeringConnection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NetworkPeeringConnectionArgs
    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 NetworkPeeringConnectionArgs
    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 NetworkPeeringConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkPeeringConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkPeeringConnectionArgs
    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 networkPeeringConnectionResource = new Aws.Odb.NetworkPeeringConnection("networkPeeringConnectionResource", new()
    {
        DisplayName = "string",
        OdbNetworkId = "string",
        PeerNetworkId = "string",
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Odb.Inputs.NetworkPeeringConnectionTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := odb.NewNetworkPeeringConnection(ctx, "networkPeeringConnectionResource", &odb.NetworkPeeringConnectionArgs{
    	DisplayName:   pulumi.String("string"),
    	OdbNetworkId:  pulumi.String("string"),
    	PeerNetworkId: pulumi.String("string"),
    	Region:        pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &odb.NetworkPeeringConnectionTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var networkPeeringConnectionResource = new NetworkPeeringConnection("networkPeeringConnectionResource", NetworkPeeringConnectionArgs.builder()
        .displayName("string")
        .odbNetworkId("string")
        .peerNetworkId("string")
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(NetworkPeeringConnectionTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    network_peering_connection_resource = aws.odb.NetworkPeeringConnection("networkPeeringConnectionResource",
        display_name="string",
        odb_network_id="string",
        peer_network_id="string",
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const networkPeeringConnectionResource = new aws.odb.NetworkPeeringConnection("networkPeeringConnectionResource", {
        displayName: "string",
        odbNetworkId: "string",
        peerNetworkId: "string",
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:odb:NetworkPeeringConnection
    properties:
        displayName: string
        odbNetworkId: string
        peerNetworkId: string
        region: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    NetworkPeeringConnection 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 NetworkPeeringConnection resource accepts the following input properties:

    DisplayName string
    OdbNetworkId string
    PeerNetworkId string
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts NetworkPeeringConnectionTimeouts
    DisplayName string
    OdbNetworkId string
    PeerNetworkId string
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts NetworkPeeringConnectionTimeoutsArgs
    displayName String
    odbNetworkId String
    peerNetworkId String
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkPeeringConnectionTimeouts
    displayName string
    odbNetworkId string
    peerNetworkId string
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkPeeringConnectionTimeouts
    display_name str
    odb_network_id str
    peer_network_id str
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkPeeringConnectionTimeoutsArgs
    displayName String
    odbNetworkId String
    peerNetworkId String
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

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

    Arn string
    CreatedAt string
    Created time of the ODB network peering connection.
    Id string
    The provider-assigned unique ID for this managed resource.
    OdbNetworkArn string
    ARN of the ODB network peering connection.
    OdbPeeringConnectionType string
    Type of the ODB peering connection.
    PeerNetworkArn string
    ARN of the peer network peering connection.
    PercentProgress double
    Progress of the ODB network peering connection.
    Status string
    Status of the ODB network peering connection.
    StatusReason string
    The reason for the current status of the ODB peering connection.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including inherited tags.
    Arn string
    CreatedAt string
    Created time of the ODB network peering connection.
    Id string
    The provider-assigned unique ID for this managed resource.
    OdbNetworkArn string
    ARN of the ODB network peering connection.
    OdbPeeringConnectionType string
    Type of the ODB peering connection.
    PeerNetworkArn string
    ARN of the peer network peering connection.
    PercentProgress float64
    Progress of the ODB network peering connection.
    Status string
    Status of the ODB network peering connection.
    StatusReason string
    The reason for the current status of the ODB peering connection.
    TagsAll map[string]string
    A map of tags assigned to the resource, including inherited tags.
    arn String
    createdAt String
    Created time of the ODB network peering connection.
    id String
    The provider-assigned unique ID for this managed resource.
    odbNetworkArn String
    ARN of the ODB network peering connection.
    odbPeeringConnectionType String
    Type of the ODB peering connection.
    peerNetworkArn String
    ARN of the peer network peering connection.
    percentProgress Double
    Progress of the ODB network peering connection.
    status String
    Status of the ODB network peering connection.
    statusReason String
    The reason for the current status of the ODB peering connection.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including inherited tags.
    arn string
    createdAt string
    Created time of the ODB network peering connection.
    id string
    The provider-assigned unique ID for this managed resource.
    odbNetworkArn string
    ARN of the ODB network peering connection.
    odbPeeringConnectionType string
    Type of the ODB peering connection.
    peerNetworkArn string
    ARN of the peer network peering connection.
    percentProgress number
    Progress of the ODB network peering connection.
    status string
    Status of the ODB network peering connection.
    statusReason string
    The reason for the current status of the ODB peering connection.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including inherited tags.
    arn str
    created_at str
    Created time of the ODB network peering connection.
    id str
    The provider-assigned unique ID for this managed resource.
    odb_network_arn str
    ARN of the ODB network peering connection.
    odb_peering_connection_type str
    Type of the ODB peering connection.
    peer_network_arn str
    ARN of the peer network peering connection.
    percent_progress float
    Progress of the ODB network peering connection.
    status str
    Status of the ODB network peering connection.
    status_reason str
    The reason for the current status of the ODB peering connection.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including inherited tags.
    arn String
    createdAt String
    Created time of the ODB network peering connection.
    id String
    The provider-assigned unique ID for this managed resource.
    odbNetworkArn String
    ARN of the ODB network peering connection.
    odbPeeringConnectionType String
    Type of the ODB peering connection.
    peerNetworkArn String
    ARN of the peer network peering connection.
    percentProgress Number
    Progress of the ODB network peering connection.
    status String
    Status of the ODB network peering connection.
    statusReason String
    The reason for the current status of the ODB peering connection.
    tagsAll Map<String>
    A map of tags assigned to the resource, including inherited tags.

    Look up Existing NetworkPeeringConnection Resource

    Get an existing NetworkPeeringConnection 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?: NetworkPeeringConnectionState, opts?: CustomResourceOptions): NetworkPeeringConnection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            created_at: Optional[str] = None,
            display_name: Optional[str] = None,
            odb_network_arn: Optional[str] = None,
            odb_network_id: Optional[str] = None,
            odb_peering_connection_type: Optional[str] = None,
            peer_network_arn: Optional[str] = None,
            peer_network_id: Optional[str] = None,
            percent_progress: Optional[float] = None,
            region: Optional[str] = None,
            status: Optional[str] = None,
            status_reason: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[NetworkPeeringConnectionTimeoutsArgs] = None) -> NetworkPeeringConnection
    func GetNetworkPeeringConnection(ctx *Context, name string, id IDInput, state *NetworkPeeringConnectionState, opts ...ResourceOption) (*NetworkPeeringConnection, error)
    public static NetworkPeeringConnection Get(string name, Input<string> id, NetworkPeeringConnectionState? state, CustomResourceOptions? opts = null)
    public static NetworkPeeringConnection get(String name, Output<String> id, NetworkPeeringConnectionState state, CustomResourceOptions options)
    resources:  _:    type: aws:odb:NetworkPeeringConnection    get:      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:
    Arn string
    CreatedAt string
    Created time of the ODB network peering connection.
    DisplayName string
    OdbNetworkArn string
    ARN of the ODB network peering connection.
    OdbNetworkId string
    OdbPeeringConnectionType string
    Type of the ODB peering connection.
    PeerNetworkArn string
    ARN of the peer network peering connection.
    PeerNetworkId string
    PercentProgress double
    Progress of the ODB network peering connection.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Status string
    Status of the ODB network peering connection.
    StatusReason string
    The reason for the current status of the ODB peering connection.
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including inherited tags.
    Timeouts NetworkPeeringConnectionTimeouts
    Arn string
    CreatedAt string
    Created time of the ODB network peering connection.
    DisplayName string
    OdbNetworkArn string
    ARN of the ODB network peering connection.
    OdbNetworkId string
    OdbPeeringConnectionType string
    Type of the ODB peering connection.
    PeerNetworkArn string
    ARN of the peer network peering connection.
    PeerNetworkId string
    PercentProgress float64
    Progress of the ODB network peering connection.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Status string
    Status of the ODB network peering connection.
    StatusReason string
    The reason for the current status of the ODB peering connection.
    Tags map[string]string
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including inherited tags.
    Timeouts NetworkPeeringConnectionTimeoutsArgs
    arn String
    createdAt String
    Created time of the ODB network peering connection.
    displayName String
    odbNetworkArn String
    ARN of the ODB network peering connection.
    odbNetworkId String
    odbPeeringConnectionType String
    Type of the ODB peering connection.
    peerNetworkArn String
    ARN of the peer network peering connection.
    peerNetworkId String
    percentProgress Double
    Progress of the ODB network peering connection.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status String
    Status of the ODB network peering connection.
    statusReason String
    The reason for the current status of the ODB peering connection.
    tags Map<String,String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including inherited tags.
    timeouts NetworkPeeringConnectionTimeouts
    arn string
    createdAt string
    Created time of the ODB network peering connection.
    displayName string
    odbNetworkArn string
    ARN of the ODB network peering connection.
    odbNetworkId string
    odbPeeringConnectionType string
    Type of the ODB peering connection.
    peerNetworkArn string
    ARN of the peer network peering connection.
    peerNetworkId string
    percentProgress number
    Progress of the ODB network peering connection.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status string
    Status of the ODB network peering connection.
    statusReason string
    The reason for the current status of the ODB peering connection.
    tags {[key: string]: string}
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including inherited tags.
    timeouts NetworkPeeringConnectionTimeouts
    arn str
    created_at str
    Created time of the ODB network peering connection.
    display_name str
    odb_network_arn str
    ARN of the ODB network peering connection.
    odb_network_id str
    odb_peering_connection_type str
    Type of the ODB peering connection.
    peer_network_arn str
    ARN of the peer network peering connection.
    peer_network_id str
    percent_progress float
    Progress of the ODB network peering connection.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status str
    Status of the ODB network peering connection.
    status_reason str
    The reason for the current status of the ODB peering connection.
    tags Mapping[str, str]
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including inherited tags.
    timeouts NetworkPeeringConnectionTimeoutsArgs
    arn String
    createdAt String
    Created time of the ODB network peering connection.
    displayName String
    odbNetworkArn String
    ARN of the ODB network peering connection.
    odbNetworkId String
    odbPeeringConnectionType String
    Type of the ODB peering connection.
    peerNetworkArn String
    ARN of the peer network peering connection.
    peerNetworkId String
    percentProgress Number
    Progress of the ODB network peering connection.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status String
    Status of the ODB network peering connection.
    statusReason String
    The reason for the current status of the ODB peering connection.
    tags Map<String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including inherited tags.
    timeouts Property Map

    Supporting Types

    NetworkPeeringConnectionTimeouts, NetworkPeeringConnectionTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import odb network peering using the id. For example:

    $ pulumi import aws:odb/networkPeeringConnection:NetworkPeeringConnection example example
    

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

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate