1. Packages
  2. AWS Classic
  3. API Docs
  4. ec2transitgateway
  5. getRouteTablePropagations

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.33.1 published on Thursday, May 2, 2024 by Pulumi

aws.ec2transitgateway.getRouteTablePropagations

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.33.1 published on Thursday, May 2, 2024 by Pulumi

    Provides information for multiple EC2 Transit Gateway Route Table Propagations, such as their identifiers.

    Example Usage

    By Transit Gateway Identifier

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = aws.ec2transitgateway.getRouteTablePropagations({
        transitGatewayRouteTableId: exampleAwsEc2TransitGatewayRouteTable.id,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.ec2transitgateway.get_route_table_propagations(transit_gateway_route_table_id=example_aws_ec2_transit_gateway_route_table["id"])
    
    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.GetRouteTablePropagations(ctx, &ec2transitgateway.GetRouteTablePropagationsArgs{
    			TransitGatewayRouteTableId: exampleAwsEc2TransitGatewayRouteTable.Id,
    		}, nil)
    		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 = Aws.Ec2TransitGateway.GetRouteTablePropagations.Invoke(new()
        {
            TransitGatewayRouteTableId = exampleAwsEc2TransitGatewayRouteTable.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2transitgateway.Ec2transitgatewayFunctions;
    import com.pulumi.aws.ec2transitgateway.inputs.GetRouteTablePropagationsArgs;
    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) {
            final var example = Ec2transitgatewayFunctions.getRouteTablePropagations(GetRouteTablePropagationsArgs.builder()
                .transitGatewayRouteTableId(exampleAwsEc2TransitGatewayRouteTable.id())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: aws:ec2transitgateway:getRouteTablePropagations
          Arguments:
            transitGatewayRouteTableId: ${exampleAwsEc2TransitGatewayRouteTable.id}
    

    Using getRouteTablePropagations

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getRouteTablePropagations(args: GetRouteTablePropagationsArgs, opts?: InvokeOptions): Promise<GetRouteTablePropagationsResult>
    function getRouteTablePropagationsOutput(args: GetRouteTablePropagationsOutputArgs, opts?: InvokeOptions): Output<GetRouteTablePropagationsResult>
    def get_route_table_propagations(filters: Optional[Sequence[GetRouteTablePropagationsFilter]] = None,
                                     transit_gateway_route_table_id: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetRouteTablePropagationsResult
    def get_route_table_propagations_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetRouteTablePropagationsFilterArgs]]]] = None,
                                     transit_gateway_route_table_id: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetRouteTablePropagationsResult]
    func GetRouteTablePropagations(ctx *Context, args *GetRouteTablePropagationsArgs, opts ...InvokeOption) (*GetRouteTablePropagationsResult, error)
    func GetRouteTablePropagationsOutput(ctx *Context, args *GetRouteTablePropagationsOutputArgs, opts ...InvokeOption) GetRouteTablePropagationsResultOutput

    > Note: This function is named GetRouteTablePropagations in the Go SDK.

    public static class GetRouteTablePropagations 
    {
        public static Task<GetRouteTablePropagationsResult> InvokeAsync(GetRouteTablePropagationsArgs args, InvokeOptions? opts = null)
        public static Output<GetRouteTablePropagationsResult> Invoke(GetRouteTablePropagationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRouteTablePropagationsResult> getRouteTablePropagations(GetRouteTablePropagationsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: aws:ec2transitgateway/getRouteTablePropagations:getRouteTablePropagations
      arguments:
        # arguments dictionary

    The following arguments are supported:

    TransitGatewayRouteTableId string

    Identifier of EC2 Transit Gateway Route Table.

    The following arguments are optional:

    Filters List<GetRouteTablePropagationsFilter>

    Custom filter block as described below.

    More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

    TransitGatewayRouteTableId string

    Identifier of EC2 Transit Gateway Route Table.

    The following arguments are optional:

    Filters []GetRouteTablePropagationsFilter

    Custom filter block as described below.

    More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

    transitGatewayRouteTableId String

    Identifier of EC2 Transit Gateway Route Table.

    The following arguments are optional:

    filters List<GetRouteTablePropagationsFilter>

    Custom filter block as described below.

    More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

    transitGatewayRouteTableId string

    Identifier of EC2 Transit Gateway Route Table.

    The following arguments are optional:

    filters GetRouteTablePropagationsFilter[]

    Custom filter block as described below.

    More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

    transit_gateway_route_table_id str

    Identifier of EC2 Transit Gateway Route Table.

    The following arguments are optional:

    filters Sequence[GetRouteTablePropagationsFilter]

    Custom filter block as described below.

    More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

    transitGatewayRouteTableId String

    Identifier of EC2 Transit Gateway Route Table.

    The following arguments are optional:

    filters List<Property Map>

    Custom filter block as described below.

    More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

    getRouteTablePropagations Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    Set of Transit Gateway Route Table Association identifiers.
    TransitGatewayRouteTableId string
    Filters List<GetRouteTablePropagationsFilter>
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    Set of Transit Gateway Route Table Association identifiers.
    TransitGatewayRouteTableId string
    Filters []GetRouteTablePropagationsFilter
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    Set of Transit Gateway Route Table Association identifiers.
    transitGatewayRouteTableId String
    filters List<GetRouteTablePropagationsFilter>
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    Set of Transit Gateway Route Table Association identifiers.
    transitGatewayRouteTableId string
    filters GetRouteTablePropagationsFilter[]
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    Set of Transit Gateway Route Table Association identifiers.
    transit_gateway_route_table_id str
    filters Sequence[GetRouteTablePropagationsFilter]
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    Set of Transit Gateway Route Table Association identifiers.
    transitGatewayRouteTableId String
    filters List<Property Map>

    Supporting Types

    GetRouteTablePropagationsFilter

    Name string
    Name of the field to filter by, as defined by the underlying AWS API.
    Values List<string>
    Set of values that are accepted for the given field. A Transit Gateway Route Table will be selected if any one of the given values matches.
    Name string
    Name of the field to filter by, as defined by the underlying AWS API.
    Values []string
    Set of values that are accepted for the given field. A Transit Gateway Route Table will be selected if any one of the given values matches.
    name String
    Name of the field to filter by, as defined by the underlying AWS API.
    values List<String>
    Set of values that are accepted for the given field. A Transit Gateway Route Table will be selected if any one of the given values matches.
    name string
    Name of the field to filter by, as defined by the underlying AWS API.
    values string[]
    Set of values that are accepted for the given field. A Transit Gateway Route Table will be selected if any one of the given values matches.
    name str
    Name of the field to filter by, as defined by the underlying AWS API.
    values Sequence[str]
    Set of values that are accepted for the given field. A Transit Gateway Route Table will be selected if any one of the given values matches.
    name String
    Name of the field to filter by, as defined by the underlying AWS API.
    values List<String>
    Set of values that are accepted for the given field. A Transit Gateway Route Table will be selected if any one of the given values matches.

    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

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.33.1 published on Thursday, May 2, 2024 by Pulumi