Interface StackReferenceOutputDetails

Records the output of a StackReference. At most one of th evalue and secretValue fields will be set.

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

Properties

Properties

secretValue?: any

Secret value returned by the StackReference. This is null if the value is not a secret or it does not exist.

value?: any

Output value returned by the StackReference. This is null if the value is a secret or it does not exist.

Generated using TypeDoc