Struct aws_sdk_quicksight::types::DashboardVisualId
source · #[non_exhaustive]pub struct DashboardVisualId {
pub dashboard_id: String,
pub sheet_id: String,
pub visual_id: String,
}
Expand description
A structure that contains the following elements:
-
The
DashboardId
of the dashboard that has the visual that you want to embed. -
The
SheetId
of the sheet that has the visual that you want to embed. -
The
VisualId
of the visual that you want to embed.
The DashboardId
, SheetId
, and VisualId
can be found in the IDs for developers
section of the Embed visual
pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId
with a ListDashboards
API operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dashboard_id: String
The ID of the dashboard that has the visual that you want to embed. The DashboardId
can be found in the IDs for developers
section of the Embed visual
pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId
with a ListDashboards
API operation.
sheet_id: String
The ID of the sheet that the has visual that you want to embed. The SheetId
can be found in the IDs for developers
section of the Embed visual
pane of the visual's on-visual menu of the Amazon QuickSight console.
visual_id: String
The ID of the visual that you want to embed. The VisualID
can be found in the IDs for developers
section of the Embed visual
pane of the visual's on-visual menu of the Amazon QuickSight console.
Implementations§
source§impl DashboardVisualId
impl DashboardVisualId
sourcepub fn dashboard_id(&self) -> &str
pub fn dashboard_id(&self) -> &str
The ID of the dashboard that has the visual that you want to embed. The DashboardId
can be found in the IDs for developers
section of the Embed visual
pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId
with a ListDashboards
API operation.
source§impl DashboardVisualId
impl DashboardVisualId
sourcepub fn builder() -> DashboardVisualIdBuilder
pub fn builder() -> DashboardVisualIdBuilder
Creates a new builder-style object to manufacture DashboardVisualId
.
Trait Implementations§
source§impl Clone for DashboardVisualId
impl Clone for DashboardVisualId
source§fn clone(&self) -> DashboardVisualId
fn clone(&self) -> DashboardVisualId
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DashboardVisualId
impl Debug for DashboardVisualId
source§impl PartialEq for DashboardVisualId
impl PartialEq for DashboardVisualId
impl StructuralPartialEq for DashboardVisualId
Auto Trait Implementations§
impl Freeze for DashboardVisualId
impl RefUnwindSafe for DashboardVisualId
impl Send for DashboardVisualId
impl Sync for DashboardVisualId
impl Unpin for DashboardVisualId
impl UnwindSafe for DashboardVisualId
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more