[][src]Struct rusoto_rds::ClusterPendingModifiedValues

pub struct ClusterPendingModifiedValues {
    pub db_cluster_identifier: Option<String>,
    pub engine_version: Option<String>,
    pub iam_database_authentication_enabled: Option<bool>,
    pub master_user_password: Option<String>,
    pub pending_cloudwatch_logs_exports: Option<PendingCloudwatchLogsExports>,
}

This data type is used as a response element in the ModifyDBCluster operation and contains changes that will be applied during the next maintenance window.

Fields

db_cluster_identifier: Option<String>

The DBClusterIdentifier for the DB cluster.

engine_version: Option<String>

The database engine version.

iam_database_authentication_enabled: Option<bool>

Whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.

master_user_password: Option<String>

The master credentials for the DB cluster.

pending_cloudwatch_logs_exports: Option<PendingCloudwatchLogsExports>

Trait Implementations

impl Clone for ClusterPendingModifiedValues[src]

impl Debug for ClusterPendingModifiedValues[src]

impl Default for ClusterPendingModifiedValues[src]

impl PartialEq<ClusterPendingModifiedValues> for ClusterPendingModifiedValues[src]

impl StructuralPartialEq for ClusterPendingModifiedValues[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> From<T> 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.