[][src]Struct rusoto_dms::NeptuneSettings

pub struct NeptuneSettings {
    pub error_retry_duration: Option<i64>,
    pub iam_auth_enabled: Option<bool>,
    pub max_file_size: Option<i64>,
    pub max_retry_count: Option<i64>,
    pub s3_bucket_folder: String,
    pub s3_bucket_name: String,
    pub service_access_role_arn: Option<String>,
}

Provides information that defines an Amazon Neptune endpoint.

Fields

error_retry_duration: Option<i64>

The number of milliseconds for AWS DMS to wait to retry a bulk-load of migrated graph data to the Neptune target database before raising an error. The default is 250.

iam_auth_enabled: Option<bool>

If you want AWS Identity and Access Management (IAM) authorization enabled for this endpoint, set this parameter to true. Then attach the appropriate IAM policy document to your service role specified by ServiceAccessRoleArn. The default is false.

max_file_size: Option<i64>

The maximum size in kilobytes of migrated graph data stored in a .csv file before AWS DMS bulk-loads the data to the Neptune target database. The default is 1,048,576 KB. If the bulk load is successful, AWS DMS clears the bucket, ready to store the next batch of migrated graph data.

max_retry_count: Option<i64>

The number of times for AWS DMS to retry a bulk load of migrated graph data to the Neptune target database before raising an error. The default is 5.

s3_bucket_folder: String

A folder path where you want AWS DMS to store migrated graph data in the S3 bucket specified by S3BucketName

s3_bucket_name: String

The name of the Amazon S3 bucket where AWS DMS can temporarily store migrated graph data in .csv files before bulk-loading it to the Neptune target database. AWS DMS maps the SQL source data to graph data before storing it in these .csv files.

service_access_role_arn: Option<String>

The Amazon Resource Name (ARN) of the service role that you created for the Neptune target endpoint. For more information, see Creating an IAM Service Role for Accessing Amazon Neptune as a Target in the AWS Database Migration Service User Guide.

Trait Implementations

impl Clone for NeptuneSettings[src]

impl Debug for NeptuneSettings[src]

impl Default for NeptuneSettings[src]

impl<'de> Deserialize<'de> for NeptuneSettings[src]

impl PartialEq<NeptuneSettings> for NeptuneSettings[src]

impl Serialize for NeptuneSettings[src]

impl StructuralPartialEq for NeptuneSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.