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

software.amazon.awssdk.services.firehose.model.AmazonOpenSearchServerlessBufferingHints Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Kinesis Firehose module holds the client classes that are used for communicating with Amazon Kinesis Firehose Service

The newest version!
/*
 * Copyright 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.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* Describes the buffering to perform before delivering data to the Serverless offering for Amazon OpenSearch Service * destination. *

*/ @Generated("software.amazon.awssdk:codegen") public final class AmazonOpenSearchServerlessBufferingHints implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField INTERVAL_IN_SECONDS_FIELD = SdkField. builder(MarshallingType.INTEGER) .memberName("IntervalInSeconds").getter(getter(AmazonOpenSearchServerlessBufferingHints::intervalInSeconds)) .setter(setter(Builder::intervalInSeconds)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("IntervalInSeconds").build()).build(); private static final SdkField SIZE_IN_M_BS_FIELD = SdkField. builder(MarshallingType.INTEGER) .memberName("SizeInMBs").getter(getter(AmazonOpenSearchServerlessBufferingHints::sizeInMBs)) .setter(setter(Builder::sizeInMBs)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SizeInMBs").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(INTERVAL_IN_SECONDS_FIELD, SIZE_IN_M_BS_FIELD)); private static final long serialVersionUID = 1L; private final Integer intervalInSeconds; private final Integer sizeInMBs; private AmazonOpenSearchServerlessBufferingHints(BuilderImpl builder) { this.intervalInSeconds = builder.intervalInSeconds; this.sizeInMBs = builder.sizeInMBs; } /** *

* Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The * default value is 300 (5 minutes). *

* * @return Buffer incoming data for the specified period of time, in seconds, before delivering it to the * destination. The default value is 300 (5 minutes). */ public final Integer intervalInSeconds() { return intervalInSeconds; } /** *

* Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is * 5. *

*

* We recommend setting this parameter to a value greater than the amount of data you typically ingest into the * delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB * or higher. *

* * @return Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default * value is 5.

*

* We recommend setting this parameter to a value greater than the amount of data you typically ingest into * the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value * should be 10 MB or higher. */ public final Integer sizeInMBs() { return sizeInMBs; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(intervalInSeconds()); hashCode = 31 * hashCode + Objects.hashCode(sizeInMBs()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof AmazonOpenSearchServerlessBufferingHints)) { return false; } AmazonOpenSearchServerlessBufferingHints other = (AmazonOpenSearchServerlessBufferingHints) obj; return Objects.equals(intervalInSeconds(), other.intervalInSeconds()) && Objects.equals(sizeInMBs(), other.sizeInMBs()); } /** * 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. */ @Override public final String toString() { return ToString.builder("AmazonOpenSearchServerlessBufferingHints").add("IntervalInSeconds", intervalInSeconds()) .add("SizeInMBs", sizeInMBs()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "IntervalInSeconds": return Optional.ofNullable(clazz.cast(intervalInSeconds())); case "SizeInMBs": return Optional.ofNullable(clazz.cast(sizeInMBs())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((AmazonOpenSearchServerlessBufferingHints) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. * The default value is 300 (5 minutes). *

* * @param intervalInSeconds * Buffer incoming data for the specified period of time, in seconds, before delivering it to the * destination. The default value is 300 (5 minutes). * @return Returns a reference to this object so that method calls can be chained together. */ Builder intervalInSeconds(Integer intervalInSeconds); /** *

* Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default * value is 5. *

*

* We recommend setting this parameter to a value greater than the amount of data you typically ingest into the * delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 * MB or higher. *

* * @param sizeInMBs * Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The * default value is 5.

*

* We recommend setting this parameter to a value greater than the amount of data you typically ingest * into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the * value should be 10 MB or higher. * @return Returns a reference to this object so that method calls can be chained together. */ Builder sizeInMBs(Integer sizeInMBs); } static final class BuilderImpl implements Builder { private Integer intervalInSeconds; private Integer sizeInMBs; private BuilderImpl() { } private BuilderImpl(AmazonOpenSearchServerlessBufferingHints model) { intervalInSeconds(model.intervalInSeconds); sizeInMBs(model.sizeInMBs); } public final Integer getIntervalInSeconds() { return intervalInSeconds; } public final void setIntervalInSeconds(Integer intervalInSeconds) { this.intervalInSeconds = intervalInSeconds; } @Override public final Builder intervalInSeconds(Integer intervalInSeconds) { this.intervalInSeconds = intervalInSeconds; return this; } public final Integer getSizeInMBs() { return sizeInMBs; } public final void setSizeInMBs(Integer sizeInMBs) { this.sizeInMBs = sizeInMBs; } @Override public final Builder sizeInMBs(Integer sizeInMBs) { this.sizeInMBs = sizeInMBs; return this; } @Override public AmazonOpenSearchServerlessBufferingHints build() { return new AmazonOpenSearchServerlessBufferingHints(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy