#[non_exhaustive]pub struct GetSuiteDefinitionOutput {
pub suite_definition_id: Option<String>,
pub suite_definition_arn: Option<String>,
pub suite_definition_version: Option<String>,
pub latest_version: Option<String>,
pub suite_definition_configuration: Option<SuiteDefinitionConfiguration>,
pub created_at: Option<DateTime>,
pub last_modified_at: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.suite_definition_id: Option<String>
Suite definition ID of the suite definition.
suite_definition_arn: Option<String>
The ARN of the suite definition.
suite_definition_version: Option<String>
Suite definition version of the suite definition.
latest_version: Option<String>
Latest suite definition version of the suite definition.
suite_definition_configuration: Option<SuiteDefinitionConfiguration>
Suite configuration of the suite definition.
created_at: Option<DateTime>
Date (in Unix epoch time) when the suite definition was created.
last_modified_at: Option<DateTime>
Date (in Unix epoch time) when the suite definition was last modified.
Tags attached to the suite definition.
Implementations§
source§impl GetSuiteDefinitionOutput
impl GetSuiteDefinitionOutput
sourcepub fn suite_definition_id(&self) -> Option<&str>
pub fn suite_definition_id(&self) -> Option<&str>
Suite definition ID of the suite definition.
sourcepub fn suite_definition_arn(&self) -> Option<&str>
pub fn suite_definition_arn(&self) -> Option<&str>
The ARN of the suite definition.
sourcepub fn suite_definition_version(&self) -> Option<&str>
pub fn suite_definition_version(&self) -> Option<&str>
Suite definition version of the suite definition.
sourcepub fn latest_version(&self) -> Option<&str>
pub fn latest_version(&self) -> Option<&str>
Latest suite definition version of the suite definition.
sourcepub fn suite_definition_configuration(
&self
) -> Option<&SuiteDefinitionConfiguration>
pub fn suite_definition_configuration( &self ) -> Option<&SuiteDefinitionConfiguration>
Suite configuration of the suite definition.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
Date (in Unix epoch time) when the suite definition was created.
sourcepub fn last_modified_at(&self) -> Option<&DateTime>
pub fn last_modified_at(&self) -> Option<&DateTime>
Date (in Unix epoch time) when the suite definition was last modified.
Tags attached to the suite definition.
source§impl GetSuiteDefinitionOutput
impl GetSuiteDefinitionOutput
sourcepub fn builder() -> GetSuiteDefinitionOutputBuilder
pub fn builder() -> GetSuiteDefinitionOutputBuilder
Creates a new builder-style object to manufacture GetSuiteDefinitionOutput
.
Trait Implementations§
source§impl Clone for GetSuiteDefinitionOutput
impl Clone for GetSuiteDefinitionOutput
source§fn clone(&self) -> GetSuiteDefinitionOutput
fn clone(&self) -> GetSuiteDefinitionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSuiteDefinitionOutput
impl Debug for GetSuiteDefinitionOutput
source§impl PartialEq for GetSuiteDefinitionOutput
impl PartialEq for GetSuiteDefinitionOutput
source§fn eq(&self, other: &GetSuiteDefinitionOutput) -> bool
fn eq(&self, other: &GetSuiteDefinitionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSuiteDefinitionOutput
impl RequestId for GetSuiteDefinitionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.