Struct aws_sdk_apptest::types::TestConfigurationSummary
source · #[non_exhaustive]pub struct TestConfigurationSummary {
pub test_configuration_id: String,
pub name: String,
pub status_reason: Option<String>,
pub latest_version: i32,
pub test_configuration_arn: String,
pub status: TestConfigurationLifecycle,
pub creation_time: DateTime,
pub last_update_time: DateTime,
}
Expand description
Specifies a test configuration summary.
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.test_configuration_id: String
The test configuration ID of the test configuration summary.
name: String
The name of the test configuration summary.
status_reason: Option<String>
The status reason of the test configuration summary.
latest_version: i32
The latest version of the test configuration summary.
test_configuration_arn: String
The test configuration ARN of the test configuration summary.
status: TestConfigurationLifecycle
The status of the test configuration summary.
creation_time: DateTime
The creation time of the test configuration summary.
last_update_time: DateTime
The last update time of the test configuration summary.
Implementations§
source§impl TestConfigurationSummary
impl TestConfigurationSummary
sourcepub fn test_configuration_id(&self) -> &str
pub fn test_configuration_id(&self) -> &str
The test configuration ID of the test configuration summary.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The status reason of the test configuration summary.
sourcepub fn latest_version(&self) -> i32
pub fn latest_version(&self) -> i32
The latest version of the test configuration summary.
sourcepub fn test_configuration_arn(&self) -> &str
pub fn test_configuration_arn(&self) -> &str
The test configuration ARN of the test configuration summary.
sourcepub fn status(&self) -> &TestConfigurationLifecycle
pub fn status(&self) -> &TestConfigurationLifecycle
The status of the test configuration summary.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The creation time of the test configuration summary.
sourcepub fn last_update_time(&self) -> &DateTime
pub fn last_update_time(&self) -> &DateTime
The last update time of the test configuration summary.
source§impl TestConfigurationSummary
impl TestConfigurationSummary
sourcepub fn builder() -> TestConfigurationSummaryBuilder
pub fn builder() -> TestConfigurationSummaryBuilder
Creates a new builder-style object to manufacture TestConfigurationSummary
.
Trait Implementations§
source§impl Clone for TestConfigurationSummary
impl Clone for TestConfigurationSummary
source§fn clone(&self) -> TestConfigurationSummary
fn clone(&self) -> TestConfigurationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TestConfigurationSummary
impl Debug for TestConfigurationSummary
source§impl PartialEq for TestConfigurationSummary
impl PartialEq for TestConfigurationSummary
source§fn eq(&self, other: &TestConfigurationSummary) -> bool
fn eq(&self, other: &TestConfigurationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestConfigurationSummary
Auto Trait Implementations§
impl Freeze for TestConfigurationSummary
impl RefUnwindSafe for TestConfigurationSummary
impl Send for TestConfigurationSummary
impl Sync for TestConfigurationSummary
impl Unpin for TestConfigurationSummary
impl UnwindSafe for TestConfigurationSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more