Struct aws_sdk_appsync::input::UpdateFunctionInput
source · #[non_exhaustive]pub struct UpdateFunctionInput { /* private fields */ }
Implementations§
source§impl UpdateFunctionInput
impl UpdateFunctionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateFunction, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateFunction, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateFunction
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateFunctionInput
.
source§impl UpdateFunctionInput
impl UpdateFunctionInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The Function
description.
sourcepub fn function_id(&self) -> Option<&str>
pub fn function_id(&self) -> Option<&str>
The function ID.
sourcepub fn data_source_name(&self) -> Option<&str>
pub fn data_source_name(&self) -> Option<&str>
The Function
DataSource
name.
sourcepub fn request_mapping_template(&self) -> Option<&str>
pub fn request_mapping_template(&self) -> Option<&str>
The Function
request mapping template. Functions support only the 2018-05-29 version of the request mapping template.
sourcepub fn response_mapping_template(&self) -> Option<&str>
pub fn response_mapping_template(&self) -> Option<&str>
The Function
request mapping template.
sourcepub fn function_version(&self) -> Option<&str>
pub fn function_version(&self) -> Option<&str>
The version
of the request mapping template. Currently, the supported value is 2018-05-29. Note that when using VTL and mapping templates, the functionVersion
is required.
sourcepub fn sync_config(&self) -> Option<&SyncConfig>
pub fn sync_config(&self) -> Option<&SyncConfig>
Describes a Sync configuration for a resolver.
Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.
sourcepub fn max_batch_size(&self) -> i32
pub fn max_batch_size(&self) -> i32
The maximum batching size for a resolver.
sourcepub fn runtime(&self) -> Option<&AppSyncRuntime>
pub fn runtime(&self) -> Option<&AppSyncRuntime>
Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.
Trait Implementations§
source§impl Clone for UpdateFunctionInput
impl Clone for UpdateFunctionInput
source§fn clone(&self) -> UpdateFunctionInput
fn clone(&self) -> UpdateFunctionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateFunctionInput
impl Debug for UpdateFunctionInput
source§impl PartialEq<UpdateFunctionInput> for UpdateFunctionInput
impl PartialEq<UpdateFunctionInput> for UpdateFunctionInput
source§fn eq(&self, other: &UpdateFunctionInput) -> bool
fn eq(&self, other: &UpdateFunctionInput) -> bool
self
and other
values to be equal, and is used
by ==
.