#[non_exhaustive]pub struct UpdateProjectInput {
pub project: Option<String>,
pub app_config_resource: Option<ProjectAppConfigResourceConfig>,
pub description: 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.project: Option<String>The name or ARN of the project to update.
app_config_resource: Option<ProjectAppConfigResourceConfig>Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to
This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.
description: Option<String>An optional description of the project.
Implementations§
source§impl UpdateProjectInput
impl UpdateProjectInput
sourcepub fn app_config_resource(&self) -> Option<&ProjectAppConfigResourceConfig>
pub fn app_config_resource(&self) -> Option<&ProjectAppConfigResourceConfig>
Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to
This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
An optional description of the project.
source§impl UpdateProjectInput
impl UpdateProjectInput
sourcepub fn builder() -> UpdateProjectInputBuilder
pub fn builder() -> UpdateProjectInputBuilder
Creates a new builder-style object to manufacture UpdateProjectInput.
Trait Implementations§
source§impl Clone for UpdateProjectInput
impl Clone for UpdateProjectInput
source§fn clone(&self) -> UpdateProjectInput
fn clone(&self) -> UpdateProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateProjectInput
impl Debug for UpdateProjectInput
source§impl PartialEq for UpdateProjectInput
impl PartialEq for UpdateProjectInput
source§fn eq(&self, other: &UpdateProjectInput) -> bool
fn eq(&self, other: &UpdateProjectInput) -> bool
self and other values to be equal, and is used
by ==.