[][src]Struct rusoto_appsync::GraphqlApi

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 waf_web_acl_arn: Option<String>,
    pub xray_enabled: Option<bool>,
}

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.

tags: Option<HashMap<String, String>>

The tags.

uris: Option<HashMap<String, String>>

The URIs.

user_pool_config: Option<UserPoolConfig>

The Amazon Cognito user pool configuration.

waf_web_acl_arn: Option<String>

The ARN of the AWS Web Application Firewall (WAF) ACL associated with this GraphqlApi, if one exists.

xray_enabled: Option<bool>

A flag representing whether X-Ray tracing is enabled for this GraphqlApi.

Trait Implementations

impl Clone for GraphqlApi[src]

impl Debug for GraphqlApi[src]

impl Default for GraphqlApi[src]

impl<'de> Deserialize<'de> for GraphqlApi[src]

impl PartialEq<GraphqlApi> for GraphqlApi[src]

impl StructuralPartialEq for GraphqlApi[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.