interface BufferOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OSIS.Mixins.CfnPipelinePropsMixin.BufferOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsosis/mixins#CfnPipelinePropsMixin_BufferOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.osis.mixins.CfnPipelinePropsMixin.BufferOptionsProperty |
Python | aws_cdk.mixins_preview.aws_osis.mixins.CfnPipelinePropsMixin.BufferOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_osis » mixins » CfnPipelinePropsMixin » BufferOptionsProperty |
Options that specify the configuration of a persistent buffer.
To configure how OpenSearch Ingestion encrypts this data, set the EncryptionAtRestOptions . For more information, see Persistent buffering .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as osis_mixins } from '@aws-cdk/mixins-preview/aws-osis';
const bufferOptionsProperty: osis_mixins.CfnPipelinePropsMixin.BufferOptionsProperty = {
persistentBufferEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| persistent | boolean | IResolvable | Whether persistent buffering should be enabled. |
persistentBufferEnabled?
Type:
boolean | IResolvable
(optional)
Whether persistent buffering should be enabled.

.NET
Go
Java
Python
TypeScript