[][src]Struct rusoto_appsync::DynamodbDataSourceConfig

pub struct DynamodbDataSourceConfig {
    pub aws_region: String,
    pub delta_sync_config: Option<DeltaSyncConfig>,
    pub table_name: String,
    pub use_caller_credentials: Option<bool>,
    pub versioned: Option<bool>,
}

Describes an Amazon DynamoDB data source configuration.

Fields

aws_region: String

The AWS Region.

delta_sync_config: Option<DeltaSyncConfig>

The DeltaSyncConfig for a versioned datasource.

table_name: String

The table name.

use_caller_credentials: Option<bool>

Set to TRUE to use Amazon Cognito credentials with this data source.

versioned: Option<bool>

Set to TRUE to use Conflict Detection and Resolution with this data source.

Trait Implementations

impl Clone for DynamodbDataSourceConfig[src]

impl Debug for DynamodbDataSourceConfig[src]

impl Default for DynamodbDataSourceConfig[src]

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

impl PartialEq<DynamodbDataSourceConfig> for DynamodbDataSourceConfig[src]

impl Serialize for DynamodbDataSourceConfig[src]

impl StructuralPartialEq for DynamodbDataSourceConfig[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.