/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace AppSync { namespace Model { /** */ class AWS_APPSYNC_API UpdateGraphqlApiRequest : public AppSyncRequest { public: UpdateGraphqlApiRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateGraphqlApi"; } Aws::String SerializePayload() const override; /** *

The API ID.

*/ inline const Aws::String& GetApiId() const{ return m_apiId; } /** *

The API ID.

*/ inline bool ApiIdHasBeenSet() const { return m_apiIdHasBeenSet; } /** *

The API ID.

*/ inline void SetApiId(const Aws::String& value) { m_apiIdHasBeenSet = true; m_apiId = value; } /** *

The API ID.

*/ inline void SetApiId(Aws::String&& value) { m_apiIdHasBeenSet = true; m_apiId = std::move(value); } /** *

The API ID.

*/ inline void SetApiId(const char* value) { m_apiIdHasBeenSet = true; m_apiId.assign(value); } /** *

The API ID.

*/ inline UpdateGraphqlApiRequest& WithApiId(const Aws::String& value) { SetApiId(value); return *this;} /** *

The API ID.

*/ inline UpdateGraphqlApiRequest& WithApiId(Aws::String&& value) { SetApiId(std::move(value)); return *this;} /** *

The API ID.

*/ inline UpdateGraphqlApiRequest& WithApiId(const char* value) { SetApiId(value); return *this;} /** *

The new name for the GraphqlApi object.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The new name for the GraphqlApi object.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The new name for the GraphqlApi object.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The new name for the GraphqlApi object.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The new name for the GraphqlApi object.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The new name for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The new name for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The new name for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The Amazon CloudWatch Logs configuration for the GraphqlApi * object.

*/ inline const LogConfig& GetLogConfig() const{ return m_logConfig; } /** *

The Amazon CloudWatch Logs configuration for the GraphqlApi * object.

*/ inline bool LogConfigHasBeenSet() const { return m_logConfigHasBeenSet; } /** *

The Amazon CloudWatch Logs configuration for the GraphqlApi * object.

*/ inline void SetLogConfig(const LogConfig& value) { m_logConfigHasBeenSet = true; m_logConfig = value; } /** *

The Amazon CloudWatch Logs configuration for the GraphqlApi * object.

*/ inline void SetLogConfig(LogConfig&& value) { m_logConfigHasBeenSet = true; m_logConfig = std::move(value); } /** *

The Amazon CloudWatch Logs configuration for the GraphqlApi * object.

*/ inline UpdateGraphqlApiRequest& WithLogConfig(const LogConfig& value) { SetLogConfig(value); return *this;} /** *

The Amazon CloudWatch Logs configuration for the GraphqlApi * object.

*/ inline UpdateGraphqlApiRequest& WithLogConfig(LogConfig&& value) { SetLogConfig(std::move(value)); return *this;} /** *

The new authentication type for the GraphqlApi object.

*/ inline const AuthenticationType& GetAuthenticationType() const{ return m_authenticationType; } /** *

The new authentication type for the GraphqlApi object.

*/ inline bool AuthenticationTypeHasBeenSet() const { return m_authenticationTypeHasBeenSet; } /** *

The new authentication type for the GraphqlApi object.

*/ inline void SetAuthenticationType(const AuthenticationType& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = value; } /** *

The new authentication type for the GraphqlApi object.

*/ inline void SetAuthenticationType(AuthenticationType&& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = std::move(value); } /** *

The new authentication type for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithAuthenticationType(const AuthenticationType& value) { SetAuthenticationType(value); return *this;} /** *

The new authentication type for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithAuthenticationType(AuthenticationType&& value) { SetAuthenticationType(std::move(value)); return *this;} /** *

The new Amazon Cognito user pool configuration for the * GraphqlApi object.

*/ inline const UserPoolConfig& GetUserPoolConfig() const{ return m_userPoolConfig; } /** *

The new Amazon Cognito user pool configuration for the * GraphqlApi object.

*/ inline bool UserPoolConfigHasBeenSet() const { return m_userPoolConfigHasBeenSet; } /** *

The new Amazon Cognito user pool configuration for the * GraphqlApi object.

*/ inline void SetUserPoolConfig(const UserPoolConfig& value) { m_userPoolConfigHasBeenSet = true; m_userPoolConfig = value; } /** *

The new Amazon Cognito user pool configuration for the * GraphqlApi object.

*/ inline void SetUserPoolConfig(UserPoolConfig&& value) { m_userPoolConfigHasBeenSet = true; m_userPoolConfig = std::move(value); } /** *

The new Amazon Cognito user pool configuration for the * GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithUserPoolConfig(const UserPoolConfig& value) { SetUserPoolConfig(value); return *this;} /** *

The new Amazon Cognito user pool configuration for the * GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithUserPoolConfig(UserPoolConfig&& value) { SetUserPoolConfig(std::move(value)); return *this;} /** *

The OpenID Connect configuration for the GraphqlApi object.

*/ inline const OpenIDConnectConfig& GetOpenIDConnectConfig() const{ return m_openIDConnectConfig; } /** *

The OpenID Connect configuration for the GraphqlApi object.

*/ inline bool OpenIDConnectConfigHasBeenSet() const { return m_openIDConnectConfigHasBeenSet; } /** *

The OpenID Connect configuration for the GraphqlApi object.

*/ inline void SetOpenIDConnectConfig(const OpenIDConnectConfig& value) { m_openIDConnectConfigHasBeenSet = true; m_openIDConnectConfig = value; } /** *

The OpenID Connect configuration for the GraphqlApi object.

*/ inline void SetOpenIDConnectConfig(OpenIDConnectConfig&& value) { m_openIDConnectConfigHasBeenSet = true; m_openIDConnectConfig = std::move(value); } /** *

The OpenID Connect configuration for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithOpenIDConnectConfig(const OpenIDConnectConfig& value) { SetOpenIDConnectConfig(value); return *this;} /** *

The OpenID Connect configuration for the GraphqlApi object.

*/ inline UpdateGraphqlApiRequest& WithOpenIDConnectConfig(OpenIDConnectConfig&& value) { SetOpenIDConnectConfig(std::move(value)); return *this;} /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline const Aws::Vector& GetAdditionalAuthenticationProviders() const{ return m_additionalAuthenticationProviders; } /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline bool AdditionalAuthenticationProvidersHasBeenSet() const { return m_additionalAuthenticationProvidersHasBeenSet; } /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline void SetAdditionalAuthenticationProviders(const Aws::Vector& value) { m_additionalAuthenticationProvidersHasBeenSet = true; m_additionalAuthenticationProviders = value; } /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline void SetAdditionalAuthenticationProviders(Aws::Vector&& value) { m_additionalAuthenticationProvidersHasBeenSet = true; m_additionalAuthenticationProviders = std::move(value); } /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline UpdateGraphqlApiRequest& WithAdditionalAuthenticationProviders(const Aws::Vector& value) { SetAdditionalAuthenticationProviders(value); return *this;} /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline UpdateGraphqlApiRequest& WithAdditionalAuthenticationProviders(Aws::Vector&& value) { SetAdditionalAuthenticationProviders(std::move(value)); return *this;} /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline UpdateGraphqlApiRequest& AddAdditionalAuthenticationProviders(const AdditionalAuthenticationProvider& value) { m_additionalAuthenticationProvidersHasBeenSet = true; m_additionalAuthenticationProviders.push_back(value); return *this; } /** *

A list of additional authentication providers for the GraphqlApi * API.

*/ inline UpdateGraphqlApiRequest& AddAdditionalAuthenticationProviders(AdditionalAuthenticationProvider&& value) { m_additionalAuthenticationProvidersHasBeenSet = true; m_additionalAuthenticationProviders.push_back(std::move(value)); return *this; } /** *

A flag indicating whether to enable X-Ray tracing for the * GraphqlApi.

*/ inline bool GetXrayEnabled() const{ return m_xrayEnabled; } /** *

A flag indicating whether to enable X-Ray tracing for the * GraphqlApi.

*/ inline bool XrayEnabledHasBeenSet() const { return m_xrayEnabledHasBeenSet; } /** *

A flag indicating whether to enable X-Ray tracing for the * GraphqlApi.

*/ inline void SetXrayEnabled(bool value) { m_xrayEnabledHasBeenSet = true; m_xrayEnabled = value; } /** *

A flag indicating whether to enable X-Ray tracing for the * GraphqlApi.

*/ inline UpdateGraphqlApiRequest& WithXrayEnabled(bool value) { SetXrayEnabled(value); return *this;} private: Aws::String m_apiId; bool m_apiIdHasBeenSet; Aws::String m_name; bool m_nameHasBeenSet; LogConfig m_logConfig; bool m_logConfigHasBeenSet; AuthenticationType m_authenticationType; bool m_authenticationTypeHasBeenSet; UserPoolConfig m_userPoolConfig; bool m_userPoolConfigHasBeenSet; OpenIDConnectConfig m_openIDConnectConfig; bool m_openIDConnectConfigHasBeenSet; Aws::Vector m_additionalAuthenticationProviders; bool m_additionalAuthenticationProvidersHasBeenSet; bool m_xrayEnabled; bool m_xrayEnabledHasBeenSet; }; } // namespace Model } // namespace AppSync } // namespace Aws