pub struct UpdateDashboardPublishedVersionRequest {
pub aws_account_id: String,
pub dashboard_id: String,
pub version_number: i64,
}
Fields§
§aws_account_id: String
The ID of the AWS account that contains the dashboard that you're updating.
dashboard_id: String
The ID for the dashboard.
version_number: i64
The version number of the dashboard.
Trait Implementations§
Source§impl Clone for UpdateDashboardPublishedVersionRequest
impl Clone for UpdateDashboardPublishedVersionRequest
Source§fn clone(&self) -> UpdateDashboardPublishedVersionRequest
fn clone(&self) -> UpdateDashboardPublishedVersionRequest
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 Default for UpdateDashboardPublishedVersionRequest
impl Default for UpdateDashboardPublishedVersionRequest
Source§fn default() -> UpdateDashboardPublishedVersionRequest
fn default() -> UpdateDashboardPublishedVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateDashboardPublishedVersionRequest
impl PartialEq for UpdateDashboardPublishedVersionRequest
Source§fn eq(&self, other: &UpdateDashboardPublishedVersionRequest) -> bool
fn eq(&self, other: &UpdateDashboardPublishedVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateDashboardPublishedVersionRequest
Auto Trait Implementations§
impl Freeze for UpdateDashboardPublishedVersionRequest
impl RefUnwindSafe for UpdateDashboardPublishedVersionRequest
impl Send for UpdateDashboardPublishedVersionRequest
impl Sync for UpdateDashboardPublishedVersionRequest
impl Unpin for UpdateDashboardPublishedVersionRequest
impl UnwindSafe for UpdateDashboardPublishedVersionRequest
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