Struct aws_sdk_appsync::operation::evaluate_code::EvaluateCodeInput
source · #[non_exhaustive]pub struct EvaluateCodeInput { /* private fields */ }Implementations§
source§impl EvaluateCodeInput
impl EvaluateCodeInput
sourcepub fn runtime(&self) -> Option<&AppSyncRuntime>
pub fn runtime(&self) -> Option<&AppSyncRuntime>
The runtime to be used when evaluating the code. Currently, only the APPSYNC_JS runtime is supported.
sourcepub fn code(&self) -> Option<&str>
pub fn code(&self) -> Option<&str>
The code definition to be evaluated. Note that code and runtime are both required for this action. The runtime value must be APPSYNC_JS.
source§impl EvaluateCodeInput
impl EvaluateCodeInput
sourcepub fn builder() -> EvaluateCodeInputBuilder
pub fn builder() -> EvaluateCodeInputBuilder
Creates a new builder-style object to manufacture EvaluateCodeInput.
source§impl EvaluateCodeInput
impl EvaluateCodeInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EvaluateCode, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<EvaluateCode, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<EvaluateCode>
Trait Implementations§
source§impl Clone for EvaluateCodeInput
impl Clone for EvaluateCodeInput
source§fn clone(&self) -> EvaluateCodeInput
fn clone(&self) -> EvaluateCodeInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for EvaluateCodeInput
impl Debug for EvaluateCodeInput
source§impl PartialEq<EvaluateCodeInput> for EvaluateCodeInput
impl PartialEq<EvaluateCodeInput> for EvaluateCodeInput
source§fn eq(&self, other: &EvaluateCodeInput) -> bool
fn eq(&self, other: &EvaluateCodeInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.