Class DeferredOutput<T>
Represents the producer side of an Output<T> value, providing access to the consumer side through the Output property.
Inherited Members
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public sealed class DeferredOutput<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Constructors
View SourceDeferredOutput()
Declaration
public DeferredOutput()
Properties
View SourceOutput
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 SourceResolve(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 |