Struct aws_sdk_quicksight::types::builders::SheetTextBoxBuilder
source · #[non_exhaustive]pub struct SheetTextBoxBuilder { /* private fields */ }Expand description
A builder for SheetTextBox.
Implementations§
source§impl SheetTextBoxBuilder
impl SheetTextBoxBuilder
sourcepub fn sheet_text_box_id(self, input: impl Into<String>) -> Self
pub fn sheet_text_box_id(self, input: impl Into<String>) -> Self
The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.
sourcepub fn set_sheet_text_box_id(self, input: Option<String>) -> Self
pub fn set_sheet_text_box_id(self, input: Option<String>) -> Self
The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.
sourcepub fn content(self, input: impl Into<String>) -> Self
pub fn content(self, input: impl Into<String>) -> Self
The content that is displayed in the text box.
sourcepub fn set_content(self, input: Option<String>) -> Self
pub fn set_content(self, input: Option<String>) -> Self
The content that is displayed in the text box.
sourcepub fn build(self) -> SheetTextBox
pub fn build(self) -> SheetTextBox
Consumes the builder and constructs a SheetTextBox.
Trait Implementations§
source§impl Clone for SheetTextBoxBuilder
impl Clone for SheetTextBoxBuilder
source§fn clone(&self) -> SheetTextBoxBuilder
fn clone(&self) -> SheetTextBoxBuilder
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 SheetTextBoxBuilder
impl Debug for SheetTextBoxBuilder
source§impl Default for SheetTextBoxBuilder
impl Default for SheetTextBoxBuilder
source§fn default() -> SheetTextBoxBuilder
fn default() -> SheetTextBoxBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SheetTextBoxBuilder> for SheetTextBoxBuilder
impl PartialEq<SheetTextBoxBuilder> for SheetTextBoxBuilder
source§fn eq(&self, other: &SheetTextBoxBuilder) -> bool
fn eq(&self, other: &SheetTextBoxBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SheetTextBoxBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SheetTextBoxBuilder
impl Send for SheetTextBoxBuilder
impl Sync for SheetTextBoxBuilder
impl Unpin for SheetTextBoxBuilder
impl UnwindSafe for SheetTextBoxBuilder
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