AWS Kinesis · Schema
AmazonopensearchserviceDestinationConfiguration
Describes the configuration of a destination in Amazon OpenSearch Service
AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo
Properties
| Name | Type | Description |
|---|---|---|
| RoleARN | object | |
| DomainARN | object | |
| ClusterEndpoint | object | |
| IndexName | object | |
| TypeName | object | |
| IndexRotationPeriod | object | |
| BufferingHints | object | |
| RetryOptions | object | |
| S3BackupMode | object | |
| S3Configuration | object | |
| ProcessingConfiguration | object | |
| CloudWatchLoggingOptions | object | |
| VpcConfiguration | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AmazonopensearchserviceDestinationConfiguration",
"title": "AmazonopensearchserviceDestinationConfiguration",
"type": "object",
"required": [
"RoleARN",
"IndexName",
"S3Configuration"
],
"properties": {
"RoleARN": {
"allOf": [
{
"$ref": "#/components/schemas/RoleARN"
},
{
"description": "The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data Firehose for calling the Amazon OpenSearch Service Configuration API and for indexing documents."
}
]
},
"DomainARN": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceDomainARN"
},
{
"description": "The ARN of the Amazon OpenSearch Service domain. The IAM role must have permissions for DescribeElasticsearchDomain, DescribeElasticsearchDomains, and DescribeElasticsearchDomainConfig after assuming the role specified in RoleARN. "
}
]
},
"ClusterEndpoint": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceClusterEndpoint"
},
{
"description": "The endpoint to use when communicating with the cluster. Specify either this ClusterEndpoint or the DomainARN field. "
}
]
},
"IndexName": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceIndexName"
},
{
"description": "The ElasticsearAmazon OpenSearch Service index name."
}
]
},
"TypeName": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceTypeName"
},
{
"description": "The Amazon OpenSearch Service type name. For Elasticsearch 6.x, there can be only one type per index. If you try to specify a new type for an existing index that already has another type, Kinesis Data Firehose returns an error during run time. "
}
]
},
"IndexRotationPeriod": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceIndexRotationPeriod"
},
{
"description": "The Amazon OpenSearch Service index rotation period. Index rotation appends a timestamp to the IndexName to facilitate the expiration of old data."
}
]
},
"BufferingHints": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceBufferingHints"
},
{
"description": "The buffering options. If no value is specified, the default values for AmazonopensearchserviceBufferingHints are used. "
}
]
},
"RetryOptions": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceRetryOptions"
},
{
"description": "The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon OpenSearch Service. The default value is 300 (5 minutes). "
}
]
},
"S3BackupMode": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonopensearchserviceS3BackupMode"
},
{
"description": "Defines how documents should be delivered to Amazon S3. When it is set to FailedDocumentsOnly, Kinesis Data Firehose writes any documents that could not be indexed to the configured Amazon S3 destination, with AmazonOpenSearchService-failed/ appended to the key prefix. When set to AllDocuments, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents with AmazonOpenSearchService-failed/ appended to the prefix. "
}
]
},
"S3Configuration": {
"$ref": "#/components/schemas/S3DestinationConfiguration"
},
"ProcessingConfiguration": {
"$ref": "#/components/schemas/ProcessingConfiguration"
},
"CloudWatchLoggingOptions": {
"$ref": "#/components/schemas/CloudWatchLoggingOptions"
},
"VpcConfiguration": {
"$ref": "#/components/schemas/VpcConfiguration"
}
},
"description": "Describes the configuration of a destination in Amazon OpenSearch Service"
}