software.amazon.awssdk.services.firehose.model.DescribeDeliveryStreamRequest Maven / Gradle / Ivy
Show all versions of kinesis Show documentation
/*
* 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.firehose.model;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Consumer;
import javax.annotation.Generated;
import software.amazon.awssdk.core.AwsRequestOverrideConfig;
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 class DescribeDeliveryStreamRequest extends FirehoseRequest implements
ToCopyableBuilder {
private final String deliveryStreamName;
private final Integer limit;
private final String exclusiveStartDestinationId;
private DescribeDeliveryStreamRequest(BuilderImpl builder) {
super(builder);
this.deliveryStreamName = builder.deliveryStreamName;
this.limit = builder.limit;
this.exclusiveStartDestinationId = builder.exclusiveStartDestinationId;
}
/**
*
* The name of the delivery stream.
*
*
* @return The name of the delivery stream.
*/
public String deliveryStreamName() {
return deliveryStreamName;
}
/**
*
* The limit on the number of destinations to return. Currently, you can have one destination per delivery stream.
*
*
* @return The limit on the number of destinations to return. Currently, you can have one destination per delivery
* stream.
*/
public Integer limit() {
return limit;
}
/**
*
* The ID of the destination to start returning the destination information. Currently, Kinesis Firehose supports
* one destination per delivery stream.
*
*
* @return The ID of the destination to start returning the destination information. Currently, Kinesis Firehose
* supports one destination per delivery stream.
*/
public String exclusiveStartDestinationId() {
return exclusiveStartDestinationId;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(deliveryStreamName());
hashCode = 31 * hashCode + Objects.hashCode(limit());
hashCode = 31 * hashCode + Objects.hashCode(exclusiveStartDestinationId());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof DescribeDeliveryStreamRequest)) {
return false;
}
DescribeDeliveryStreamRequest other = (DescribeDeliveryStreamRequest) obj;
return Objects.equals(deliveryStreamName(), other.deliveryStreamName()) && Objects.equals(limit(), other.limit())
&& Objects.equals(exclusiveStartDestinationId(), other.exclusiveStartDestinationId());
}
@Override
public String toString() {
return ToString.builder("DescribeDeliveryStreamRequest").add("DeliveryStreamName", deliveryStreamName())
.add("Limit", limit()).add("ExclusiveStartDestinationId", exclusiveStartDestinationId()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "DeliveryStreamName":
return Optional.of(clazz.cast(deliveryStreamName()));
case "Limit":
return Optional.of(clazz.cast(limit()));
case "ExclusiveStartDestinationId":
return Optional.of(clazz.cast(exclusiveStartDestinationId()));
default:
return Optional.empty();
}
}
public interface Builder extends FirehoseRequest.Builder, CopyableBuilder {
/**
*
* The name of the delivery stream.
*
*
* @param deliveryStreamName
* The name of the delivery stream.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder deliveryStreamName(String deliveryStreamName);
/**
*
* The limit on the number of destinations to return. Currently, you can have one destination per delivery
* stream.
*
*
* @param limit
* The limit on the number of destinations to return. Currently, you can have one destination per
* delivery stream.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder limit(Integer limit);
/**
*
* The ID of the destination to start returning the destination information. Currently, Kinesis Firehose
* supports one destination per delivery stream.
*
*
* @param exclusiveStartDestinationId
* The ID of the destination to start returning the destination information. Currently, Kinesis Firehose
* supports one destination per delivery stream.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder exclusiveStartDestinationId(String exclusiveStartDestinationId);
@Override
Builder requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig);
}
static final class BuilderImpl extends FirehoseRequest.BuilderImpl implements Builder {
private String deliveryStreamName;
private Integer limit;
private String exclusiveStartDestinationId;
private BuilderImpl() {
}
private BuilderImpl(DescribeDeliveryStreamRequest model) {
deliveryStreamName(model.deliveryStreamName);
limit(model.limit);
exclusiveStartDestinationId(model.exclusiveStartDestinationId);
}
public final String getDeliveryStreamName() {
return deliveryStreamName;
}
@Override
public final Builder deliveryStreamName(String deliveryStreamName) {
this.deliveryStreamName = deliveryStreamName;
return this;
}
public final void setDeliveryStreamName(String deliveryStreamName) {
this.deliveryStreamName = deliveryStreamName;
}
public final Integer getLimit() {
return limit;
}
@Override
public final Builder limit(Integer limit) {
this.limit = limit;
return this;
}
public final void setLimit(Integer limit) {
this.limit = limit;
}
public final String getExclusiveStartDestinationId() {
return exclusiveStartDestinationId;
}
@Override
public final Builder exclusiveStartDestinationId(String exclusiveStartDestinationId) {
this.exclusiveStartDestinationId = exclusiveStartDestinationId;
return this;
}
public final void setExclusiveStartDestinationId(String exclusiveStartDestinationId) {
this.exclusiveStartDestinationId = exclusiveStartDestinationId;
}
@Override
public Builder requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig) {
super.requestOverrideConfig(awsRequestOverrideConfig);
return this;
}
@Override
public Builder requestOverrideConfig(Consumer builderConsumer) {
super.requestOverrideConfig(builderConsumer);
return this;
}
@Override
public DescribeDeliveryStreamRequest build() {
return new DescribeDeliveryStreamRequest(this);
}
}
}