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

software.amazon.awssdk.services.kinesis.model.DescribeStreamConsumerResponse Maven / Gradle / Ivy

Go to download

A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.

There is a newer version: 2.5.20
Show newest version
/*
 * Copyright 2013-2018 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 software.amazon.awssdk.services.kinesis.model;

import java.util.Objects;
import java.util.Optional;
import java.util.function.Consumer;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class DescribeStreamConsumerResponse extends KinesisResponse implements
        ToCopyableBuilder {
    private final ConsumerDescription consumerDescription;

    private DescribeStreamConsumerResponse(BuilderImpl builder) {
        super(builder);
        this.consumerDescription = builder.consumerDescription;
    }

    /**
     * 

* An object that represents the details of the consumer. *

* * @return An object that represents the details of the consumer. */ public ConsumerDescription consumerDescription() { return consumerDescription; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(consumerDescription()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof DescribeStreamConsumerResponse)) { return false; } DescribeStreamConsumerResponse other = (DescribeStreamConsumerResponse) obj; return Objects.equals(consumerDescription(), other.consumerDescription()); } @Override public String toString() { return ToString.builder("DescribeStreamConsumerResponse").add("ConsumerDescription", consumerDescription()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ConsumerDescription": return Optional.ofNullable(clazz.cast(consumerDescription())); default: return Optional.empty(); } } public interface Builder extends KinesisResponse.Builder, CopyableBuilder { /** *

* An object that represents the details of the consumer. *

* * @param consumerDescription * An object that represents the details of the consumer. * @return Returns a reference to this object so that method calls can be chained together. */ Builder consumerDescription(ConsumerDescription consumerDescription); /** *

* An object that represents the details of the consumer. *

* This is a convenience that creates an instance of the {@link ConsumerDescription.Builder} avoiding the need * to create one manually via {@link ConsumerDescription#builder()}. * * When the {@link Consumer} completes, {@link ConsumerDescription.Builder#build()} is called immediately and * its result is passed to {@link #consumerDescription(ConsumerDescription)}. * * @param consumerDescription * a consumer that will call methods on {@link ConsumerDescription.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #consumerDescription(ConsumerDescription) */ default Builder consumerDescription(Consumer consumerDescription) { return consumerDescription(ConsumerDescription.builder().applyMutation(consumerDescription).build()); } } static final class BuilderImpl extends KinesisResponse.BuilderImpl implements Builder { private ConsumerDescription consumerDescription; private BuilderImpl() { } private BuilderImpl(DescribeStreamConsumerResponse model) { super(model); consumerDescription(model.consumerDescription); } public final ConsumerDescription.Builder getConsumerDescription() { return consumerDescription != null ? consumerDescription.toBuilder() : null; } @Override public final Builder consumerDescription(ConsumerDescription consumerDescription) { this.consumerDescription = consumerDescription; return this; } public final void setConsumerDescription(ConsumerDescription.BuilderImpl consumerDescription) { this.consumerDescription = consumerDescription != null ? consumerDescription.build() : null; } @Override public DescribeStreamConsumerResponse build() { return new DescribeStreamConsumerResponse(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy