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§
Source§impl Clone for StartActivityStreamRequest
impl Clone for StartActivityStreamRequest
Source§fn clone(&self) -> StartActivityStreamRequest
fn clone(&self) -> StartActivityStreamRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StartActivityStreamRequest
impl Debug for StartActivityStreamRequest
Source§impl Default for StartActivityStreamRequest
impl Default for StartActivityStreamRequest
Source§fn default() -> StartActivityStreamRequest
fn default() -> StartActivityStreamRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for StartActivityStreamRequest
Auto Trait Implementations§
impl Freeze for StartActivityStreamRequest
impl RefUnwindSafe for StartActivityStreamRequest
impl Send for StartActivityStreamRequest
impl Sync for StartActivityStreamRequest
impl Unpin for StartActivityStreamRequest
impl UnwindSafe for StartActivityStreamRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more