Struct aws_sdk_apptest::operation::get_test_case::GetTestCaseOutput
source · #[non_exhaustive]pub struct GetTestCaseOutput {
pub test_case_id: String,
pub test_case_arn: String,
pub name: String,
pub description: Option<String>,
pub latest_version: Option<TestCaseLatestVersion>,
pub test_case_version: i32,
pub status: TestCaseLifecycle,
pub status_reason: Option<String>,
pub creation_time: DateTime,
pub last_update_time: DateTime,
pub steps: Vec<Step>,
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.test_case_id: String
The response test ID of the test case.
test_case_arn: String
The Amazon Resource Name (ARN) of the test case.
name: String
The name of the test case.
description: Option<String>
The description of the test case.
latest_version: Option<TestCaseLatestVersion>
The latest version of the test case.
test_case_version: i32
The case version of the test case.
status: TestCaseLifecycle
The status of the test case.
status_reason: Option<String>
The status reason of the test case.
creation_time: DateTime
The creation time of the test case.
last_update_time: DateTime
The last update time of the test case.
steps: Vec<Step>
The steps of the test case.
The tags of the test case.
Implementations§
source§impl GetTestCaseOutput
impl GetTestCaseOutput
sourcepub fn test_case_id(&self) -> &str
pub fn test_case_id(&self) -> &str
The response test ID of the test case.
sourcepub fn test_case_arn(&self) -> &str
pub fn test_case_arn(&self) -> &str
The Amazon Resource Name (ARN) of the test case.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the test case.
sourcepub fn latest_version(&self) -> Option<&TestCaseLatestVersion>
pub fn latest_version(&self) -> Option<&TestCaseLatestVersion>
The latest version of the test case.
sourcepub fn test_case_version(&self) -> i32
pub fn test_case_version(&self) -> i32
The case version of the test case.
sourcepub fn status(&self) -> &TestCaseLifecycle
pub fn status(&self) -> &TestCaseLifecycle
The status of the test case.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The status reason of the test case.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The creation time of the test case.
sourcepub fn last_update_time(&self) -> &DateTime
pub fn last_update_time(&self) -> &DateTime
The last update time of the test case.
The tags of the test case.
source§impl GetTestCaseOutput
impl GetTestCaseOutput
sourcepub fn builder() -> GetTestCaseOutputBuilder
pub fn builder() -> GetTestCaseOutputBuilder
Creates a new builder-style object to manufacture GetTestCaseOutput
.
Trait Implementations§
source§impl Clone for GetTestCaseOutput
impl Clone for GetTestCaseOutput
source§fn clone(&self) -> GetTestCaseOutput
fn clone(&self) -> GetTestCaseOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTestCaseOutput
impl Debug for GetTestCaseOutput
source§impl PartialEq for GetTestCaseOutput
impl PartialEq for GetTestCaseOutput
source§fn eq(&self, other: &GetTestCaseOutput) -> bool
fn eq(&self, other: &GetTestCaseOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetTestCaseOutput
impl RequestId for GetTestCaseOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetTestCaseOutput
Auto Trait Implementations§
impl Freeze for GetTestCaseOutput
impl RefUnwindSafe for GetTestCaseOutput
impl Send for GetTestCaseOutput
impl Sync for GetTestCaseOutput
impl Unpin for GetTestCaseOutput
impl UnwindSafe for GetTestCaseOutput
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