Struct aws_sdk_emrserverless::operation::get_dashboard_for_job_run::GetDashboardForJobRunOutput
source · #[non_exhaustive]pub struct GetDashboardForJobRunOutput {
pub url: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.url: Option<String>
The URL to view job run's dashboard.
Implementations§
source§impl GetDashboardForJobRunOutput
impl GetDashboardForJobRunOutput
sourcepub fn builder() -> GetDashboardForJobRunOutputBuilder
pub fn builder() -> GetDashboardForJobRunOutputBuilder
Creates a new builder-style object to manufacture GetDashboardForJobRunOutput
.
Trait Implementations§
source§impl Clone for GetDashboardForJobRunOutput
impl Clone for GetDashboardForJobRunOutput
source§fn clone(&self) -> GetDashboardForJobRunOutput
fn clone(&self) -> GetDashboardForJobRunOutput
Returns a copy 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 GetDashboardForJobRunOutput
impl Debug for GetDashboardForJobRunOutput
source§impl PartialEq<GetDashboardForJobRunOutput> for GetDashboardForJobRunOutput
impl PartialEq<GetDashboardForJobRunOutput> for GetDashboardForJobRunOutput
source§fn eq(&self, other: &GetDashboardForJobRunOutput) -> bool
fn eq(&self, other: &GetDashboardForJobRunOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetDashboardForJobRunOutput
impl RequestId for GetDashboardForJobRunOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetDashboardForJobRunOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetDashboardForJobRunOutput
impl Send for GetDashboardForJobRunOutput
impl Sync for GetDashboardForJobRunOutput
impl Unpin for GetDashboardForJobRunOutput
impl UnwindSafe for GetDashboardForJobRunOutput
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