Parameter

public struct Parameter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The key associated with the parameter. If you don’t specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.

    Declaration

    Swift

    public let parameterKey: String?
  • The input value associated with the parameter.

    Declaration

    Swift

    public let parameterValue: String?
  • Read-only. The value that corresponds to a Systems Manager parameter key. This field is returned only for SSM parameter types in the template.

    Declaration

    Swift

    public let resolvedValue: String?
  • During a stack update, use the existing parameter value that the stack is using for a given parameter key. If you specify true, do not specify a parameter value.

    Declaration

    Swift

    public let usePreviousValue: Bool?
  • Undocumented

    Declaration

    Swift

    public init(parameterKey: String? = nil, parameterValue: String? = nil, resolvedValue: String? = nil, usePreviousValue: Bool? = nil)