ValidateConfigurationSettingsMessage

public struct ValidateConfigurationSettingsMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the application that the configuration template or environment belongs to.

    Declaration

    Swift

    public let applicationName: String
  • The name of the environment to validate the settings against. Condition: You cannot specify both this and a configuration template name.

    Declaration

    Swift

    public let environmentName: String?
  • A list of the options and desired values to evaluate.

    Declaration

    Swift

    public let optionSettings: [ConfigurationOptionSetting]
  • The name of the configuration template to validate the settings against. Condition: You cannot specify both this and an environment name.

    Declaration

    Swift

    public let templateName: String?
  • Undocumented

    Declaration

    Swift

    public init(applicationName: String, environmentName: String? = nil, optionSettings: [ConfigurationOptionSetting], templateName: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws