Interface CfnEndpoint.ElasticsearchSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpoint.ElasticsearchSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnEndpoint
This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For more information about the available settings, see Extra connection attributes when using OpenSearch as a target for AWS DMS in the AWS Database Migration Service User Guide .
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.dms.*; ElasticsearchSettingsProperty elasticsearchSettingsProperty = ElasticsearchSettingsProperty.builder() .endpointUri("endpointUri") .errorRetryDuration(123) .fullLoadErrorPercentage(123) .serviceAccessRoleArn("serviceAccessRoleArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpoint.ElasticsearchSettingsProperty
static final class
An implementation forCfnEndpoint.ElasticsearchSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The endpoint for the OpenSearch cluster.default Number
The maximum number of seconds for which DMS retries failed API requests to the OpenSearch cluster.default Number
The maximum percentage of records that can fail to be written before a full load operation stops.default String
The Amazon Resource Name (ARN) used by the service to access the IAM role.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointUri
The endpoint for the OpenSearch cluster.AWS DMS uses HTTPS if a transport protocol (either HTTP or HTTPS) isn't specified.
- See Also:
-
getErrorRetryDuration
The maximum number of seconds for which DMS retries failed API requests to the OpenSearch cluster.- See Also:
-
getFullLoadErrorPercentage
The maximum percentage of records that can fail to be written before a full load operation stops.To avoid early failure, this counter is only effective after 1,000 records are transferred. OpenSearch also has the concept of error monitoring during the last 10 minutes of an Observation Window. If transfer of all records fail in the last 10 minutes, the full load operation stops.
- See Also:
-
getServiceAccessRoleArn
The Amazon Resource Name (ARN) used by the service to access the IAM role.The role must allow the
iam:PassRole
action.- See Also:
-
builder
-