[][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 Clone for StartActivityStreamRequest[src]

impl Default for StartActivityStreamRequest[src]

impl PartialEq<StartActivityStreamRequest> for StartActivityStreamRequest[src]

impl Debug for StartActivityStreamRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self