get static method

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

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

Implementation

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