@Stability(value=Stable)
public static interface CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kinesisfirehose.*;
AmazonopensearchserviceBufferingHintsProperty amazonopensearchserviceBufferingHintsProperty = AmazonopensearchserviceBufferingHintsProperty.builder()
.intervalInSeconds(123)
.sizeInMBs(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty.Builder
|
static class |
CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty.Builder |
builder() |
default Number |
getIntervalInSeconds()
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.
|
default Number |
getSizeInMBs()
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.
|
@Stability(value=Stable) @Nullable default Number getIntervalInSeconds()
The default value is 300 (5 minutes).
@Stability(value=Stable) @Nullable default Number getSizeInMBs()
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.
@Stability(value=Stable) static CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty.Builder builder()
Copyright © 2022. All rights reserved.