Show / Hide Table of Contents

Class GetTable

Inheritance
System.Object
GetTable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.DynamoDB
Assembly: Pulumi.Aws.dll
Syntax
public static class GetTable

Methods

View Source

InvokeAsync(GetTableArgs, InvokeOptions)

Provides information about a DynamoDB table.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var tableName = Output.Create(Aws.DynamoDB.GetTable.InvokeAsync(new Aws.DynamoDB.GetTableArgs
    {
        Name = "tableName",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetTableResult> InvokeAsync(GetTableArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetTableArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetTableResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.