#[non_exhaustive]pub struct GetRecommendationsInput { /* private fields */ }
Expand description
The structure representing the GetRecommendationsRequest.
Implementations§
source§impl GetRecommendationsInput
impl GetRecommendationsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRecommendations, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRecommendations, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetRecommendations
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetRecommendationsInput
.
source§impl GetRecommendationsInput
impl GetRecommendationsInput
sourcepub fn profiling_group_name(&self) -> Option<&str>
pub fn profiling_group_name(&self) -> Option<&str>
The name of the profiling group to get analysis data about.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The end time of the profile to get analysis data about. You must specify startTime
and endTime
. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The start time of the profile to get analysis data about. You must specify startTime
and endTime
. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn locale(&self) -> Option<&str>
pub fn locale(&self) -> Option<&str>
The language used to provide analysis. Specify using a string that is one of the following BCP 47
language codes.
-
de-DE
- German, Germany -
en-GB
- English, United Kingdom -
en-US
- English, United States -
es-ES
- Spanish, Spain -
fr-FR
- French, France -
it-IT
- Italian, Italy -
ja-JP
- Japanese, Japan -
ko-KR
- Korean, Republic of Korea -
pt-BR
- Portugese, Brazil -
zh-CN
- Chinese, China -
zh-TW
- Chinese, Taiwan
Trait Implementations§
source§impl Clone for GetRecommendationsInput
impl Clone for GetRecommendationsInput
source§fn clone(&self) -> GetRecommendationsInput
fn clone(&self) -> GetRecommendationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetRecommendationsInput
impl Debug for GetRecommendationsInput
source§impl PartialEq<GetRecommendationsInput> for GetRecommendationsInput
impl PartialEq<GetRecommendationsInput> for GetRecommendationsInput
source§fn eq(&self, other: &GetRecommendationsInput) -> bool
fn eq(&self, other: &GetRecommendationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.