Struct aws_sdk_amplifybackend::model::BackendApiResourceConfig [−][src]
#[non_exhaustive]pub struct BackendApiResourceConfig {
pub additional_auth_types: Option<Vec<BackendApiAuthType>>,
pub api_name: Option<String>,
pub conflict_resolution: Option<BackendApiConflictResolution>,
pub default_auth_type: Option<BackendApiAuthType>,
pub service: Option<String>,
pub transform_schema: Option<String>,
}
Expand description
The resource config for the data model, configured as a part of the Amplify project.
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.additional_auth_types: Option<Vec<BackendApiAuthType>>
Additional authentication methods used to interact with your data models.
api_name: Option<String>
The API name used to interact with the data model, configured as a part of your Amplify project.
conflict_resolution: Option<BackendApiConflictResolution>
The conflict resolution strategy for your data stored in the data models.
default_auth_type: Option<BackendApiAuthType>
The default authentication type for interacting with the configured data models in your Amplify project.
service: Option<String>
The service used to provision and interact with the data model.
transform_schema: Option<String>
The definition of the data model in the annotated transform of the GraphQL schema.
Implementations
Additional authentication methods used to interact with your data models.
The API name used to interact with the data model, configured as a part of your Amplify project.
The conflict resolution strategy for your data stored in the data models.
The default authentication type for interacting with the configured data models in your Amplify project.
The service used to provision and interact with the data model.
The definition of the data model in the annotated transform of the GraphQL schema.
Creates a new builder-style object to manufacture BackendApiResourceConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for BackendApiResourceConfig
impl Send for BackendApiResourceConfig
impl Sync for BackendApiResourceConfig
impl Unpin for BackendApiResourceConfig
impl UnwindSafe for BackendApiResourceConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more