com.pulumi.aws.ec2.kotlin.NetworkInsightsPath.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.ec2.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [NetworkInsightsPath].
*/
@PulumiTagMarker
public class NetworkInsightsPathResourceBuilder internal constructor() {
public var name: String? = null
public var args: NetworkInsightsPathArgs = NetworkInsightsPathArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend NetworkInsightsPathArgsBuilder.() -> Unit) {
val builder = NetworkInsightsPathArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): NetworkInsightsPath {
val builtJavaResource = com.pulumi.aws.ec2.NetworkInsightsPath(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return NetworkInsightsPath(builtJavaResource)
}
}
/**
* Provides a Network Insights Path resource. Part of the "Reachability Analyzer" service in the AWS VPC console.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const test = new aws.ec2.NetworkInsightsPath("test", {
* source: source.id,
* destination: destination.id,
* protocol: "tcp",
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* test = aws.ec2.NetworkInsightsPath("test",
* source=source["id"],
* destination=destination["id"],
* protocol="tcp")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var test = new Aws.Ec2.NetworkInsightsPath("test", new()
* {
* Source = source.Id,
* Destination = destination.Id,
* Protocol = "tcp",
* });
* });
* ```
* ```go
* 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.NewNetworkInsightsPath(ctx, "test", &ec2.NetworkInsightsPathArgs{
* Source: pulumi.Any(source.Id),
* Destination: pulumi.Any(destination.Id),
* Protocol: pulumi.String("tcp"),
* })
* 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.ec2.NetworkInsightsPath;
* import com.pulumi.aws.ec2.NetworkInsightsPathArgs;
* 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 test = new NetworkInsightsPath("test", NetworkInsightsPathArgs.builder()
* .source(source.id())
* .destination(destination.id())
* .protocol("tcp")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* test:
* type: aws:ec2:NetworkInsightsPath
* properties:
* source: ${source.id}
* destination: ${destination.id}
* protocol: tcp
* ```
*
* ## Import
* Using `pulumi import`, import Network Insights Paths using the `id`. For example:
* ```sh
* $ pulumi import aws:ec2/networkInsightsPath:NetworkInsightsPath test nip-00edfba169923aefd
* ```
*/
public class NetworkInsightsPath internal constructor(
override val javaResource: com.pulumi.aws.ec2.NetworkInsightsPath,
) : KotlinCustomResource(javaResource, NetworkInsightsPathMapper) {
/**
* ARN of the Network Insights Path.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* ID or ARN of the resource which is the destination of the path. Can be an Instance, Internet Gateway, Network Interface, Transit Gateway, VPC Endpoint, VPC Peering Connection or VPN Gateway. If the resource is in another account, you must specify an ARN.
*/
public val destination: Output?
get() = javaResource.destination().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* ARN of the destination.
*/
public val destinationArn: Output
get() = javaResource.destinationArn().applyValue({ args0 -> args0 })
/**
* IP address of the destination resource.
*/
public val destinationIp: Output?
get() = javaResource.destinationIp().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Destination port to analyze access to.
*/
public val destinationPort: Output?
get() = javaResource.destinationPort().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Protocol to use for analysis. Valid options are `tcp` or `udp`.
* The following arguments are optional:
*/
public val protocol: Output
get() = javaResource.protocol().applyValue({ args0 -> args0 })
/**
* ID or ARN of the resource which is the source of the path. Can be an Instance, Internet Gateway, Network Interface, Transit Gateway, VPC Endpoint, VPC Peering Connection or VPN Gateway. If the resource is in another account, you must specify an ARN.
*/
public val source: Output
get() = javaResource.source().applyValue({ args0 -> args0 })
/**
* ARN of the source.
*/
public val sourceArn: Output
get() = javaResource.sourceArn().applyValue({ args0 -> args0 })
/**
* IP address of the source resource.
*/
public val sourceIp: Output?
get() = javaResource.sourceIp().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* 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.
*/
public val tags: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy