Show / Hide Table of Contents

Class DeferredOutput<T>

Represents the producer side of an Output<T> value, providing access to the consumer side through the Output property.

Inheritance
object
DeferredOutput<T>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public sealed class DeferredOutput<T>
Type Parameters
Name Description
T

Constructors

View Source

DeferredOutput()

Declaration
public DeferredOutput()

Properties

View Source

Output

The Output<T> that represents the consumer side of this DeferredOutput<T>.

Declaration
public Output<T> Output { get; }
Property Value
Type Description
Output<T>

Methods

View Source

Resolve(Output<T>)

Resolves the value of the Output<T> represented by this DeferredOutput<T> to the same eventually resolved result as the provided Output<T>.

Declaration
public void Resolve(Output<T> output)
Parameters
Type Name Description
Output<T> output
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.