
com.pulumi.aws.networkmonitor.kotlin.ProbeArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.networkmonitor.kotlin
import com.pulumi.aws.networkmonitor.ProbeArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Resource for managing an AWS Network Monitor Probe.
* ## Example Usage
* ### Basic Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const example = new aws.networkmonitor.Monitor("example", {
* aggregationPeriod: 30,
* monitorName: "example",
* });
* const exampleProbe = new aws.networkmonitor.Probe("example", {
* monitorName: example.monitorName,
* destination: "127.0.0.1",
* destinationPort: 80,
* protocol: "TCP",
* sourceArn: exampleAwsSubnet.arn,
* packetSize: 200,
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* example = aws.networkmonitor.Monitor("example",
* aggregation_period=30,
* monitor_name="example")
* example_probe = aws.networkmonitor.Probe("example",
* monitor_name=example.monitor_name,
* destination="127.0.0.1",
* destination_port=80,
* protocol="TCP",
* source_arn=example_aws_subnet["arn"],
* packet_size=200)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.NetworkMonitor.Monitor("example", new()
* {
* AggregationPeriod = 30,
* MonitorName = "example",
* });
* var exampleProbe = new Aws.NetworkMonitor.Probe("example", new()
* {
* MonitorName = example.MonitorName,
* Destination = "127.0.0.1",
* DestinationPort = 80,
* Protocol = "TCP",
* SourceArn = exampleAwsSubnet.Arn,
* PacketSize = 200,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/networkmonitor"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := networkmonitor.NewMonitor(ctx, "example", &networkmonitor.MonitorArgs{
* AggregationPeriod: pulumi.Int(30),
* MonitorName: pulumi.String("example"),
* })
* if err != nil {
* return err
* }
* _, err = networkmonitor.NewProbe(ctx, "example", &networkmonitor.ProbeArgs{
* MonitorName: example.MonitorName,
* Destination: pulumi.String("127.0.0.1"),
* DestinationPort: pulumi.Int(80),
* Protocol: pulumi.String("TCP"),
* SourceArn: pulumi.Any(exampleAwsSubnet.Arn),
* PacketSize: pulumi.Int(200),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.networkmonitor.Monitor;
* import com.pulumi.aws.networkmonitor.MonitorArgs;
* import com.pulumi.aws.networkmonitor.Probe;
* import com.pulumi.aws.networkmonitor.ProbeArgs;
* 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 Monitor("example", MonitorArgs.builder()
* .aggregationPeriod(30)
* .monitorName("example")
* .build());
* var exampleProbe = new Probe("exampleProbe", ProbeArgs.builder()
* .monitorName(example.monitorName())
* .destination("127.0.0.1")
* .destinationPort(80)
* .protocol("TCP")
* .sourceArn(exampleAwsSubnet.arn())
* .packetSize(200)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:networkmonitor:Monitor
* properties:
* aggregationPeriod: 30
* monitorName: example
* exampleProbe:
* type: aws:networkmonitor:Probe
* name: example
* properties:
* monitorName: ${example.monitorName}
* destination: 127.0.0.1
* destinationPort: 80
* protocol: TCP
* sourceArn: ${exampleAwsSubnet.arn}
* packetSize: 200
* ```
*
* ## Import
* Using `pulumi import`, import `aws_networkmonitor_probe` using the monitor name and probe id. For example:
* ```sh
* $ pulumi import aws:networkmonitor/probe:Probe example monitor-7786087912324693644,probe-3qm8p693i4fi1h8lqylzkbp42e
* ```
* @property destination The destination IP address. This must be either IPV4 or IPV6.
* @property destinationPort The port associated with the destination. This is required only if the protocol is TCP and must be a number between 1 and 65536.
* @property monitorName The name of the monitor.
* @property packetSize The size of the packets sent between the source and destination. This must be a number between 56 and 8500.
* The following arguments are optional:
* @property protocol The protocol used for the network traffic between the source and destination. This must be either TCP or ICMP.
* @property sourceArn The ARN of the subnet.
* @property tags Key-value tags for the monitor. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
public data class ProbeArgs(
public val destination: Output? = null,
public val destinationPort: Output? = null,
public val monitorName: Output? = null,
public val packetSize: Output? = null,
public val protocol: Output? = null,
public val sourceArn: Output? = null,
public val tags: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy