PolicyTable

class PolicyTable : KotlinCustomResource

Manages an EC2 Transit Gateway Policy Table.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.ec2transitgateway.PolicyTable("example", {
transitGatewayId: exampleAwsEc2TransitGateway.id,
tags: {
Name: "Example Policy Table",
},
});
import pulumi
import pulumi_aws as aws
example = aws.ec2transitgateway.PolicyTable("example",
transit_gateway_id=example_aws_ec2_transit_gateway["id"],
tags={
"Name": "Example Policy Table",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Ec2TransitGateway.PolicyTable("example", new()
{
TransitGatewayId = exampleAwsEc2TransitGateway.Id,
Tags =
{
{ "Name", "Example Policy Table" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2transitgateway"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2transitgateway.NewPolicyTable(ctx, "example", &ec2transitgateway.PolicyTableArgs{
TransitGatewayId: pulumi.Any(exampleAwsEc2TransitGateway.Id),
Tags: pulumi.StringMap{
"Name": pulumi.String("Example Policy Table"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2transitgateway.PolicyTable;
import com.pulumi.aws.ec2transitgateway.PolicyTableArgs;
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 PolicyTable("example", PolicyTableArgs.builder()
.transitGatewayId(exampleAwsEc2TransitGateway.id())
.tags(Map.of("Name", "Example Policy Table"))
.build());
}
}
resources:
example:
type: aws:ec2transitgateway:PolicyTable
properties:
transitGatewayId: ${exampleAwsEc2TransitGateway.id}
tags:
Name: Example Policy Table

Import

Using pulumi import, import aws_ec2_transit_gateway_policy_table using the EC2 Transit Gateway Policy Table identifier. For example:

$ pulumi import aws:ec2transitgateway/policyTable:PolicyTable example tgw-rtb-12345678

Properties

Link copied to clipboard
val arn: Output<String>

EC2 Transit Gateway Policy Table Amazon Resource Name (ARN).

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val state: Output<String>

The state of the EC2 Transit Gateway Policy Table.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value tags for the EC2 Transit Gateway Policy Table. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard

EC2 Transit Gateway identifier.

Link copied to clipboard
val urn: Output<String>