Class Stash
Stash stores an arbitrary value in the state.
Inherited Members
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public sealed class Stash : CustomResource
Constructors
View SourceStash(string, StashArgs, CustomResourceOptions?)
Create a Stash resource with the given arguments and options.
Declaration
public Stash(string name, StashArgs args, CustomResourceOptions? options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The unique name of the resource. |
| StashArgs | args | The arguments to use to populate this resource's properties. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior. |
Properties
View SourceInput
The most recent value passed to the stash resource.
Declaration
[Output("input")]
public Output<object> Input { get; }
Property Value
| Type | Description |
|---|---|
| Output<object> |
Output
The value saved in the state for the stash.
Declaration
[Output("output")]
public Output<object> Output { get; }
Property Value
| Type | Description |
|---|---|
| Output<object> |