#[non_exhaustive]pub struct StartResourceEvaluationInput { /* private fields */ }Implementations§
source§impl StartResourceEvaluationInput
impl StartResourceEvaluationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartResourceEvaluation, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartResourceEvaluation, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartResourceEvaluation>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartResourceEvaluationInput.
source§impl StartResourceEvaluationInput
impl StartResourceEvaluationInput
sourcepub fn resource_details(&self) -> Option<&ResourceDetails>
pub fn resource_details(&self) -> Option<&ResourceDetails>
Returns a ResourceDetails object.
sourcepub fn evaluation_context(&self) -> Option<&EvaluationContext>
pub fn evaluation_context(&self) -> Option<&EvaluationContext>
Returns an EvaluationContext object.
sourcepub fn evaluation_mode(&self) -> Option<&EvaluationMode>
pub fn evaluation_mode(&self) -> Option<&EvaluationMode>
The mode of an evaluation. The valid value for this API is Proactive.
sourcepub fn evaluation_timeout(&self) -> i32
pub fn evaluation_timeout(&self) -> i32
The timeout for an evaluation. The default is 900 seconds. You cannot specify a number greater than 3600. If you specify 0, Config uses the default.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A client token is a unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request using one of these actions, specify a client token in the request.
Avoid reusing the same client token for other API requests. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, other than the Region or Availability Zone, the retry fails with an IdempotentParameterMismatch error.
Trait Implementations§
source§impl Clone for StartResourceEvaluationInput
impl Clone for StartResourceEvaluationInput
source§fn clone(&self) -> StartResourceEvaluationInput
fn clone(&self) -> StartResourceEvaluationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartResourceEvaluationInput
impl Debug for StartResourceEvaluationInput
source§impl PartialEq<StartResourceEvaluationInput> for StartResourceEvaluationInput
impl PartialEq<StartResourceEvaluationInput> for StartResourceEvaluationInput
source§fn eq(&self, other: &StartResourceEvaluationInput) -> bool
fn eq(&self, other: &StartResourceEvaluationInput) -> bool
self and other values to be equal, and is used
by ==.