Export

public struct Export : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The stack that contains the exported output name and value.

    Declaration

    Swift

    public let exportingStackId: String?
  • The name of exported output value. Use this name and the Fn::ImportValue function to import the associated value into other stacks. The name is defined in the Export field in the associated stack’s Outputs section.

    Declaration

    Swift

    public let name: String?
  • The value of the exported output, such as a resource physical ID. This value is defined in the Export field in the associated stack’s Outputs section.

    Declaration

    Swift

    public let value: String?
  • Undocumented

    Declaration

    Swift

    public init(exportingStackId: String? = nil, name: String? = nil, value: String? = nil)