get static method

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

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

Implementation

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