#[non_exhaustive]pub struct CreateTestConfigurationInput {
pub name: Option<String>,
pub description: Option<String>,
pub resources: Option<Vec<Resource>>,
pub properties: Option<HashMap<String, String>>,
pub client_token: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub service_settings: Option<ServiceSettings>,
}
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: Option<String>
The name of the test configuration.
description: Option<String>
The description of the test configuration.
resources: Option<Vec<Resource>>
The defined resources of the test configuration.
properties: Option<HashMap<String, String>>
The properties of the test configuration.
client_token: Option<String>
The client token of the test configuration.
The tags of the test configuration.
service_settings: Option<ServiceSettings>
The service settings of the test configuration.
Implementations§
source§impl CreateTestConfigurationInput
impl CreateTestConfigurationInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the test configuration.
sourcepub fn resources(&self) -> &[Resource]
pub fn resources(&self) -> &[Resource]
The defined resources of the test configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .resources.is_none()
.
sourcepub fn properties(&self) -> Option<&HashMap<String, String>>
pub fn properties(&self) -> Option<&HashMap<String, String>>
The properties of the test configuration.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The client token of the test configuration.
The tags of the test configuration.
sourcepub fn service_settings(&self) -> Option<&ServiceSettings>
pub fn service_settings(&self) -> Option<&ServiceSettings>
The service settings of the test configuration.
source§impl CreateTestConfigurationInput
impl CreateTestConfigurationInput
sourcepub fn builder() -> CreateTestConfigurationInputBuilder
pub fn builder() -> CreateTestConfigurationInputBuilder
Creates a new builder-style object to manufacture CreateTestConfigurationInput
.
Trait Implementations§
source§impl Clone for CreateTestConfigurationInput
impl Clone for CreateTestConfigurationInput
source§fn clone(&self) -> CreateTestConfigurationInput
fn clone(&self) -> CreateTestConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateTestConfigurationInput
impl Debug for CreateTestConfigurationInput
source§impl PartialEq for CreateTestConfigurationInput
impl PartialEq for CreateTestConfigurationInput
source§fn eq(&self, other: &CreateTestConfigurationInput) -> bool
fn eq(&self, other: &CreateTestConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateTestConfigurationInput
Auto Trait Implementations§
impl Freeze for CreateTestConfigurationInput
impl RefUnwindSafe for CreateTestConfigurationInput
impl Send for CreateTestConfigurationInput
impl Sync for CreateTestConfigurationInput
impl Unpin for CreateTestConfigurationInput
impl UnwindSafe for CreateTestConfigurationInput
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