Interface CfnEndpoint.NeptuneSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpoint.NeptuneSettingsProperty.Jsii$Proxy
Enclosing class:
CfnEndpoint

@Stability(Stable) public static interface CfnEndpoint.NeptuneSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines an Amazon Neptune endpoint.

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 Specifying endpoint settings for Amazon Neptune as a target 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.*;
 NeptuneSettingsProperty neptuneSettingsProperty = NeptuneSettingsProperty.builder()
         .errorRetryDuration(123)
         .iamAuthEnabled(false)
         .maxFileSize(123)
         .maxRetryCount(123)
         .s3BucketFolder("s3BucketFolder")
         .s3BucketName("s3BucketName")
         .serviceAccessRoleArn("serviceAccessRoleArn")
         .build();
 

See Also: