com.amazonaws.services.kinesisanalyticsv2.model.ApplicationRestoreConfiguration Maven / Gradle / Ivy
Show all versions of aws-java-sdk-kinesisanalyticsv2 Show documentation
/*
* 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.kinesisanalyticsv2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Specifies the method and snapshot to use when restarting an application using previously saved application state.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ApplicationRestoreConfiguration implements Serializable, Cloneable, StructuredPojo {
/**
*
* Specifies how the application should be restored.
*
*/
private String applicationRestoreType;
/**
*
* The identifier of an existing snapshot of application state to use to restart an application. The application
* uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
*
*/
private String snapshotName;
/**
*
* Specifies how the application should be restored.
*
*
* @param applicationRestoreType
* Specifies how the application should be restored.
* @see ApplicationRestoreType
*/
public void setApplicationRestoreType(String applicationRestoreType) {
this.applicationRestoreType = applicationRestoreType;
}
/**
*
* Specifies how the application should be restored.
*
*
* @return Specifies how the application should be restored.
* @see ApplicationRestoreType
*/
public String getApplicationRestoreType() {
return this.applicationRestoreType;
}
/**
*
* Specifies how the application should be restored.
*
*
* @param applicationRestoreType
* Specifies how the application should be restored.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ApplicationRestoreType
*/
public ApplicationRestoreConfiguration withApplicationRestoreType(String applicationRestoreType) {
setApplicationRestoreType(applicationRestoreType);
return this;
}
/**
*
* Specifies how the application should be restored.
*
*
* @param applicationRestoreType
* Specifies how the application should be restored.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ApplicationRestoreType
*/
public ApplicationRestoreConfiguration withApplicationRestoreType(ApplicationRestoreType applicationRestoreType) {
this.applicationRestoreType = applicationRestoreType.toString();
return this;
}
/**
*
* The identifier of an existing snapshot of application state to use to restart an application. The application
* uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
*
*
* @param snapshotName
* The identifier of an existing snapshot of application state to use to restart an application. The
* application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
*/
public void setSnapshotName(String snapshotName) {
this.snapshotName = snapshotName;
}
/**
*
* The identifier of an existing snapshot of application state to use to restart an application. The application
* uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
*
*
* @return The identifier of an existing snapshot of application state to use to restart an application. The
* application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
*/
public String getSnapshotName() {
return this.snapshotName;
}
/**
*
* The identifier of an existing snapshot of application state to use to restart an application. The application
* uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
*
*
* @param snapshotName
* The identifier of an existing snapshot of application state to use to restart an application. The
* application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
* ApplicationRestoreType
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationRestoreConfiguration withSnapshotName(String snapshotName) {
setSnapshotName(snapshotName);
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 (getApplicationRestoreType() != null)
sb.append("ApplicationRestoreType: ").append(getApplicationRestoreType()).append(",");
if (getSnapshotName() != null)
sb.append("SnapshotName: ").append(getSnapshotName());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ApplicationRestoreConfiguration == false)
return false;
ApplicationRestoreConfiguration other = (ApplicationRestoreConfiguration) obj;
if (other.getApplicationRestoreType() == null ^ this.getApplicationRestoreType() == null)
return false;
if (other.getApplicationRestoreType() != null && other.getApplicationRestoreType().equals(this.getApplicationRestoreType()) == false)
return false;
if (other.getSnapshotName() == null ^ this.getSnapshotName() == null)
return false;
if (other.getSnapshotName() != null && other.getSnapshotName().equals(this.getSnapshotName()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationRestoreType() == null) ? 0 : getApplicationRestoreType().hashCode());
hashCode = prime * hashCode + ((getSnapshotName() == null) ? 0 : getSnapshotName().hashCode());
return hashCode;
}
@Override
public ApplicationRestoreConfiguration clone() {
try {
return (ApplicationRestoreConfiguration) 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.kinesisanalyticsv2.model.transform.ApplicationRestoreConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}