ResetCacheParameterGroupMessage
public struct ResetCacheParameterGroupMessage : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the cache parameter group to reset.
Declaration
Swift
public let cacheParameterGroupName: String
-
An array of parameter names to reset to their default values. If ResetAllParameters is true, do not use ParameterNameValues. If ResetAllParameters is false, you must specify the name of at least one parameter to reset.
Declaration
Swift
public let parameterNameValues: [ParameterNameValue]?
-
If true, all parameters in the cache parameter group are reset to their default values. If false, only the parameters listed by ParameterNameValues are reset to their default values. Valid values: true | false
Declaration
Swift
public let resetAllParameters: Bool?
-
Undocumented
Declaration
Swift
public init(cacheParameterGroupName: String, parameterNameValues: [ParameterNameValue]? = nil, resetAllParameters: Bool? = nil)