Amazon.RDS.AmazonRDSClient.ResetDBClusterParameterGroup C# (CSharp) Метод

ResetDBClusterParameterGroup() публичный Метод

Modifies the parameters of a DB cluster parameter group to the default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod. To reset the entire DB cluster parameter group, specify the DBClusterParameterGroupName and ResetAllParameters parameters.

When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request. You must call RebootDBInstance for every DB instance in your DB cluster that you want the updated static parameter to apply to.

For more information on Amazon Aurora, see Aurora on Amazon RDS in the Amazon RDS User Guide.

/// DBParameterGroupName does not refer to an existing DB parameter group. /// /// The DB parameter group cannot be deleted because it is in use. ///
public ResetDBClusterParameterGroup ( ResetDBClusterParameterGroupRequest request ) : ResetDBClusterParameterGroupResponse
request ResetDBClusterParameterGroupRequest Container for the necessary parameters to execute the ResetDBClusterParameterGroup service method.
Результат ResetDBClusterParameterGroupResponse
        public ResetDBClusterParameterGroupResponse ResetDBClusterParameterGroup(ResetDBClusterParameterGroupRequest request)
        {
            var marshaller = new ResetDBClusterParameterGroupRequestMarshaller();
            var unmarshaller = ResetDBClusterParameterGroupResponseUnmarshaller.Instance;

            return Invoke<ResetDBClusterParameterGroupRequest,ResetDBClusterParameterGroupResponse>(request, marshaller, unmarshaller);
        }
AmazonRDSClient