Show / Hide Table of Contents

Class Stash

Stash stores an arbitrary value in the state.

Inheritance
object
Resource
CustomResource
Stash
Inherited Members
CustomResource.Id
Resource.Urn
Resource.GetResourceType()
Resource.GetResourceName()
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 Stash : CustomResource

Constructors

View Source

Stash(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 Source

Input

The most recent value passed to the stash resource.

Declaration
[Output("input")]
public Output<object> Input { get; }
Property Value
Type Description
Output<object>
View Source

Output

The value saved in the state for the stash.

Declaration
[Output("output")]
public Output<object> Output { get; }
Property Value
Type Description
Output<object>
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.