Struct aws_sdk_codeguruprofiler::input::GetRecommendationsInput [−][src]
#[non_exhaustive]pub struct GetRecommendationsInput {
pub profiling_group_name: Option<String>,
pub start_time: Option<Instant>,
pub end_time: Option<Instant>,
pub locale: Option<String>,
}
Expand description
The structure representing the GetRecommendationsRequest.
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.profiling_group_name: Option<String>
The name of the profiling group to get analysis data about.
start_time: Option<Instant>
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.
end_time: Option<Instant>
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.
locale: Option<String>
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
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRecommendations, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRecommendations, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetRecommendations
>
Creates a new builder-style object to manufacture GetRecommendationsInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetRecommendationsInput
impl Send for GetRecommendationsInput
impl Sync for GetRecommendationsInput
impl Unpin for GetRecommendationsInput
impl UnwindSafe for GetRecommendationsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more