Parameter

public struct Parameter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • arn

    The Amazon Resource Name (ARN) of the parameter.

    Declaration

    Swift

    public let arn: String?
  • The data type of the parameter, such as text or aws:ec2:image. The default is text.

    Declaration

    Swift

    public let dataType: String?
  • Date the parameter was last changed or updated and the parameter version was created.

    Declaration

    Swift

    public let lastModifiedDate: TimeStamp?
  • The name of the parameter.

    Declaration

    Swift

    public let name: String?
  • Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats: parameter_name:version parameter_name:label

    Declaration

    Swift

    public let selector: String?
  • Applies to parameters that reference information in other AWS services. SourceResult is the raw result or response from the source.

    Declaration

    Swift

    public let sourceResult: String?
  • The type of parameter. Valid values include the following: String, StringList, and SecureString.

    Declaration

    Swift

    public let type: ParameterType?
  • The parameter value.

    Declaration

    Swift

    public let value: String?
  • The parameter version.

    Declaration

    Swift

    public let version: Int64?
  • Undocumented

    Declaration

    Swift

    public init(arn: String? = nil, dataType: String? = nil, lastModifiedDate: TimeStamp? = nil, name: String? = nil, selector: String? = nil, sourceResult: String? = nil, type: ParameterType? = nil, value: String? = nil, version: Int64? = nil)