{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ElasticsearchDestinationUpdate", "title": "ElasticsearchDestinationUpdate", "type": "object", "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 ES Configuration API and for indexing documents. For more information, see Grant Kinesis Data Firehose Access to an Amazon S3 Destination and Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces." } ] }, "DomainARN": { "allOf": [ { "$ref": "#/components/schemas/ElasticsearchDomainARN" }, { "description": "
The ARN of the Amazon ES domain. The IAM role must have permissions for\u00a0DescribeDomain, DescribeDomains, and DescribeDomainConfig\u00a0after assuming the IAM role specified in RoleARN. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.
Specify either ClusterEndpoint or DomainARN.
ClusterEndpoint or the DomainARN field."
}
]
},
"IndexName": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchIndexName"
},
{
"description": "The Elasticsearch index name."
}
]
},
"TypeName": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchTypeName"
},
{
"description": "The Elasticsearch 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 runtime.
If you upgrade Elasticsearch from 6.x to 7.x and don\u2019t update your delivery stream, Kinesis Data Firehose still delivers data to Elasticsearch with the old index name and type name. If you want to update your delivery stream with a new index name, provide an empty string for TypeName.
IndexName to facilitate the expiration of old data. For more information, see Index Rotation for the Amazon ES Destination. Default value is\u00a0OneDay."
}
]
},
"BufferingHints": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchBufferingHints"
},
{
"description": "The buffering options. If no value is specified, ElasticsearchBufferingHints object default values are used. "
}
]
},
"RetryOptions": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchRetryOptions"
},
{
"description": "The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon ES. The default value is 300 (5 minutes)."
}
]
},
"S3Update": {
"allOf": [
{
"$ref": "#/components/schemas/S3DestinationUpdate"
},
{
"description": "The Amazon S3 destination."
}
]
},
"ProcessingConfiguration": {
"allOf": [
{
"$ref": "#/components/schemas/ProcessingConfiguration"
},
{
"description": "The data processing configuration."
}
]
},
"CloudWatchLoggingOptions": {
"allOf": [
{
"$ref": "#/components/schemas/CloudWatchLoggingOptions"
},
{
"description": "The CloudWatch logging options for your delivery stream."
}
]
}
},
"description": "Describes an update for a destination in Amazon ES."
}