Show / Hide Table of Contents

Class StackReferenceOutputDetails

Holds a StackReference's output value. At most one of Value and SecretValue will be set.

Inheritance
object
StackReferenceOutputDetails
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 StackReferenceOutputDetails

Properties

View Source

SecretValue

Secret output value returned by the StackReference. This field is only set if the output is a secret.

Declaration
public object? SecretValue { get; set; }
Property Value
Type Description
object
View Source

Value

Output value returned by the StackReference. This field is only set if the output is not a secret.

Declaration
public object? Value { get; set; }
Property Value
Type Description
object
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.