1. Packages
  2. AWS
  3. API Docs
  4. ec2
  5. VpcNetworkPerformanceMetricSubscription
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.ec2.VpcNetworkPerformanceMetricSubscription

Explore with Pulumi AI

Provides a resource to manage an Infrastructure Performance subscription.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.ec2.VpcNetworkPerformanceMetricSubscription("example", {
    source: "us-east-1",
    destination: "us-west-1",
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.ec2.VpcNetworkPerformanceMetricSubscription("example",
    source="us-east-1",
    destination="us-west-1")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ec2.NewVpcNetworkPerformanceMetricSubscription(ctx, "example", &ec2.VpcNetworkPerformanceMetricSubscriptionArgs{
			Source:      pulumi.String("us-east-1"),
			Destination: pulumi.String("us-west-1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.Ec2.VpcNetworkPerformanceMetricSubscription("example", new()
    {
        Source = "us-east-1",
        Destination = "us-west-1",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.VpcNetworkPerformanceMetricSubscription;
import com.pulumi.aws.ec2.VpcNetworkPerformanceMetricSubscriptionArgs;
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 VpcNetworkPerformanceMetricSubscription("example", VpcNetworkPerformanceMetricSubscriptionArgs.builder()
            .source("us-east-1")
            .destination("us-west-1")
            .build());

    }
}
Copy
resources:
  example:
    type: aws:ec2:VpcNetworkPerformanceMetricSubscription
    properties:
      source: us-east-1
      destination: us-west-1
Copy

Create VpcNetworkPerformanceMetricSubscription Resource

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

Constructor syntax

new VpcNetworkPerformanceMetricSubscription(name: string, args: VpcNetworkPerformanceMetricSubscriptionArgs, opts?: CustomResourceOptions);
@overload
def VpcNetworkPerformanceMetricSubscription(resource_name: str,
                                            args: VpcNetworkPerformanceMetricSubscriptionArgs,
                                            opts: Optional[ResourceOptions] = None)

@overload
def VpcNetworkPerformanceMetricSubscription(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            destination: Optional[str] = None,
                                            source: Optional[str] = None,
                                            metric: Optional[str] = None,
                                            statistic: Optional[str] = None)
func NewVpcNetworkPerformanceMetricSubscription(ctx *Context, name string, args VpcNetworkPerformanceMetricSubscriptionArgs, opts ...ResourceOption) (*VpcNetworkPerformanceMetricSubscription, error)
public VpcNetworkPerformanceMetricSubscription(string name, VpcNetworkPerformanceMetricSubscriptionArgs args, CustomResourceOptions? opts = null)
public VpcNetworkPerformanceMetricSubscription(String name, VpcNetworkPerformanceMetricSubscriptionArgs args)
public VpcNetworkPerformanceMetricSubscription(String name, VpcNetworkPerformanceMetricSubscriptionArgs args, CustomResourceOptions options)
type: aws:ec2:VpcNetworkPerformanceMetricSubscription
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VpcNetworkPerformanceMetricSubscriptionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VpcNetworkPerformanceMetricSubscriptionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VpcNetworkPerformanceMetricSubscriptionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VpcNetworkPerformanceMetricSubscriptionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VpcNetworkPerformanceMetricSubscriptionArgs
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 vpcNetworkPerformanceMetricSubscriptionResource = new Aws.Ec2.VpcNetworkPerformanceMetricSubscription("vpcNetworkPerformanceMetricSubscriptionResource", new()
{
    Destination = "string",
    Source = "string",
    Metric = "string",
    Statistic = "string",
});
Copy
example, err := ec2.NewVpcNetworkPerformanceMetricSubscription(ctx, "vpcNetworkPerformanceMetricSubscriptionResource", &ec2.VpcNetworkPerformanceMetricSubscriptionArgs{
	Destination: pulumi.String("string"),
	Source:      pulumi.String("string"),
	Metric:      pulumi.String("string"),
	Statistic:   pulumi.String("string"),
})
Copy
var vpcNetworkPerformanceMetricSubscriptionResource = new VpcNetworkPerformanceMetricSubscription("vpcNetworkPerformanceMetricSubscriptionResource", VpcNetworkPerformanceMetricSubscriptionArgs.builder()
    .destination("string")
    .source("string")
    .metric("string")
    .statistic("string")
    .build());
Copy
vpc_network_performance_metric_subscription_resource = aws.ec2.VpcNetworkPerformanceMetricSubscription("vpcNetworkPerformanceMetricSubscriptionResource",
    destination="string",
    source="string",
    metric="string",
    statistic="string")
Copy
const vpcNetworkPerformanceMetricSubscriptionResource = new aws.ec2.VpcNetworkPerformanceMetricSubscription("vpcNetworkPerformanceMetricSubscriptionResource", {
    destination: "string",
    source: "string",
    metric: "string",
    statistic: "string",
});
Copy
type: aws:ec2:VpcNetworkPerformanceMetricSubscription
properties:
    destination: string
    metric: string
    source: string
    statistic: string
Copy

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

Destination
This property is required.
Changes to this property will trigger replacement.
string
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
Source
This property is required.
Changes to this property will trigger replacement.
string
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
Metric Changes to this property will trigger replacement. string
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
Statistic Changes to this property will trigger replacement. string
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
Destination
This property is required.
Changes to this property will trigger replacement.
string
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
Source
This property is required.
Changes to this property will trigger replacement.
string
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
Metric Changes to this property will trigger replacement. string
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
Statistic Changes to this property will trigger replacement. string
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination
This property is required.
Changes to this property will trigger replacement.
String
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
source
This property is required.
Changes to this property will trigger replacement.
String
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
metric Changes to this property will trigger replacement. String
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
statistic Changes to this property will trigger replacement. String
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination
This property is required.
Changes to this property will trigger replacement.
string
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
source
This property is required.
Changes to this property will trigger replacement.
string
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
metric Changes to this property will trigger replacement. string
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
statistic Changes to this property will trigger replacement. string
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination
This property is required.
Changes to this property will trigger replacement.
str
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
source
This property is required.
Changes to this property will trigger replacement.
str
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
metric Changes to this property will trigger replacement. str
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
statistic Changes to this property will trigger replacement. str
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination
This property is required.
Changes to this property will trigger replacement.
String
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
source
This property is required.
Changes to this property will trigger replacement.
String
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
metric Changes to this property will trigger replacement. String
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
statistic Changes to this property will trigger replacement. String
The statistic used for the enabled subscription. Valid values: p50. Default: p50.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Period string
The data aggregation time for the subscription.
Id string
The provider-assigned unique ID for this managed resource.
Period string
The data aggregation time for the subscription.
id String
The provider-assigned unique ID for this managed resource.
period String
The data aggregation time for the subscription.
id string
The provider-assigned unique ID for this managed resource.
period string
The data aggregation time for the subscription.
id str
The provider-assigned unique ID for this managed resource.
period str
The data aggregation time for the subscription.
id String
The provider-assigned unique ID for this managed resource.
period String
The data aggregation time for the subscription.

Look up Existing VpcNetworkPerformanceMetricSubscription Resource

Get an existing VpcNetworkPerformanceMetricSubscription 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?: VpcNetworkPerformanceMetricSubscriptionState, opts?: CustomResourceOptions): VpcNetworkPerformanceMetricSubscription
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        destination: Optional[str] = None,
        metric: Optional[str] = None,
        period: Optional[str] = None,
        source: Optional[str] = None,
        statistic: Optional[str] = None) -> VpcNetworkPerformanceMetricSubscription
func GetVpcNetworkPerformanceMetricSubscription(ctx *Context, name string, id IDInput, state *VpcNetworkPerformanceMetricSubscriptionState, opts ...ResourceOption) (*VpcNetworkPerformanceMetricSubscription, error)
public static VpcNetworkPerformanceMetricSubscription Get(string name, Input<string> id, VpcNetworkPerformanceMetricSubscriptionState? state, CustomResourceOptions? opts = null)
public static VpcNetworkPerformanceMetricSubscription get(String name, Output<String> id, VpcNetworkPerformanceMetricSubscriptionState state, CustomResourceOptions options)
resources:  _:    type: aws:ec2:VpcNetworkPerformanceMetricSubscription    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Destination Changes to this property will trigger replacement. string
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
Metric Changes to this property will trigger replacement. string
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
Period string
The data aggregation time for the subscription.
Source Changes to this property will trigger replacement. string
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
Statistic Changes to this property will trigger replacement. string
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
Destination Changes to this property will trigger replacement. string
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
Metric Changes to this property will trigger replacement. string
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
Period string
The data aggregation time for the subscription.
Source Changes to this property will trigger replacement. string
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
Statistic Changes to this property will trigger replacement. string
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination Changes to this property will trigger replacement. String
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
metric Changes to this property will trigger replacement. String
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
period String
The data aggregation time for the subscription.
source Changes to this property will trigger replacement. String
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
statistic Changes to this property will trigger replacement. String
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination Changes to this property will trigger replacement. string
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
metric Changes to this property will trigger replacement. string
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
period string
The data aggregation time for the subscription.
source Changes to this property will trigger replacement. string
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
statistic Changes to this property will trigger replacement. string
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination Changes to this property will trigger replacement. str
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
metric Changes to this property will trigger replacement. str
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
period str
The data aggregation time for the subscription.
source Changes to this property will trigger replacement. str
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
statistic Changes to this property will trigger replacement. str
The statistic used for the enabled subscription. Valid values: p50. Default: p50.
destination Changes to this property will trigger replacement. String
The target Region or Availability Zone that the metric subscription is enabled for. For example, eu-west-1.
metric Changes to this property will trigger replacement. String
The metric used for the enabled subscription. Valid values: aggregate-latency. Default: aggregate-latency.
period String
The data aggregation time for the subscription.
source Changes to this property will trigger replacement. String
The source Region or Availability Zone that the metric subscription is enabled for. For example, us-east-1.
statistic Changes to this property will trigger replacement. String
The statistic used for the enabled subscription. Valid values: p50. Default: p50.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.