Struct aws_sdk_quicksight::operation::delete_dashboard::builders::DeleteDashboardInputBuilder
source · #[non_exhaustive]pub struct DeleteDashboardInputBuilder { /* private fields */ }Expand description
A builder for DeleteDashboardInput.
Implementations§
source§impl DeleteDashboardInputBuilder
impl DeleteDashboardInputBuilder
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 that you're deleting.
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 that you're deleting.
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 that you're deleting.
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 version_number(self, input: i64) -> Self
pub fn version_number(self, input: i64) -> Self
The version number of the dashboard. If the version number property is provided, only the specified version of the dashboard is deleted.
sourcepub fn set_version_number(self, input: Option<i64>) -> Self
pub fn set_version_number(self, input: Option<i64>) -> Self
The version number of the dashboard. If the version number property is provided, only the specified version of the dashboard is deleted.
sourcepub fn get_version_number(&self) -> &Option<i64>
pub fn get_version_number(&self) -> &Option<i64>
The version number of the dashboard. If the version number property is provided, only the specified version of the dashboard is deleted.
sourcepub fn build(self) -> Result<DeleteDashboardInput, BuildError>
pub fn build(self) -> Result<DeleteDashboardInput, BuildError>
Consumes the builder and constructs a DeleteDashboardInput.
source§impl DeleteDashboardInputBuilder
impl DeleteDashboardInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteDashboardOutput, SdkError<DeleteDashboardError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteDashboardOutput, SdkError<DeleteDashboardError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteDashboardInputBuilder
impl Clone for DeleteDashboardInputBuilder
source§fn clone(&self) -> DeleteDashboardInputBuilder
fn clone(&self) -> DeleteDashboardInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteDashboardInputBuilder
impl Debug for DeleteDashboardInputBuilder
source§impl Default for DeleteDashboardInputBuilder
impl Default for DeleteDashboardInputBuilder
source§fn default() -> DeleteDashboardInputBuilder
fn default() -> DeleteDashboardInputBuilder
source§impl PartialEq for DeleteDashboardInputBuilder
impl PartialEq for DeleteDashboardInputBuilder
source§fn eq(&self, other: &DeleteDashboardInputBuilder) -> bool
fn eq(&self, other: &DeleteDashboardInputBuilder) -> bool
self and other values to be equal, and is used
by ==.