Struct aws_sdk_support::operation::describe_supported_languages::DescribeSupportedLanguagesInput
source · #[non_exhaustive]pub struct DescribeSupportedLanguagesInput {
pub issue_type: Option<String>,
pub service_code: Option<String>,
pub category_code: 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.issue_type: Option<String>
The type of issue for the case. You can specify customer-service
or technical
.
service_code: Option<String>
The code for the Amazon Web Services service. You can use the DescribeServices
operation to get the possible serviceCode
values.
category_code: Option<String>
The category of problem for the support case. You also use the DescribeServices
operation to get the category code for a service. Each Amazon Web Services service defines its own set of category codes.
Implementations§
source§impl DescribeSupportedLanguagesInput
impl DescribeSupportedLanguagesInput
sourcepub fn issue_type(&self) -> Option<&str>
pub fn issue_type(&self) -> Option<&str>
The type of issue for the case. You can specify customer-service
or technical
.
sourcepub fn service_code(&self) -> Option<&str>
pub fn service_code(&self) -> Option<&str>
The code for the Amazon Web Services service. You can use the DescribeServices
operation to get the possible serviceCode
values.
sourcepub fn category_code(&self) -> Option<&str>
pub fn category_code(&self) -> Option<&str>
The category of problem for the support case. You also use the DescribeServices
operation to get the category code for a service. Each Amazon Web Services service defines its own set of category codes.
source§impl DescribeSupportedLanguagesInput
impl DescribeSupportedLanguagesInput
sourcepub fn builder() -> DescribeSupportedLanguagesInputBuilder
pub fn builder() -> DescribeSupportedLanguagesInputBuilder
Creates a new builder-style object to manufacture DescribeSupportedLanguagesInput
.
Trait Implementations§
source§impl Clone for DescribeSupportedLanguagesInput
impl Clone for DescribeSupportedLanguagesInput
source§fn clone(&self) -> DescribeSupportedLanguagesInput
fn clone(&self) -> DescribeSupportedLanguagesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeSupportedLanguagesInput
impl PartialEq for DescribeSupportedLanguagesInput
source§fn eq(&self, other: &DescribeSupportedLanguagesInput) -> bool
fn eq(&self, other: &DescribeSupportedLanguagesInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeSupportedLanguagesInput
Auto Trait Implementations§
impl Freeze for DescribeSupportedLanguagesInput
impl RefUnwindSafe for DescribeSupportedLanguagesInput
impl Send for DescribeSupportedLanguagesInput
impl Sync for DescribeSupportedLanguagesInput
impl Unpin for DescribeSupportedLanguagesInput
impl UnwindSafe for DescribeSupportedLanguagesInput
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