Struct aws_sdk_appsync::input::UpdateGraphqlApiInput
source · [−]#[non_exhaustive]pub struct UpdateGraphqlApiInput {
pub api_id: Option<String>,
pub name: Option<String>,
pub log_config: Option<LogConfig>,
pub authentication_type: Option<AuthenticationType>,
pub user_pool_config: Option<UserPoolConfig>,
pub open_id_connect_config: Option<OpenIdConnectConfig>,
pub additional_authentication_providers: Option<Vec<AdditionalAuthenticationProvider>>,
pub xray_enabled: bool,
pub lambda_authorizer_config: Option<LambdaAuthorizerConfig>,
}
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 API ID.
name: Option<String>
The new name for the GraphqlApi
object.
log_config: Option<LogConfig>
The Amazon CloudWatch Logs configuration for the GraphqlApi
object.
authentication_type: Option<AuthenticationType>
The new authentication type for the GraphqlApi
object.
user_pool_config: Option<UserPoolConfig>
The new Amazon Cognito user pool configuration for the ~GraphqlApi
object.
open_id_connect_config: Option<OpenIdConnectConfig>
The OpenID Connect configuration for the GraphqlApi
object.
additional_authentication_providers: Option<Vec<AdditionalAuthenticationProvider>>
A list of additional authentication providers for the GraphqlApi
API.
xray_enabled: bool
A flag indicating whether to use X-Ray tracing for the GraphqlApi
.
Configuration for Lambda function authorization.
Implementations
sourceimpl UpdateGraphqlApiInput
impl UpdateGraphqlApiInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateGraphqlApi, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateGraphqlApi, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateGraphqlApi
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateGraphqlApiInput
sourceimpl UpdateGraphqlApiInput
impl UpdateGraphqlApiInput
sourcepub fn log_config(&self) -> Option<&LogConfig>
pub fn log_config(&self) -> Option<&LogConfig>
The Amazon CloudWatch Logs configuration for the GraphqlApi
object.
sourcepub fn authentication_type(&self) -> Option<&AuthenticationType>
pub fn authentication_type(&self) -> Option<&AuthenticationType>
The new authentication type for the GraphqlApi
object.
sourcepub fn user_pool_config(&self) -> Option<&UserPoolConfig>
pub fn user_pool_config(&self) -> Option<&UserPoolConfig>
The new Amazon Cognito user pool configuration for the ~GraphqlApi
object.
sourcepub fn open_id_connect_config(&self) -> Option<&OpenIdConnectConfig>
pub fn open_id_connect_config(&self) -> Option<&OpenIdConnectConfig>
The OpenID Connect configuration for the GraphqlApi
object.
sourcepub fn additional_authentication_providers(
&self
) -> Option<&[AdditionalAuthenticationProvider]>
pub fn additional_authentication_providers(
&self
) -> Option<&[AdditionalAuthenticationProvider]>
A list of additional authentication providers for the GraphqlApi
API.
sourcepub fn xray_enabled(&self) -> bool
pub fn xray_enabled(&self) -> bool
A flag indicating whether to use X-Ray tracing for the GraphqlApi
.
Configuration for Lambda function authorization.
Trait Implementations
sourceimpl Clone for UpdateGraphqlApiInput
impl Clone for UpdateGraphqlApiInput
sourcefn clone(&self) -> UpdateGraphqlApiInput
fn clone(&self) -> UpdateGraphqlApiInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateGraphqlApiInput
impl Debug for UpdateGraphqlApiInput
sourceimpl PartialEq<UpdateGraphqlApiInput> for UpdateGraphqlApiInput
impl PartialEq<UpdateGraphqlApiInput> for UpdateGraphqlApiInput
sourcefn eq(&self, other: &UpdateGraphqlApiInput) -> bool
fn eq(&self, other: &UpdateGraphqlApiInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateGraphqlApiInput) -> bool
fn ne(&self, other: &UpdateGraphqlApiInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateGraphqlApiInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateGraphqlApiInput
impl Send for UpdateGraphqlApiInput
impl Sync for UpdateGraphqlApiInput
impl Unpin for UpdateGraphqlApiInput
impl UnwindSafe for UpdateGraphqlApiInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more