ResetClusterParameterGroupMessage

public struct ResetClusterParameterGroupMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the cluster parameter group to be reset.

    Declaration

    Swift

    public let parameterGroupName: String
  • An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied. Constraints: A maximum of 20 parameters can be reset in a single request.

    Declaration

    Swift

    public let parameters: [Parameter]?
  • If true, all parameters in the specified parameter group will be reset to their default values. Default: true

    Declaration

    Swift

    public let resetAllParameters: Bool?
  • Undocumented

    Declaration

    Swift

    public init(parameterGroupName: String, parameters: [Parameter]? = nil, resetAllParameters: Bool? = nil)