#[non_exhaustive]pub struct PlacementSummaryBuilder { /* private fields */ }Expand description
A builder for PlacementSummary.
Implementations§
source§impl PlacementSummaryBuilder
impl PlacementSummaryBuilder
sourcepub fn project_name(self, input: impl Into<String>) -> Self
pub fn project_name(self, input: impl Into<String>) -> Self
The name of the project containing the placement.
sourcepub fn set_project_name(self, input: Option<String>) -> Self
pub fn set_project_name(self, input: Option<String>) -> Self
The name of the project containing the placement.
sourcepub fn placement_name(self, input: impl Into<String>) -> Self
pub fn placement_name(self, input: impl Into<String>) -> Self
The name of the placement being summarized.
sourcepub fn set_placement_name(self, input: Option<String>) -> Self
pub fn set_placement_name(self, input: Option<String>) -> Self
The name of the placement being summarized.
sourcepub fn created_date(self, input: DateTime) -> Self
pub fn created_date(self, input: DateTime) -> Self
The date when the placement was originally created, in UNIX epoch time format.
sourcepub fn set_created_date(self, input: Option<DateTime>) -> Self
pub fn set_created_date(self, input: Option<DateTime>) -> Self
The date when the placement was originally created, in UNIX epoch time format.
sourcepub fn updated_date(self, input: DateTime) -> Self
pub fn updated_date(self, input: DateTime) -> Self
The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.
sourcepub fn set_updated_date(self, input: Option<DateTime>) -> Self
pub fn set_updated_date(self, input: Option<DateTime>) -> Self
The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.
sourcepub fn build(self) -> PlacementSummary
pub fn build(self) -> PlacementSummary
Consumes the builder and constructs a PlacementSummary.
Trait Implementations§
source§impl Clone for PlacementSummaryBuilder
impl Clone for PlacementSummaryBuilder
source§fn clone(&self) -> PlacementSummaryBuilder
fn clone(&self) -> PlacementSummaryBuilder
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 PlacementSummaryBuilder
impl Debug for PlacementSummaryBuilder
source§impl Default for PlacementSummaryBuilder
impl Default for PlacementSummaryBuilder
source§fn default() -> PlacementSummaryBuilder
fn default() -> PlacementSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PlacementSummaryBuilder> for PlacementSummaryBuilder
impl PartialEq<PlacementSummaryBuilder> for PlacementSummaryBuilder
source§fn eq(&self, other: &PlacementSummaryBuilder) -> bool
fn eq(&self, other: &PlacementSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PlacementSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PlacementSummaryBuilder
impl Send for PlacementSummaryBuilder
impl Sync for PlacementSummaryBuilder
impl Unpin for PlacementSummaryBuilder
impl UnwindSafe for PlacementSummaryBuilder
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