com.amazonaws.services.augmentedairuntime.model.HumanLoopOutput Maven / Gradle / Ivy
/*
 * 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.augmentedairuntime.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
 * 
 * Information about where the human output will be stored.
 * 
 * 
 * @see AWS API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class HumanLoopOutput implements Serializable, Cloneable, StructuredPojo {
    /**
     * 
     * The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     * 
     */
    private String outputS3Uri;
    /**
     * 
     * The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     * 
     * 
     * @param outputS3Uri
     *        The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     */
    public void setOutputS3Uri(String outputS3Uri) {
        this.outputS3Uri = outputS3Uri;
    }
    /**
     * 
     * The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     * 
     * 
     * @return The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     */
    public String getOutputS3Uri() {
        return this.outputS3Uri;
    }
    /**
     * 
     * The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     * 
     * 
     * @param outputS3Uri
     *        The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     * @return Returns a reference to this object so that method calls can be chained together.
     */
    public HumanLoopOutput withOutputS3Uri(String outputS3Uri) {
        setOutputS3Uri(outputS3Uri);
        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 (getOutputS3Uri() != null)
            sb.append("OutputS3Uri: ").append(getOutputS3Uri());
        sb.append("}");
        return sb.toString();
    }
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (obj instanceof HumanLoopOutput == false)
            return false;
        HumanLoopOutput other = (HumanLoopOutput) obj;
        if (other.getOutputS3Uri() == null ^ this.getOutputS3Uri() == null)
            return false;
        if (other.getOutputS3Uri() != null && other.getOutputS3Uri().equals(this.getOutputS3Uri()) == false)
            return false;
        return true;
    }
    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;
        hashCode = prime * hashCode + ((getOutputS3Uri() == null) ? 0 : getOutputS3Uri().hashCode());
        return hashCode;
    }
    @Override
    public HumanLoopOutput clone() {
        try {
            return (HumanLoopOutput) 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.augmentedairuntime.model.transform.HumanLoopOutputMarshaller.getInstance().marshall(this, protocolMarshaller);
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy