1. Packages
  2. AWS
  3. API Docs
  4. vpclattice
  5. ServiceNetworkResourceAssociation
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

aws.vpclattice.ServiceNetworkResourceAssociation

Explore with Pulumi AI

aws logo
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

    Resource for managing an AWS VPC Lattice Service Network Resource Association.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.vpclattice.ServiceNetworkResourceAssociation("example", {
        resourceConfigurationIdentifier: exampleAwsVpclatticeResourceConfiguration.id,
        serviceNetworkIdentifier: exampleAwsVpclatticeServiceNetwork.id,
        tags: {
            Name: "Example",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.vpclattice.ServiceNetworkResourceAssociation("example",
        resource_configuration_identifier=example_aws_vpclattice_resource_configuration["id"],
        service_network_identifier=example_aws_vpclattice_service_network["id"],
        tags={
            "Name": "Example",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/vpclattice"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vpclattice.NewServiceNetworkResourceAssociation(ctx, "example", &vpclattice.ServiceNetworkResourceAssociationArgs{
    			ResourceConfigurationIdentifier: pulumi.Any(exampleAwsVpclatticeResourceConfiguration.Id),
    			ServiceNetworkIdentifier:        pulumi.Any(exampleAwsVpclatticeServiceNetwork.Id),
    			Tags: pulumi.StringMap{
    				"Name": pulumi.String("Example"),
    			},
    		})
    		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.VpcLattice.ServiceNetworkResourceAssociation("example", new()
        {
            ResourceConfigurationIdentifier = exampleAwsVpclatticeResourceConfiguration.Id,
            ServiceNetworkIdentifier = exampleAwsVpclatticeServiceNetwork.Id,
            Tags = 
            {
                { "Name", "Example" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.vpclattice.ServiceNetworkResourceAssociation;
    import com.pulumi.aws.vpclattice.ServiceNetworkResourceAssociationArgs;
    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 ServiceNetworkResourceAssociation("example", ServiceNetworkResourceAssociationArgs.builder()
                .resourceConfigurationIdentifier(exampleAwsVpclatticeResourceConfiguration.id())
                .serviceNetworkIdentifier(exampleAwsVpclatticeServiceNetwork.id())
                .tags(Map.of("Name", "Example"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:vpclattice:ServiceNetworkResourceAssociation
        properties:
          resourceConfigurationIdentifier: ${exampleAwsVpclatticeResourceConfiguration.id}
          serviceNetworkIdentifier: ${exampleAwsVpclatticeServiceNetwork.id}
          tags:
            Name: Example
    

    Create ServiceNetworkResourceAssociation Resource

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

    Constructor syntax

    new ServiceNetworkResourceAssociation(name: string, args: ServiceNetworkResourceAssociationArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceNetworkResourceAssociation(resource_name: str,
                                          args: ServiceNetworkResourceAssociationArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceNetworkResourceAssociation(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          resource_configuration_identifier: Optional[str] = None,
                                          service_network_identifier: Optional[str] = None,
                                          tags: Optional[Mapping[str, str]] = None,
                                          timeouts: Optional[ServiceNetworkResourceAssociationTimeoutsArgs] = None)
    func NewServiceNetworkResourceAssociation(ctx *Context, name string, args ServiceNetworkResourceAssociationArgs, opts ...ResourceOption) (*ServiceNetworkResourceAssociation, error)
    public ServiceNetworkResourceAssociation(string name, ServiceNetworkResourceAssociationArgs args, CustomResourceOptions? opts = null)
    public ServiceNetworkResourceAssociation(String name, ServiceNetworkResourceAssociationArgs args)
    public ServiceNetworkResourceAssociation(String name, ServiceNetworkResourceAssociationArgs args, CustomResourceOptions options)
    
    type: aws:vpclattice:ServiceNetworkResourceAssociation
    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 ServiceNetworkResourceAssociationArgs
    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 ServiceNetworkResourceAssociationArgs
    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 ServiceNetworkResourceAssociationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceNetworkResourceAssociationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceNetworkResourceAssociationArgs
    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 serviceNetworkResourceAssociationResource = new Aws.VpcLattice.ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource", new()
    {
        ResourceConfigurationIdentifier = "string",
        ServiceNetworkIdentifier = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.VpcLattice.Inputs.ServiceNetworkResourceAssociationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := vpclattice.NewServiceNetworkResourceAssociation(ctx, "serviceNetworkResourceAssociationResource", &vpclattice.ServiceNetworkResourceAssociationArgs{
    	ResourceConfigurationIdentifier: pulumi.String("string"),
    	ServiceNetworkIdentifier:        pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &vpclattice.ServiceNetworkResourceAssociationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var serviceNetworkResourceAssociationResource = new ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource", ServiceNetworkResourceAssociationArgs.builder()
        .resourceConfigurationIdentifier("string")
        .serviceNetworkIdentifier("string")
        .tags(Map.of("string", "string"))
        .timeouts(ServiceNetworkResourceAssociationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    service_network_resource_association_resource = aws.vpclattice.ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource",
        resource_configuration_identifier="string",
        service_network_identifier="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const serviceNetworkResourceAssociationResource = new aws.vpclattice.ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource", {
        resourceConfigurationIdentifier: "string",
        serviceNetworkIdentifier: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: aws:vpclattice:ServiceNetworkResourceAssociation
    properties:
        resourceConfigurationIdentifier: string
        serviceNetworkIdentifier: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
    

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

    ResourceConfigurationIdentifier string
    Identifier of Resource Configuration to associate to the Service Network.
    ServiceNetworkIdentifier string

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    Tags Dictionary<string, string>
    Map of tags assigned 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 ServiceNetworkResourceAssociationTimeouts
    ResourceConfigurationIdentifier string
    Identifier of Resource Configuration to associate to the Service Network.
    ServiceNetworkIdentifier string

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    Tags map[string]string
    Map of tags assigned 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 ServiceNetworkResourceAssociationTimeoutsArgs
    resourceConfigurationIdentifier String
    Identifier of Resource Configuration to associate to the Service Network.
    serviceNetworkIdentifier String

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags Map<String,String>
    Map of tags assigned 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 ServiceNetworkResourceAssociationTimeouts
    resourceConfigurationIdentifier string
    Identifier of Resource Configuration to associate to the Service Network.
    serviceNetworkIdentifier string

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags {[key: string]: string}
    Map of tags assigned 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 ServiceNetworkResourceAssociationTimeouts
    resource_configuration_identifier str
    Identifier of Resource Configuration to associate to the Service Network.
    service_network_identifier str

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags Mapping[str, str]
    Map of tags assigned 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 ServiceNetworkResourceAssociationTimeoutsArgs
    resourceConfigurationIdentifier String
    Identifier of Resource Configuration to associate to the Service Network.
    serviceNetworkIdentifier String

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags Map<String>
    Map of tags assigned 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 ServiceNetworkResourceAssociation resource produces the following output properties:

    Arn string
    ARN of the Service Network Resource Association.
    DnsEntries List<ServiceNetworkResourceAssociationDnsEntry>
    DNS entry of the association in the service network.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    ARN of the Service Network Resource Association.
    DnsEntries []ServiceNetworkResourceAssociationDnsEntry
    DNS entry of the association in the service network.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the Service Network Resource Association.
    dnsEntries List<ServiceNetworkResourceAssociationDnsEntry>
    DNS entry of the association in the service network.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    ARN of the Service Network Resource Association.
    dnsEntries ServiceNetworkResourceAssociationDnsEntry[]
    DNS entry of the association in the service network.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    ARN of the Service Network Resource Association.
    dns_entries Sequence[ServiceNetworkResourceAssociationDnsEntry]
    DNS entry of the association in the service network.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the Service Network Resource Association.
    dnsEntries List<Property Map>
    DNS entry of the association in the service network.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing ServiceNetworkResourceAssociation Resource

    Get an existing ServiceNetworkResourceAssociation 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?: ServiceNetworkResourceAssociationState, opts?: CustomResourceOptions): ServiceNetworkResourceAssociation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            dns_entries: Optional[Sequence[ServiceNetworkResourceAssociationDnsEntryArgs]] = None,
            resource_configuration_identifier: Optional[str] = None,
            service_network_identifier: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[ServiceNetworkResourceAssociationTimeoutsArgs] = None) -> ServiceNetworkResourceAssociation
    func GetServiceNetworkResourceAssociation(ctx *Context, name string, id IDInput, state *ServiceNetworkResourceAssociationState, opts ...ResourceOption) (*ServiceNetworkResourceAssociation, error)
    public static ServiceNetworkResourceAssociation Get(string name, Input<string> id, ServiceNetworkResourceAssociationState? state, CustomResourceOptions? opts = null)
    public static ServiceNetworkResourceAssociation get(String name, Output<String> id, ServiceNetworkResourceAssociationState state, CustomResourceOptions options)
    resources:  _:    type: aws:vpclattice:ServiceNetworkResourceAssociation    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
    ARN of the Service Network Resource Association.
    DnsEntries List<ServiceNetworkResourceAssociationDnsEntry>
    DNS entry of the association in the service network.
    ResourceConfigurationIdentifier string
    Identifier of Resource Configuration to associate to the Service Network.
    ServiceNetworkIdentifier string

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    Tags Dictionary<string, string>
    Map of tags assigned 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>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ServiceNetworkResourceAssociationTimeouts
    Arn string
    ARN of the Service Network Resource Association.
    DnsEntries []ServiceNetworkResourceAssociationDnsEntryArgs
    DNS entry of the association in the service network.
    ResourceConfigurationIdentifier string
    Identifier of Resource Configuration to associate to the Service Network.
    ServiceNetworkIdentifier string

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    Tags map[string]string
    Map of tags assigned 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
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ServiceNetworkResourceAssociationTimeoutsArgs
    arn String
    ARN of the Service Network Resource Association.
    dnsEntries List<ServiceNetworkResourceAssociationDnsEntry>
    DNS entry of the association in the service network.
    resourceConfigurationIdentifier String
    Identifier of Resource Configuration to associate to the Service Network.
    serviceNetworkIdentifier String

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags Map<String,String>
    Map of tags assigned 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>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ServiceNetworkResourceAssociationTimeouts
    arn string
    ARN of the Service Network Resource Association.
    dnsEntries ServiceNetworkResourceAssociationDnsEntry[]
    DNS entry of the association in the service network.
    resourceConfigurationIdentifier string
    Identifier of Resource Configuration to associate to the Service Network.
    serviceNetworkIdentifier string

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags {[key: string]: string}
    Map of tags assigned 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}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ServiceNetworkResourceAssociationTimeouts
    arn str
    ARN of the Service Network Resource Association.
    dns_entries Sequence[ServiceNetworkResourceAssociationDnsEntryArgs]
    DNS entry of the association in the service network.
    resource_configuration_identifier str
    Identifier of Resource Configuration to associate to the Service Network.
    service_network_identifier str

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags Mapping[str, str]
    Map of tags assigned 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]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ServiceNetworkResourceAssociationTimeoutsArgs
    arn String
    ARN of the Service Network Resource Association.
    dnsEntries List<Property Map>
    DNS entry of the association in the service network.
    resourceConfigurationIdentifier String
    Identifier of Resource Configuration to associate to the Service Network.
    serviceNetworkIdentifier String

    Identifier of the Service Network to associate the Resource to.

    The following arguments are optional:

    tags Map<String>
    Map of tags assigned 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>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map

    Supporting Types

    ServiceNetworkResourceAssociationDnsEntry, ServiceNetworkResourceAssociationDnsEntryArgs

    DomainName string
    The domain name of the association in the service network.
    HostedZoneId string
    The ID of the hosted zone containing the domain name.
    DomainName string
    The domain name of the association in the service network.
    HostedZoneId string
    The ID of the hosted zone containing the domain name.
    domainName String
    The domain name of the association in the service network.
    hostedZoneId String
    The ID of the hosted zone containing the domain name.
    domainName string
    The domain name of the association in the service network.
    hostedZoneId string
    The ID of the hosted zone containing the domain name.
    domain_name str
    The domain name of the association in the service network.
    hosted_zone_id str
    The ID of the hosted zone containing the domain name.
    domainName String
    The domain name of the association in the service network.
    hostedZoneId String
    The ID of the hosted zone containing the domain name.

    ServiceNetworkResourceAssociationTimeouts, ServiceNetworkResourceAssociationTimeoutsArgs

    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.
    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.
    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.
    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.
    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.
    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.

    Import

    Using pulumi import, import VPC Lattice Service Network Resource Association using the id. For example:

    $ pulumi import aws:vpclattice/serviceNetworkResourceAssociation:ServiceNetworkResourceAssociation example snra-1234567890abcef12
    

    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 v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi