Interface StackReferenceOutputDetails

Records the output of a StackReference. Exactly one of value or secretValue will be set.

interface StackReferenceOutputDetails {
    secretValue?: any;
    value?: any;
}

Properties

Properties

secretValue?: any

A secret value returned by the StackReference.

This is null if the value is not a secret or it does not exist.

value?: any

An output value returned by the StackReference.

This is null if the value is a secret or it does not exist.

Generated using TypeDoc