All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.redshift.model.CreateScheduledActionRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Redshift module holds the client classes that are used for communicating with Amazon Redshift Service

The newest version!
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.redshift.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateScheduledActionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the scheduled action. The name must be unique within an account. For more information about this * parameter, see ScheduledAction. *

*/ private String scheduledActionName; /** *

* A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this * parameter, see ScheduledAction. *

*/ private ScheduledActionType targetAction; /** *

* The schedule in at( ) or cron( ) format. For more information about this parameter, see * ScheduledAction. *

*/ private String schedule; /** *

* The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. *

*/ private String iamRole; /** *

* The description of the scheduled action. *

*/ private String scheduledActionDescription; /** *

* The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

*/ private java.util.Date startTime; /** *

* The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

*/ private java.util.Date endTime; /** *

* If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about * state of the scheduled action, see ScheduledAction. *

*/ private Boolean enable; /** *

* The name of the scheduled action. The name must be unique within an account. For more information about this * parameter, see ScheduledAction. *

* * @param scheduledActionName * The name of the scheduled action. The name must be unique within an account. For more information about * this parameter, see ScheduledAction. */ public void setScheduledActionName(String scheduledActionName) { this.scheduledActionName = scheduledActionName; } /** *

* The name of the scheduled action. The name must be unique within an account. For more information about this * parameter, see ScheduledAction. *

* * @return The name of the scheduled action. The name must be unique within an account. For more information about * this parameter, see ScheduledAction. */ public String getScheduledActionName() { return this.scheduledActionName; } /** *

* The name of the scheduled action. The name must be unique within an account. For more information about this * parameter, see ScheduledAction. *

* * @param scheduledActionName * The name of the scheduled action. The name must be unique within an account. For more information about * this parameter, see ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withScheduledActionName(String scheduledActionName) { setScheduledActionName(scheduledActionName); return this; } /** *

* A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this * parameter, see ScheduledAction. *

* * @param targetAction * A JSON format string of the Amazon Redshift API operation with input parameters. For more information * about this parameter, see ScheduledAction. */ public void setTargetAction(ScheduledActionType targetAction) { this.targetAction = targetAction; } /** *

* A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this * parameter, see ScheduledAction. *

* * @return A JSON format string of the Amazon Redshift API operation with input parameters. For more information * about this parameter, see ScheduledAction. */ public ScheduledActionType getTargetAction() { return this.targetAction; } /** *

* A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this * parameter, see ScheduledAction. *

* * @param targetAction * A JSON format string of the Amazon Redshift API operation with input parameters. For more information * about this parameter, see ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withTargetAction(ScheduledActionType targetAction) { setTargetAction(targetAction); return this; } /** *

* The schedule in at( ) or cron( ) format. For more information about this parameter, see * ScheduledAction. *

* * @param schedule * The schedule in at( ) or cron( ) format. For more information about this * parameter, see ScheduledAction. */ public void setSchedule(String schedule) { this.schedule = schedule; } /** *

* The schedule in at( ) or cron( ) format. For more information about this parameter, see * ScheduledAction. *

* * @return The schedule in at( ) or cron( ) format. For more information about this * parameter, see ScheduledAction. */ public String getSchedule() { return this.schedule; } /** *

* The schedule in at( ) or cron( ) format. For more information about this parameter, see * ScheduledAction. *

* * @param schedule * The schedule in at( ) or cron( ) format. For more information about this * parameter, see ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withSchedule(String schedule) { setSchedule(schedule); return this; } /** *

* The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. *

* * @param iamRole * The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. */ public void setIamRole(String iamRole) { this.iamRole = iamRole; } /** *

* The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. *

* * @return The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. */ public String getIamRole() { return this.iamRole; } /** *

* The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. *

* * @param iamRole * The IAM role to assume to run the target action. For more information about this parameter, see * ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withIamRole(String iamRole) { setIamRole(iamRole); return this; } /** *

* The description of the scheduled action. *

* * @param scheduledActionDescription * The description of the scheduled action. */ public void setScheduledActionDescription(String scheduledActionDescription) { this.scheduledActionDescription = scheduledActionDescription; } /** *

* The description of the scheduled action. *

* * @return The description of the scheduled action. */ public String getScheduledActionDescription() { return this.scheduledActionDescription; } /** *

* The description of the scheduled action. *

* * @param scheduledActionDescription * The description of the scheduled action. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withScheduledActionDescription(String scheduledActionDescription) { setScheduledActionDescription(scheduledActionDescription); return this; } /** *

* The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

* * @param startTime * The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. * For more information about this parameter, see ScheduledAction. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** *

* The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

* * @return The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. * For more information about this parameter, see ScheduledAction. */ public java.util.Date getStartTime() { return this.startTime; } /** *

* The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

* * @param startTime * The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. * For more information about this parameter, see ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** *

* The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

* * @param endTime * The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For * more information about this parameter, see ScheduledAction. */ public void setEndTime(java.util.Date endTime) { this.endTime = endTime; } /** *

* The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

* * @return The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For * more information about this parameter, see ScheduledAction. */ public java.util.Date getEndTime() { return this.endTime; } /** *

* The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more * information about this parameter, see ScheduledAction. *

* * @param endTime * The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For * more information about this parameter, see ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** *

* If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about * state of the scheduled action, see ScheduledAction. *

* * @param enable * If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information * about state of the scheduled action, see ScheduledAction. */ public void setEnable(Boolean enable) { this.enable = enable; } /** *

* If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about * state of the scheduled action, see ScheduledAction. *

* * @return If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information * about state of the scheduled action, see ScheduledAction. */ public Boolean getEnable() { return this.enable; } /** *

* If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about * state of the scheduled action, see ScheduledAction. *

* * @param enable * If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information * about state of the scheduled action, see ScheduledAction. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledActionRequest withEnable(Boolean enable) { setEnable(enable); return this; } /** *

* If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about * state of the scheduled action, see ScheduledAction. *

* * @return If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information * about state of the scheduled action, see ScheduledAction. */ public Boolean isEnable() { return this.enable; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getScheduledActionName() != null) sb.append("ScheduledActionName: ").append(getScheduledActionName()).append(","); if (getTargetAction() != null) sb.append("TargetAction: ").append(getTargetAction()).append(","); if (getSchedule() != null) sb.append("Schedule: ").append(getSchedule()).append(","); if (getIamRole() != null) sb.append("IamRole: ").append(getIamRole()).append(","); if (getScheduledActionDescription() != null) sb.append("ScheduledActionDescription: ").append(getScheduledActionDescription()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getEndTime() != null) sb.append("EndTime: ").append(getEndTime()).append(","); if (getEnable() != null) sb.append("Enable: ").append(getEnable()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateScheduledActionRequest == false) return false; CreateScheduledActionRequest other = (CreateScheduledActionRequest) obj; if (other.getScheduledActionName() == null ^ this.getScheduledActionName() == null) return false; if (other.getScheduledActionName() != null && other.getScheduledActionName().equals(this.getScheduledActionName()) == false) return false; if (other.getTargetAction() == null ^ this.getTargetAction() == null) return false; if (other.getTargetAction() != null && other.getTargetAction().equals(this.getTargetAction()) == false) return false; if (other.getSchedule() == null ^ this.getSchedule() == null) return false; if (other.getSchedule() != null && other.getSchedule().equals(this.getSchedule()) == false) return false; if (other.getIamRole() == null ^ this.getIamRole() == null) return false; if (other.getIamRole() != null && other.getIamRole().equals(this.getIamRole()) == false) return false; if (other.getScheduledActionDescription() == null ^ this.getScheduledActionDescription() == null) return false; if (other.getScheduledActionDescription() != null && other.getScheduledActionDescription().equals(this.getScheduledActionDescription()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; if (other.getEndTime() == null ^ this.getEndTime() == null) return false; if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false) return false; if (other.getEnable() == null ^ this.getEnable() == null) return false; if (other.getEnable() != null && other.getEnable().equals(this.getEnable()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getScheduledActionName() == null) ? 0 : getScheduledActionName().hashCode()); hashCode = prime * hashCode + ((getTargetAction() == null) ? 0 : getTargetAction().hashCode()); hashCode = prime * hashCode + ((getSchedule() == null) ? 0 : getSchedule().hashCode()); hashCode = prime * hashCode + ((getIamRole() == null) ? 0 : getIamRole().hashCode()); hashCode = prime * hashCode + ((getScheduledActionDescription() == null) ? 0 : getScheduledActionDescription().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode()); hashCode = prime * hashCode + ((getEnable() == null) ? 0 : getEnable().hashCode()); return hashCode; } @Override public CreateScheduledActionRequest clone() { return (CreateScheduledActionRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy