Values
public struct Values : Decodable
A values representation is used in both state and plan output to describe current state (which is always complete) and planned state (which omits values not known until apply).
-
Undocumented
See moreDeclaration
Swift
public struct Output : Decodable
-
outputs
describes the outputs from the root module. Outputs from descendent modules are not available because they are not retained in all of the underlying structures we will build this values representation from.Declaration
Swift
public let outputs: Dictionary<String, Output>
-
rootModule
describes the resources and child modules in the root module.Declaration
Swift
public let rootModule: Module?
-
Declaration
Swift
public init(from decoder: Decoder) throws