ConfigurationOptionDescription

public struct ConfigurationOptionDescription : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An indication of which action is required if the value for this configuration option changes: NoInterruption : There is no interruption to the environment or application availability. RestartEnvironment : The environment is entirely restarted, all AWS resources are deleted and recreated, and the environment is unavailable during the process. RestartApplicationServer : The environment is available the entire time. However, a short application outage occurs when the application servers on the running Amazon EC2 instances are restarted.

    Declaration

    Swift

    public let changeSeverity: String?
  • The default value for this configuration option.

    Declaration

    Swift

    public let defaultValue: String?
  • If specified, the configuration option must be a string value no longer than this value.

    Declaration

    Swift

    public let maxLength: Int?
  • If specified, the configuration option must be a numeric value less than this value.

    Declaration

    Swift

    public let maxValue: Int?
  • If specified, the configuration option must be a numeric value greater than this value.

    Declaration

    Swift

    public let minValue: Int?
  • The name of the configuration option.

    Declaration

    Swift

    public let name: String?
  • A unique namespace identifying the option’s associated AWS resource.

    Declaration

    Swift

    public let namespace: String?
  • If specified, the configuration option must be a string value that satisfies this regular expression.

    Declaration

    Swift

    public let regex: OptionRestrictionRegex?
  • An indication of whether the user defined this configuration option: true : This configuration option was defined by the user. It is a valid choice for specifying if this as an Option to Remove when updating configuration settings. false : This configuration was not defined by the user. Constraint: You can remove only UserDefined options from a configuration. Valid Values: true | false

    Declaration

    Swift

    public let userDefined: Bool?
  • If specified, values for the configuration option are selected from this list.

    Declaration

    Swift

    public let valueOptions: [String]?
  • An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values: Scalar : Values for this option are a single selection from the possible values, or an unformatted string, or numeric value governed by the MIN/MAX/Regex constraints. List : Values for this option are multiple selections from the possible values. Boolean : Values for this option are either true or false . Json : Values for this option are a JSON representation of a ConfigDocument.

    Declaration

    Swift

    public let valueType: ConfigurationOptionValueType?
  • Undocumented

    Declaration

    Swift

    public init(changeSeverity: String? = nil, defaultValue: String? = nil, maxLength: Int? = nil, maxValue: Int? = nil, minValue: Int? = nil, name: String? = nil, namespace: String? = nil, regex: OptionRestrictionRegex? = nil, userDefined: Bool? = nil, valueOptions: [String]? = nil, valueType: ConfigurationOptionValueType? = nil)