예제 #1
0
 /**
  * Specifies how to apply the WLM configuration parameter. Some properties can be applied
  * dynamically, while other properties require that any associated clusters be rebooted for the
  * configuration changes to be applied. For more information about parameters and parameter
  * groups, go to <a
  * href="http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon
  * Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.
  *
  * <p>Returns a reference to this object so that method calls can be chained together.
  *
  * <p><b>Constraints:</b><br>
  * <b>Allowed Values: </b>static, dynamic
  *
  * @param applyType Specifies how to apply the WLM configuration parameter. Some properties can be
  *     applied dynamically, while other properties require that any associated clusters be
  *     rebooted for the configuration changes to be applied. For more information about parameters
  *     and parameter groups, go to <a
  *     href="http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon
  *     Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.
  * @return A reference to this updated object so that method calls can be chained together.
  * @see ParameterApplyType
  */
 public Parameter withApplyType(ParameterApplyType applyType) {
   this.applyType = applyType.toString();
   return this;
 }
예제 #2
0
 /**
  * Specifies how to apply the WLM configuration parameter. Some properties can be applied
  * dynamically, while other properties require that any associated clusters be rebooted for the
  * configuration changes to be applied. For more information about parameters and parameter
  * groups, go to <a
  * href="http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon
  * Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.
  *
  * <p><b>Constraints:</b><br>
  * <b>Allowed Values: </b>static, dynamic
  *
  * @param applyType Specifies how to apply the WLM configuration parameter. Some properties can be
  *     applied dynamically, while other properties require that any associated clusters be
  *     rebooted for the configuration changes to be applied. For more information about parameters
  *     and parameter groups, go to <a
  *     href="http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon
  *     Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.
  * @see ParameterApplyType
  */
 public void setApplyType(ParameterApplyType applyType) {
   this.applyType = applyType.toString();
 }