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

com.amazonaws.services.medialive.model.ScheduleAction Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2018-2023 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.medialive.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * Contains information on a single schedule action.
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ScheduleAction implements Serializable, Cloneable, StructuredPojo {

    /**
     * The name of the action, must be unique within the schedule. This name provides the main reference to an action
     * once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is
     * automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that
     * point a name can be reused.
     */
    private String actionName;
    /** Settings for this schedule action. */
    private ScheduleActionSettings scheduleActionSettings;
    /** The time for the action to start in the channel. */
    private ScheduleActionStartSettings scheduleActionStartSettings;

    /**
     * The name of the action, must be unique within the schedule. This name provides the main reference to an action
     * once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is
     * automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that
     * point a name can be reused.
     * 
     * @param actionName
     *        The name of the action, must be unique within the schedule. This name provides the main reference to an
     *        action once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule
     *        is automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so
     *        at that point a name can be reused.
     */

    public void setActionName(String actionName) {
        this.actionName = actionName;
    }

    /**
     * The name of the action, must be unique within the schedule. This name provides the main reference to an action
     * once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is
     * automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that
     * point a name can be reused.
     * 
     * @return The name of the action, must be unique within the schedule. This name provides the main reference to an
     *         action once it is added to the schedule. A name is unique if it is no longer in the schedule. The
     *         schedule is automatically cleaned up to remove actions with a start time of more than 1 hour ago
     *         (approximately) so at that point a name can be reused.
     */

    public String getActionName() {
        return this.actionName;
    }

    /**
     * The name of the action, must be unique within the schedule. This name provides the main reference to an action
     * once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is
     * automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that
     * point a name can be reused.
     * 
     * @param actionName
     *        The name of the action, must be unique within the schedule. This name provides the main reference to an
     *        action once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule
     *        is automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so
     *        at that point a name can be reused.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public ScheduleAction withActionName(String actionName) {
        setActionName(actionName);
        return this;
    }

    /**
     * Settings for this schedule action.
     * 
     * @param scheduleActionSettings
     *        Settings for this schedule action.
     */

    public void setScheduleActionSettings(ScheduleActionSettings scheduleActionSettings) {
        this.scheduleActionSettings = scheduleActionSettings;
    }

    /**
     * Settings for this schedule action.
     * 
     * @return Settings for this schedule action.
     */

    public ScheduleActionSettings getScheduleActionSettings() {
        return this.scheduleActionSettings;
    }

    /**
     * Settings for this schedule action.
     * 
     * @param scheduleActionSettings
     *        Settings for this schedule action.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public ScheduleAction withScheduleActionSettings(ScheduleActionSettings scheduleActionSettings) {
        setScheduleActionSettings(scheduleActionSettings);
        return this;
    }

    /**
     * The time for the action to start in the channel.
     * 
     * @param scheduleActionStartSettings
     *        The time for the action to start in the channel.
     */

    public void setScheduleActionStartSettings(ScheduleActionStartSettings scheduleActionStartSettings) {
        this.scheduleActionStartSettings = scheduleActionStartSettings;
    }

    /**
     * The time for the action to start in the channel.
     * 
     * @return The time for the action to start in the channel.
     */

    public ScheduleActionStartSettings getScheduleActionStartSettings() {
        return this.scheduleActionStartSettings;
    }

    /**
     * The time for the action to start in the channel.
     * 
     * @param scheduleActionStartSettings
     *        The time for the action to start in the channel.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public ScheduleAction withScheduleActionStartSettings(ScheduleActionStartSettings scheduleActionStartSettings) {
        setScheduleActionStartSettings(scheduleActionStartSettings);
        return this;
    }

    /**
     * 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 (getActionName() != null)
            sb.append("ActionName: ").append(getActionName()).append(",");
        if (getScheduleActionSettings() != null)
            sb.append("ScheduleActionSettings: ").append(getScheduleActionSettings()).append(",");
        if (getScheduleActionStartSettings() != null)
            sb.append("ScheduleActionStartSettings: ").append(getScheduleActionStartSettings());
        sb.append("}");
        return sb.toString();
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;

        if (obj instanceof ScheduleAction == false)
            return false;
        ScheduleAction other = (ScheduleAction) obj;
        if (other.getActionName() == null ^ this.getActionName() == null)
            return false;
        if (other.getActionName() != null && other.getActionName().equals(this.getActionName()) == false)
            return false;
        if (other.getScheduleActionSettings() == null ^ this.getScheduleActionSettings() == null)
            return false;
        if (other.getScheduleActionSettings() != null && other.getScheduleActionSettings().equals(this.getScheduleActionSettings()) == false)
            return false;
        if (other.getScheduleActionStartSettings() == null ^ this.getScheduleActionStartSettings() == null)
            return false;
        if (other.getScheduleActionStartSettings() != null && other.getScheduleActionStartSettings().equals(this.getScheduleActionStartSettings()) == false)
            return false;
        return true;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;

        hashCode = prime * hashCode + ((getActionName() == null) ? 0 : getActionName().hashCode());
        hashCode = prime * hashCode + ((getScheduleActionSettings() == null) ? 0 : getScheduleActionSettings().hashCode());
        hashCode = prime * hashCode + ((getScheduleActionStartSettings() == null) ? 0 : getScheduleActionStartSettings().hashCode());
        return hashCode;
    }

    @Override
    public ScheduleAction clone() {
        try {
            return (ScheduleAction) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
        }
    }

    @com.amazonaws.annotation.SdkInternalApi
    @Override
    public void marshall(ProtocolMarshaller protocolMarshaller) {
        com.amazonaws.services.medialive.model.transform.ScheduleActionMarshaller.getInstance().marshall(this, protocolMarshaller);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy