Struct aws_sdk_appsync::model::AppSyncRuntime
source · #[non_exhaustive]pub struct AppSyncRuntime { /* private fields */ }
Expand description
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.
Implementations§
source§impl AppSyncRuntime
impl AppSyncRuntime
sourcepub fn name(&self) -> Option<&RuntimeName>
pub fn name(&self) -> Option<&RuntimeName>
The name
of the runtime to use. Currently, the only allowed value is APPSYNC_JS
.
sourcepub fn runtime_version(&self) -> Option<&str>
pub fn runtime_version(&self) -> Option<&str>
The version
of the runtime to use. Currently, the only allowed version is 1.0.0
.
source§impl AppSyncRuntime
impl AppSyncRuntime
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AppSyncRuntime
.
Trait Implementations§
source§impl Clone for AppSyncRuntime
impl Clone for AppSyncRuntime
source§fn clone(&self) -> AppSyncRuntime
fn clone(&self) -> AppSyncRuntime
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 AppSyncRuntime
impl Debug for AppSyncRuntime
source§impl PartialEq<AppSyncRuntime> for AppSyncRuntime
impl PartialEq<AppSyncRuntime> for AppSyncRuntime
source§fn eq(&self, other: &AppSyncRuntime) -> bool
fn eq(&self, other: &AppSyncRuntime) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.