ResetDBParameterGroupMessage
public struct ResetDBParameterGroupMessage : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the DB parameter group. Constraints: Must match the name of an existing DBParameterGroup.
Declaration
Swift
public let dBParameterGroupName: String
-
To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request. Valid Values (for Apply method): pending-reboot
Declaration
Swift
public let parameters: [Parameter]?
-
Specifies whether (true) or not (false) to reset all parameters in the DB parameter group to default values. Default: true
Declaration
Swift
public let resetAllParameters: Bool?
-
Undocumented
Declaration
Swift
public init(dBParameterGroupName: String, parameters: [Parameter]? = nil, resetAllParameters: Bool? = nil)