get static method

Table get(
  1. String name,
  2. Input<String> id, {
  3. TableState? state,
  4. CustomResourceOptions? options,
})

Gets an existing Table resource's state with the given name and id.

Implementation

static Table get(
  String name,
  pulumi.Input<String> id, {
  TableState? state,
  pulumi.CustomResourceOptions? options,
}) {
  return Table._get(
    name,
    state: state?.toMap(),
    options: pulumi.CustomResourceOptions(id: id).merge(options),
  );
}