Struct aws_sdk_quicksight::operation::update_dashboard_links::builders::UpdateDashboardLinksInputBuilder
source · #[non_exhaustive]pub struct UpdateDashboardLinksInputBuilder { /* private fields */ }Expand description
A builder for UpdateDashboardLinksInput.
Implementations§
source§impl UpdateDashboardLinksInputBuilder
impl UpdateDashboardLinksInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the dashboard whose links you want to update.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the dashboard whose links you want to update.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that contains the dashboard whose links you want to update.
sourcepub fn dashboard_id(self, input: impl Into<String>) -> Self
pub fn dashboard_id(self, input: impl Into<String>) -> Self
The ID for the dashboard.
This field is required.sourcepub fn set_dashboard_id(self, input: Option<String>) -> Self
pub fn set_dashboard_id(self, input: Option<String>) -> Self
The ID for the dashboard.
sourcepub fn get_dashboard_id(&self) -> &Option<String>
pub fn get_dashboard_id(&self) -> &Option<String>
The ID for the dashboard.
sourcepub fn link_entities(self, input: impl Into<String>) -> Self
pub fn link_entities(self, input: impl Into<String>) -> Self
Appends an item to link_entities.
To override the contents of this collection use set_link_entities.
list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
sourcepub fn set_link_entities(self, input: Option<Vec<String>>) -> Self
pub fn set_link_entities(self, input: Option<Vec<String>>) -> Self
list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
sourcepub fn get_link_entities(&self) -> &Option<Vec<String>>
pub fn get_link_entities(&self) -> &Option<Vec<String>>
list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
sourcepub fn build(self) -> Result<UpdateDashboardLinksInput, BuildError>
pub fn build(self) -> Result<UpdateDashboardLinksInput, BuildError>
Consumes the builder and constructs a UpdateDashboardLinksInput.
source§impl UpdateDashboardLinksInputBuilder
impl UpdateDashboardLinksInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateDashboardLinksOutput, SdkError<UpdateDashboardLinksError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateDashboardLinksOutput, SdkError<UpdateDashboardLinksError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateDashboardLinksInputBuilder
impl Clone for UpdateDashboardLinksInputBuilder
source§fn clone(&self) -> UpdateDashboardLinksInputBuilder
fn clone(&self) -> UpdateDashboardLinksInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateDashboardLinksInputBuilder
impl Default for UpdateDashboardLinksInputBuilder
source§fn default() -> UpdateDashboardLinksInputBuilder
fn default() -> UpdateDashboardLinksInputBuilder
source§impl PartialEq for UpdateDashboardLinksInputBuilder
impl PartialEq for UpdateDashboardLinksInputBuilder
source§fn eq(&self, other: &UpdateDashboardLinksInputBuilder) -> bool
fn eq(&self, other: &UpdateDashboardLinksInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDashboardLinksInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateDashboardLinksInputBuilder
impl RefUnwindSafe for UpdateDashboardLinksInputBuilder
impl Send for UpdateDashboardLinksInputBuilder
impl Sync for UpdateDashboardLinksInputBuilder
impl Unpin for UpdateDashboardLinksInputBuilder
impl UnwindSafe for UpdateDashboardLinksInputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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