Struct aws_sdk_evidently::types::RefResource
source · #[non_exhaustive]pub struct RefResource {
pub name: String,
pub type: String,
pub arn: Option<String>,
pub status: Option<String>,
pub start_time: Option<String>,
pub end_time: Option<String>,
pub last_updated_on: Option<String>,
}
Expand description
A structure that contains information about one experiment or launch that uses the specified segment.
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.name: String
The name of the experiment or launch.
type: String
Specifies whether the resource that this structure contains information about is an experiment or a launch.
arn: Option<String>
The ARN of the experiment or launch.
status: Option<String>
The status of the experiment or launch.
start_time: Option<String>
The day and time that this experiment or launch started.
end_time: Option<String>
The day and time that this experiment or launch ended.
last_updated_on: Option<String>
The day and time that this experiment or launch was most recently updated.
Implementations§
source§impl RefResource
impl RefResource
sourcepub fn type(&self) -> &str
pub fn type(&self) -> &str
Specifies whether the resource that this structure contains information about is an experiment or a launch.
sourcepub fn start_time(&self) -> Option<&str>
pub fn start_time(&self) -> Option<&str>
The day and time that this experiment or launch started.
sourcepub fn last_updated_on(&self) -> Option<&str>
pub fn last_updated_on(&self) -> Option<&str>
The day and time that this experiment or launch was most recently updated.
source§impl RefResource
impl RefResource
sourcepub fn builder() -> RefResourceBuilder
pub fn builder() -> RefResourceBuilder
Creates a new builder-style object to manufacture RefResource
.
Trait Implementations§
source§impl Clone for RefResource
impl Clone for RefResource
source§fn clone(&self) -> RefResource
fn clone(&self) -> RefResource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RefResource
impl Debug for RefResource
source§impl PartialEq for RefResource
impl PartialEq for RefResource
source§fn eq(&self, other: &RefResource) -> bool
fn eq(&self, other: &RefResource) -> bool
self
and other
values to be equal, and is used
by ==
.