#[non_exhaustive]pub struct CreateFunctionInput {
pub api_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub data_source_name: Option<String>,
pub request_mapping_template: Option<String>,
pub response_mapping_template: Option<String>,
pub function_version: Option<String>,
pub sync_config: Option<SyncConfig>,
pub max_batch_size: Option<i32>,
pub runtime: Option<AppSyncRuntime>,
pub code: Option<String>,
}
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.api_id: Option<String>
The GraphQL API ID.
name: Option<String>
The Function
name. The function name does not have to be unique.
description: Option<String>
The Function
description.
data_source_name: Option<String>
The Function
DataSource
name.
request_mapping_template: Option<String>
The Function
request mapping template. Functions support only the 2018-05-29 version of the request mapping template.
response_mapping_template: Option<String>
The Function
response mapping template.
function_version: Option<String>
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.
sync_config: Option<SyncConfig>
Describes a Sync configuration for a resolver.
Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.
max_batch_size: Option<i32>
The maximum batching size for a resolver.
runtime: 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.
code: Option<String>
The function
code that contains the request and response functions. When code is used, the runtime
is required. The runtime
value must be APPSYNC_JS
.
Implementations§
source§impl CreateFunctionInput
impl CreateFunctionInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The Function
name. The function name does not have to be unique.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The Function
description.
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
response 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) -> Option<i32>
pub fn max_batch_size(&self) -> Option<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.
source§impl CreateFunctionInput
impl CreateFunctionInput
sourcepub fn builder() -> CreateFunctionInputBuilder
pub fn builder() -> CreateFunctionInputBuilder
Creates a new builder-style object to manufacture CreateFunctionInput
.
Trait Implementations§
source§impl Clone for CreateFunctionInput
impl Clone for CreateFunctionInput
source§fn clone(&self) -> CreateFunctionInput
fn clone(&self) -> CreateFunctionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateFunctionInput
impl Debug for CreateFunctionInput
source§impl PartialEq for CreateFunctionInput
impl PartialEq for CreateFunctionInput
source§fn eq(&self, other: &CreateFunctionInput) -> bool
fn eq(&self, other: &CreateFunctionInput) -> bool
self
and other
values to be equal, and is used
by ==
.