Package com.pulumi.resources
Class StackReferenceOutputDetails
- java.lang.Object
-
- com.pulumi.resources.StackReferenceOutputDetails
-
public class StackReferenceOutputDetails extends java.lang.Object
StackReferenceOutputDetails records an output from a StackReference.At most one of value and secretValue will be set.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StackReferenceOutputDetails.Builder
Builds instances of typeStackReferenceOutputDetails
.
-
Constructor Summary
Constructors Modifier Constructor Description protected
StackReferenceOutputDetails(java.util.Optional<java.lang.Object> value, java.util.Optional<java.lang.Object> secretValue)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StackReferenceOutputDetails.Builder
builder()
Creates a builder for aStackReferenceOutputDetails
.java.util.Optional<java.lang.Object>
getSecretValue()
Returns the secret value of the output.java.util.Optional<java.lang.Object>
getValue()
Returns the value of the output.
-
-
-
Method Detail
-
getValue
public java.util.Optional<java.lang.Object> getValue()
Returns the value of the output.Returns an absent value if the output is a secret or if it does not exist.
-
getSecretValue
public java.util.Optional<java.lang.Object> getSecretValue()
Returns the secret value of the output.Returns an absent value if the output is not a secret or if it does not exist.
-
builder
public static StackReferenceOutputDetails.Builder builder()
Creates a builder for aStackReferenceOutputDetails
.- Returns:
- a builder instance
-
-