[][src]Struct rusoto_rds::StartActivityStreamRequest

pub struct StartActivityStreamRequest {
    pub apply_immediately: Option<bool>,
    pub kms_key_id: String,
    pub mode: String,
    pub resource_arn: String,
}

Fields

apply_immediately: Option<bool>

Specifies whether or not the database activity stream is to start as soon as possible, regardless of the maintenance window for the database.

kms_key_id: String

The AWS KMS key identifier for encrypting messages in the database activity stream. The key identifier can be either a key ID, a key ARN, or a key alias.

mode: String

Specifies the mode of the database activity stream. Database events such as a change or access generate an activity stream event. The database session can handle these events either synchronously or asynchronously.

resource_arn: String

The Amazon Resource Name (ARN) of the DB cluster, for example arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.

Trait Implementations

impl PartialEq<StartActivityStreamRequest> for StartActivityStreamRequest[src]

impl Default for StartActivityStreamRequest[src]

impl Clone for StartActivityStreamRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StartActivityStreamRequest[src]

Auto Trait Implementations

impl Send for StartActivityStreamRequest

impl Sync for StartActivityStreamRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self