pub struct UpdateGraphqlApiRequest {
pub additional_authentication_providers: Option<Vec<AdditionalAuthenticationProvider>>,
pub api_id: String,
pub authentication_type: Option<String>,
pub log_config: Option<LogConfig>,
pub name: String,
pub open_id_connect_config: Option<OpenIDConnectConfig>,
pub user_pool_config: Option<UserPoolConfig>,
pub xray_enabled: Option<bool>,
}
Fields§
§additional_authentication_providers: Option<Vec<AdditionalAuthenticationProvider>>
A list of additional authentication providers for the GraphqlApi
API.
api_id: String
The API ID.
authentication_type: Option<String>
The new authentication type for the GraphqlApi
object.
log_config: Option<LogConfig>
The Amazon CloudWatch Logs configuration for the GraphqlApi
object.
name: String
The new name for the GraphqlApi
object.
open_id_connect_config: Option<OpenIDConnectConfig>
The OpenID Connect configuration for the GraphqlApi
object.
user_pool_config: Option<UserPoolConfig>
The new Amazon Cognito user pool configuration for the GraphqlApi
object.
xray_enabled: Option<bool>
A flag indicating whether to enable X-Ray tracing for the GraphqlApi
.
Trait Implementations§
Source§impl Clone for UpdateGraphqlApiRequest
impl Clone for UpdateGraphqlApiRequest
Source§fn clone(&self) -> UpdateGraphqlApiRequest
fn clone(&self) -> UpdateGraphqlApiRequest
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 UpdateGraphqlApiRequest
impl Debug for UpdateGraphqlApiRequest
Source§impl Default for UpdateGraphqlApiRequest
impl Default for UpdateGraphqlApiRequest
Source§fn default() -> UpdateGraphqlApiRequest
fn default() -> UpdateGraphqlApiRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateGraphqlApiRequest
impl PartialEq for UpdateGraphqlApiRequest
Source§impl Serialize for UpdateGraphqlApiRequest
impl Serialize for UpdateGraphqlApiRequest
impl StructuralPartialEq for UpdateGraphqlApiRequest
Auto Trait Implementations§
impl Freeze for UpdateGraphqlApiRequest
impl RefUnwindSafe for UpdateGraphqlApiRequest
impl Send for UpdateGraphqlApiRequest
impl Sync for UpdateGraphqlApiRequest
impl Unpin for UpdateGraphqlApiRequest
impl UnwindSafe for UpdateGraphqlApiRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more