#[non_exhaustive]pub struct GetFleetOutputBuilder { /* private fields */ }Expand description
A builder for GetFleetOutput.
Implementations§
source§impl GetFleetOutputBuilder
impl GetFleetOutputBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The ID of the fleet.
This field is required.sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the fleet.
This field is required.sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the fleet.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A brief description of the fleet.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A brief description of the fleet.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A brief description of the fleet.
sourcepub fn signal_catalog_arn(self, input: impl Into<String>) -> Self
pub fn signal_catalog_arn(self, input: impl Into<String>) -> Self
The ARN of a signal catalog associated with the fleet.
This field is required.sourcepub fn set_signal_catalog_arn(self, input: Option<String>) -> Self
pub fn set_signal_catalog_arn(self, input: Option<String>) -> Self
The ARN of a signal catalog associated with the fleet.
sourcepub fn get_signal_catalog_arn(&self) -> &Option<String>
pub fn get_signal_catalog_arn(&self) -> &Option<String>
The ARN of a signal catalog associated with the fleet.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time).
This field is required.sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time).
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time).
sourcepub fn last_modification_time(self, input: DateTime) -> Self
pub fn last_modification_time(self, input: DateTime) -> Self
The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
This field is required.sourcepub fn set_last_modification_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modification_time(self, input: Option<DateTime>) -> Self
The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
sourcepub fn get_last_modification_time(&self) -> &Option<DateTime>
pub fn get_last_modification_time(&self) -> &Option<DateTime>
The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
sourcepub fn build(self) -> Result<GetFleetOutput, BuildError>
pub fn build(self) -> Result<GetFleetOutput, BuildError>
Consumes the builder and constructs a GetFleetOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for GetFleetOutputBuilder
impl Clone for GetFleetOutputBuilder
source§fn clone(&self) -> GetFleetOutputBuilder
fn clone(&self) -> GetFleetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetFleetOutputBuilder
impl Debug for GetFleetOutputBuilder
source§impl Default for GetFleetOutputBuilder
impl Default for GetFleetOutputBuilder
source§fn default() -> GetFleetOutputBuilder
fn default() -> GetFleetOutputBuilder
source§impl PartialEq for GetFleetOutputBuilder
impl PartialEq for GetFleetOutputBuilder
source§fn eq(&self, other: &GetFleetOutputBuilder) -> bool
fn eq(&self, other: &GetFleetOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.