#[non_exhaustive]pub struct DescribeServicesInput {
pub service_code_list: Option<Vec<String>>,
pub language: Option<String>,
}
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.service_code_list: Option<Vec<String>>
A JSON-formatted list of service codes available for Amazon Web Services services.
language: Option<String>
The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language
parameter if you want support in that language.
Implementations§
source§impl DescribeServicesInput
impl DescribeServicesInput
sourcepub fn service_code_list(&self) -> &[String]
pub fn service_code_list(&self) -> &[String]
A JSON-formatted list of service codes available for Amazon Web Services services.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .service_code_list.is_none()
.
sourcepub fn language(&self) -> Option<&str>
pub fn language(&self) -> Option<&str>
The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language
parameter if you want support in that language.
source§impl DescribeServicesInput
impl DescribeServicesInput
sourcepub fn builder() -> DescribeServicesInputBuilder
pub fn builder() -> DescribeServicesInputBuilder
Creates a new builder-style object to manufacture DescribeServicesInput
.
Trait Implementations§
source§impl Clone for DescribeServicesInput
impl Clone for DescribeServicesInput
source§fn clone(&self) -> DescribeServicesInput
fn clone(&self) -> DescribeServicesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeServicesInput
impl Debug for DescribeServicesInput
source§impl PartialEq for DescribeServicesInput
impl PartialEq for DescribeServicesInput
source§fn eq(&self, other: &DescribeServicesInput) -> bool
fn eq(&self, other: &DescribeServicesInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeServicesInput
Auto Trait Implementations§
impl Freeze for DescribeServicesInput
impl RefUnwindSafe for DescribeServicesInput
impl Send for DescribeServicesInput
impl Sync for DescribeServicesInput
impl Unpin for DescribeServicesInput
impl UnwindSafe for DescribeServicesInput
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