pub struct GraphqlApi {
pub additional_authentication_providers: Option<Vec<AdditionalAuthenticationProvider>>,
pub api_id: Option<String>,
pub arn: Option<String>,
pub authentication_type: Option<String>,
pub log_config: Option<LogConfig>,
pub name: Option<String>,
pub open_id_connect_config: Option<OpenIDConnectConfig>,
pub tags: Option<HashMap<String, String>>,
pub uris: Option<HashMap<String, String>>,
pub user_pool_config: Option<UserPoolConfig>,
pub xray_enabled: Option<bool>,
}
Expand description
Describes a GraphQL API.
Fields§
§additional_authentication_providers: Option<Vec<AdditionalAuthenticationProvider>>
A list of additional authentication providers for the GraphqlApi
API.
api_id: Option<String>
The API ID.
arn: Option<String>
The ARN.
authentication_type: Option<String>
The authentication type.
log_config: Option<LogConfig>
The Amazon CloudWatch Logs configuration.
name: Option<String>
The API name.
open_id_connect_config: Option<OpenIDConnectConfig>
The OpenID Connect configuration.
The tags.
uris: Option<HashMap<String, String>>
The URIs.
user_pool_config: Option<UserPoolConfig>
The Amazon Cognito user pool configuration.
xray_enabled: Option<bool>
A flag representing whether X-Ray tracing is enabled for this GraphqlApi
.
Trait Implementations§
Source§impl Clone for GraphqlApi
impl Clone for GraphqlApi
Source§fn clone(&self) -> GraphqlApi
fn clone(&self) -> GraphqlApi
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 GraphqlApi
impl Debug for GraphqlApi
Source§impl Default for GraphqlApi
impl Default for GraphqlApi
Source§fn default() -> GraphqlApi
fn default() -> GraphqlApi
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphqlApi
impl<'de> Deserialize<'de> for GraphqlApi
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GraphqlApi
impl PartialEq for GraphqlApi
impl StructuralPartialEq for GraphqlApi
Auto Trait Implementations§
impl Freeze for GraphqlApi
impl RefUnwindSafe for GraphqlApi
impl Send for GraphqlApi
impl Sync for GraphqlApi
impl Unpin for GraphqlApi
impl UnwindSafe for GraphqlApi
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