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

com.amazonaws.services.simplesystemsmanagement.model.GetCalendarStateResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Simple Systems Management Service holds the client classes that are used for communicating with the AWS Simple Systems Management 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.simplesystemsmanagement.model;

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

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

    /**
     * 

* The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a * CLOSED calendar indicates that actions aren't allowed to proceed. *

*/ private String state; /** *

* The time, as an ISO 8601 string, that you specified in your * command. If you don't specify a time, GetCalendarState uses the current time. *

*/ private String atTime; /** *

* The time, as an ISO 8601 string, that the calendar state * will change. If the current calendar state is OPEN, NextTransitionTime indicates when * the calendar state changes to CLOSED, and vice-versa. *

*/ private String nextTransitionTime; /** *

* The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a * CLOSED calendar indicates that actions aren't allowed to proceed. *

* * @param state * The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, * and a CLOSED calendar indicates that actions aren't allowed to proceed. * @see CalendarState */ public void setState(String state) { this.state = state; } /** *

* The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a * CLOSED calendar indicates that actions aren't allowed to proceed. *

* * @return The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, * and a CLOSED calendar indicates that actions aren't allowed to proceed. * @see CalendarState */ public String getState() { return this.state; } /** *

* The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a * CLOSED calendar indicates that actions aren't allowed to proceed. *

* * @param state * The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, * and a CLOSED calendar indicates that actions aren't allowed to proceed. * @return Returns a reference to this object so that method calls can be chained together. * @see CalendarState */ public GetCalendarStateResult withState(String state) { setState(state); return this; } /** *

* The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a * CLOSED calendar indicates that actions aren't allowed to proceed. *

* * @param state * The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, * and a CLOSED calendar indicates that actions aren't allowed to proceed. * @return Returns a reference to this object so that method calls can be chained together. * @see CalendarState */ public GetCalendarStateResult withState(CalendarState state) { this.state = state.toString(); return this; } /** *

* The time, as an ISO 8601 string, that you specified in your * command. If you don't specify a time, GetCalendarState uses the current time. *

* * @param atTime * The time, as an ISO 8601 string, that you specified * in your command. If you don't specify a time, GetCalendarState uses the current time. */ public void setAtTime(String atTime) { this.atTime = atTime; } /** *

* The time, as an ISO 8601 string, that you specified in your * command. If you don't specify a time, GetCalendarState uses the current time. *

* * @return The time, as an ISO 8601 string, that you specified * in your command. If you don't specify a time, GetCalendarState uses the current time. */ public String getAtTime() { return this.atTime; } /** *

* The time, as an ISO 8601 string, that you specified in your * command. If you don't specify a time, GetCalendarState uses the current time. *

* * @param atTime * The time, as an ISO 8601 string, that you specified * in your command. If you don't specify a time, GetCalendarState uses the current time. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCalendarStateResult withAtTime(String atTime) { setAtTime(atTime); return this; } /** *

* The time, as an ISO 8601 string, that the calendar state * will change. If the current calendar state is OPEN, NextTransitionTime indicates when * the calendar state changes to CLOSED, and vice-versa. *

* * @param nextTransitionTime * The time, as an ISO 8601 string, that the calendar * state will change. If the current calendar state is OPEN, NextTransitionTime * indicates when the calendar state changes to CLOSED, and vice-versa. */ public void setNextTransitionTime(String nextTransitionTime) { this.nextTransitionTime = nextTransitionTime; } /** *

* The time, as an ISO 8601 string, that the calendar state * will change. If the current calendar state is OPEN, NextTransitionTime indicates when * the calendar state changes to CLOSED, and vice-versa. *

* * @return The time, as an ISO 8601 string, that the calendar * state will change. If the current calendar state is OPEN, NextTransitionTime * indicates when the calendar state changes to CLOSED, and vice-versa. */ public String getNextTransitionTime() { return this.nextTransitionTime; } /** *

* The time, as an ISO 8601 string, that the calendar state * will change. If the current calendar state is OPEN, NextTransitionTime indicates when * the calendar state changes to CLOSED, and vice-versa. *

* * @param nextTransitionTime * The time, as an ISO 8601 string, that the calendar * state will change. If the current calendar state is OPEN, NextTransitionTime * indicates when the calendar state changes to CLOSED, and vice-versa. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCalendarStateResult withNextTransitionTime(String nextTransitionTime) { setNextTransitionTime(nextTransitionTime); 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 (getState() != null) sb.append("State: ").append(getState()).append(","); if (getAtTime() != null) sb.append("AtTime: ").append(getAtTime()).append(","); if (getNextTransitionTime() != null) sb.append("NextTransitionTime: ").append(getNextTransitionTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetCalendarStateResult == false) return false; GetCalendarStateResult other = (GetCalendarStateResult) obj; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getAtTime() == null ^ this.getAtTime() == null) return false; if (other.getAtTime() != null && other.getAtTime().equals(this.getAtTime()) == false) return false; if (other.getNextTransitionTime() == null ^ this.getNextTransitionTime() == null) return false; if (other.getNextTransitionTime() != null && other.getNextTransitionTime().equals(this.getNextTransitionTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getAtTime() == null) ? 0 : getAtTime().hashCode()); hashCode = prime * hashCode + ((getNextTransitionTime() == null) ? 0 : getNextTransitionTime().hashCode()); return hashCode; } @Override public GetCalendarStateResult clone() { try { return (GetCalendarStateResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy