com.amazonaws.services.simspaceweaver.model.CreateSnapshotRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-simspaceweaver 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.simspaceweaver.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 CreateSnapshotRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot file.
*
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
*
*/
private S3Destination destination;
/**
*
* The name of the simulation.
*
*/
private String simulation;
/**
*
* The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot file.
*
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
*
*
* @param destination
* The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot
* file.
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
*/
public void setDestination(S3Destination destination) {
this.destination = destination;
}
/**
*
* The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot file.
*
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
*
*
* @return The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot
* file.
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
*/
public S3Destination getDestination() {
return this.destination;
}
/**
*
* The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot file.
*
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
*
*
* @param destination
* The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot
* file.
*
* The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateSnapshotRequest withDestination(S3Destination destination) {
setDestination(destination);
return this;
}
/**
*
* The name of the simulation.
*
*
* @param simulation
* The name of the simulation.
*/
public void setSimulation(String simulation) {
this.simulation = simulation;
}
/**
*
* The name of the simulation.
*
*
* @return The name of the simulation.
*/
public String getSimulation() {
return this.simulation;
}
/**
*
* The name of the simulation.
*
*
* @param simulation
* The name of the simulation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateSnapshotRequest withSimulation(String simulation) {
setSimulation(simulation);
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 (getDestination() != null)
sb.append("Destination: ").append(getDestination()).append(",");
if (getSimulation() != null)
sb.append("Simulation: ").append(getSimulation());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateSnapshotRequest == false)
return false;
CreateSnapshotRequest other = (CreateSnapshotRequest) obj;
if (other.getDestination() == null ^ this.getDestination() == null)
return false;
if (other.getDestination() != null && other.getDestination().equals(this.getDestination()) == false)
return false;
if (other.getSimulation() == null ^ this.getSimulation() == null)
return false;
if (other.getSimulation() != null && other.getSimulation().equals(this.getSimulation()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDestination() == null) ? 0 : getDestination().hashCode());
hashCode = prime * hashCode + ((getSimulation() == null) ? 0 : getSimulation().hashCode());
return hashCode;
}
@Override
public CreateSnapshotRequest clone() {
return (CreateSnapshotRequest) super.clone();
}
}