/** * 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 #include #include #include #include namespace Aws { namespace AppSync { namespace Model { /** */ class CreateGraphqlApiRequest : public AppSyncRequest { public: AWS_APPSYNC_API CreateGraphqlApiRequest(); // 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 "CreateGraphqlApi"; } AWS_APPSYNC_API Aws::String SerializePayload() const override; /** *

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

A user-supplied name for the GraphqlApi.

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

The Amazon CloudWatch Logs configuration.

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

The Amazon CloudWatch Logs configuration.

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

The Amazon CloudWatch Logs configuration.

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

The Amazon CloudWatch Logs configuration.

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

The Amazon CloudWatch Logs configuration.

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

The Amazon CloudWatch Logs configuration.

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

The authentication type: API key, Identity and Access Management (IAM), * OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

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

The authentication type: API key, Identity and Access Management (IAM), * OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

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

The authentication type: API key, Identity and Access Management (IAM), * OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

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

The authentication type: API key, Identity and Access Management (IAM), * OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

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

The authentication type: API key, Identity and Access Management (IAM), * OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

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

The authentication type: API key, Identity and Access Management (IAM), * OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

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

The Amazon Cognito user pool configuration.

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

The Amazon Cognito user pool configuration.

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

The Amazon Cognito user pool configuration.

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

The Amazon Cognito user pool configuration.

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

The Amazon Cognito user pool configuration.

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

The Amazon Cognito user pool configuration.

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

The OIDC configuration.

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

The OIDC configuration.

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

The OIDC configuration.

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

The OIDC configuration.

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

The OIDC configuration.

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

The OIDC configuration.

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

A TagMap object.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

A TagMap object.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

A TagMap object.

*/ inline void SetTags(const Aws::Map& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

A TagMap object.

*/ inline void SetTags(Aws::Map&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

A TagMap object.

*/ inline CreateGraphqlApiRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, 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 CreateGraphqlApiRequest& WithAdditionalAuthenticationProviders(const Aws::Vector& value) { SetAdditionalAuthenticationProviders(value); return *this;} /** *

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

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

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

*/ inline CreateGraphqlApiRequest& 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 CreateGraphqlApiRequest& AddAdditionalAuthenticationProviders(AdditionalAuthenticationProvider&& value) { m_additionalAuthenticationProvidersHasBeenSet = true; m_additionalAuthenticationProviders.push_back(std::move(value)); return *this; } /** *

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

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

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

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

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

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

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

*/ inline CreateGraphqlApiRequest& WithXrayEnabled(bool value) { SetXrayEnabled(value); return *this;} /** *

Configuration for Lambda function authorization.

*/ inline const LambdaAuthorizerConfig& GetLambdaAuthorizerConfig() const{ return m_lambdaAuthorizerConfig; } /** *

Configuration for Lambda function authorization.

*/ inline bool LambdaAuthorizerConfigHasBeenSet() const { return m_lambdaAuthorizerConfigHasBeenSet; } /** *

Configuration for Lambda function authorization.

*/ inline void SetLambdaAuthorizerConfig(const LambdaAuthorizerConfig& value) { m_lambdaAuthorizerConfigHasBeenSet = true; m_lambdaAuthorizerConfig = value; } /** *

Configuration for Lambda function authorization.

*/ inline void SetLambdaAuthorizerConfig(LambdaAuthorizerConfig&& value) { m_lambdaAuthorizerConfigHasBeenSet = true; m_lambdaAuthorizerConfig = std::move(value); } /** *

Configuration for Lambda function authorization.

*/ inline CreateGraphqlApiRequest& WithLambdaAuthorizerConfig(const LambdaAuthorizerConfig& value) { SetLambdaAuthorizerConfig(value); return *this;} /** *

Configuration for Lambda function authorization.

*/ inline CreateGraphqlApiRequest& WithLambdaAuthorizerConfig(LambdaAuthorizerConfig&& value) { SetLambdaAuthorizerConfig(std::move(value)); return *this;} /** *

Sets the value of the GraphQL API to public (GLOBAL) or private * (PRIVATE). If no value is provided, the visibility will be set to * GLOBAL by default. This value cannot be changed once the API has * been created.

*/ inline const GraphQLApiVisibility& GetVisibility() const{ return m_visibility; } /** *

Sets the value of the GraphQL API to public (GLOBAL) or private * (PRIVATE). If no value is provided, the visibility will be set to * GLOBAL by default. This value cannot be changed once the API has * been created.

*/ inline bool VisibilityHasBeenSet() const { return m_visibilityHasBeenSet; } /** *

Sets the value of the GraphQL API to public (GLOBAL) or private * (PRIVATE). If no value is provided, the visibility will be set to * GLOBAL by default. This value cannot be changed once the API has * been created.

*/ inline void SetVisibility(const GraphQLApiVisibility& value) { m_visibilityHasBeenSet = true; m_visibility = value; } /** *

Sets the value of the GraphQL API to public (GLOBAL) or private * (PRIVATE). If no value is provided, the visibility will be set to * GLOBAL by default. This value cannot be changed once the API has * been created.

*/ inline void SetVisibility(GraphQLApiVisibility&& value) { m_visibilityHasBeenSet = true; m_visibility = std::move(value); } /** *

Sets the value of the GraphQL API to public (GLOBAL) or private * (PRIVATE). If no value is provided, the visibility will be set to * GLOBAL by default. This value cannot be changed once the API has * been created.

*/ inline CreateGraphqlApiRequest& WithVisibility(const GraphQLApiVisibility& value) { SetVisibility(value); return *this;} /** *

Sets the value of the GraphQL API to public (GLOBAL) or private * (PRIVATE). If no value is provided, the visibility will be set to * GLOBAL by default. This value cannot be changed once the API has * been created.

*/ inline CreateGraphqlApiRequest& WithVisibility(GraphQLApiVisibility&& value) { SetVisibility(std::move(value)); return *this;} /** *

The value that indicates whether the GraphQL API is a standard API * (GRAPHQL) or merged API (MERGED).

*/ inline const GraphQLApiType& GetApiType() const{ return m_apiType; } /** *

The value that indicates whether the GraphQL API is a standard API * (GRAPHQL) or merged API (MERGED).

*/ inline bool ApiTypeHasBeenSet() const { return m_apiTypeHasBeenSet; } /** *

The value that indicates whether the GraphQL API is a standard API * (GRAPHQL) or merged API (MERGED).

*/ inline void SetApiType(const GraphQLApiType& value) { m_apiTypeHasBeenSet = true; m_apiType = value; } /** *

The value that indicates whether the GraphQL API is a standard API * (GRAPHQL) or merged API (MERGED).

*/ inline void SetApiType(GraphQLApiType&& value) { m_apiTypeHasBeenSet = true; m_apiType = std::move(value); } /** *

The value that indicates whether the GraphQL API is a standard API * (GRAPHQL) or merged API (MERGED).

*/ inline CreateGraphqlApiRequest& WithApiType(const GraphQLApiType& value) { SetApiType(value); return *this;} /** *

The value that indicates whether the GraphQL API is a standard API * (GRAPHQL) or merged API (MERGED).

*/ inline CreateGraphqlApiRequest& WithApiType(GraphQLApiType&& value) { SetApiType(std::move(value)); return *this;} /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline const Aws::String& GetMergedApiExecutionRoleArn() const{ return m_mergedApiExecutionRoleArn; } /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline bool MergedApiExecutionRoleArnHasBeenSet() const { return m_mergedApiExecutionRoleArnHasBeenSet; } /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline void SetMergedApiExecutionRoleArn(const Aws::String& value) { m_mergedApiExecutionRoleArnHasBeenSet = true; m_mergedApiExecutionRoleArn = value; } /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline void SetMergedApiExecutionRoleArn(Aws::String&& value) { m_mergedApiExecutionRoleArnHasBeenSet = true; m_mergedApiExecutionRoleArn = std::move(value); } /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline void SetMergedApiExecutionRoleArn(const char* value) { m_mergedApiExecutionRoleArnHasBeenSet = true; m_mergedApiExecutionRoleArn.assign(value); } /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline CreateGraphqlApiRequest& WithMergedApiExecutionRoleArn(const Aws::String& value) { SetMergedApiExecutionRoleArn(value); return *this;} /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline CreateGraphqlApiRequest& WithMergedApiExecutionRoleArn(Aws::String&& value) { SetMergedApiExecutionRoleArn(std::move(value)); return *this;} /** *

The Identity and Access Management service role ARN for a merged API. The * AppSync service assumes this role on behalf of the Merged API to validate access * to source APIs at runtime and to prompt the AUTO_MERGE to update * the merged API endpoint with the source API changes automatically.

*/ inline CreateGraphqlApiRequest& WithMergedApiExecutionRoleArn(const char* value) { SetMergedApiExecutionRoleArn(value); return *this;} /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline const Aws::String& GetOwnerContact() const{ return m_ownerContact; } /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline bool OwnerContactHasBeenSet() const { return m_ownerContactHasBeenSet; } /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline void SetOwnerContact(const Aws::String& value) { m_ownerContactHasBeenSet = true; m_ownerContact = value; } /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline void SetOwnerContact(Aws::String&& value) { m_ownerContactHasBeenSet = true; m_ownerContact = std::move(value); } /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline void SetOwnerContact(const char* value) { m_ownerContactHasBeenSet = true; m_ownerContact.assign(value); } /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline CreateGraphqlApiRequest& WithOwnerContact(const Aws::String& value) { SetOwnerContact(value); return *this;} /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline CreateGraphqlApiRequest& WithOwnerContact(Aws::String&& value) { SetOwnerContact(std::move(value)); return *this;} /** *

The owner contact information for an API resource.

This field accepts * any string input with a length of 0 - 256 characters.

*/ inline CreateGraphqlApiRequest& WithOwnerContact(const char* value) { SetOwnerContact(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; LogConfig m_logConfig; bool m_logConfigHasBeenSet = false; AuthenticationType m_authenticationType; bool m_authenticationTypeHasBeenSet = false; UserPoolConfig m_userPoolConfig; bool m_userPoolConfigHasBeenSet = false; OpenIDConnectConfig m_openIDConnectConfig; bool m_openIDConnectConfigHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; Aws::Vector m_additionalAuthenticationProviders; bool m_additionalAuthenticationProvidersHasBeenSet = false; bool m_xrayEnabled; bool m_xrayEnabledHasBeenSet = false; LambdaAuthorizerConfig m_lambdaAuthorizerConfig; bool m_lambdaAuthorizerConfigHasBeenSet = false; GraphQLApiVisibility m_visibility; bool m_visibilityHasBeenSet = false; GraphQLApiType m_apiType; bool m_apiTypeHasBeenSet = false; Aws::String m_mergedApiExecutionRoleArn; bool m_mergedApiExecutionRoleArnHasBeenSet = false; Aws::String m_ownerContact; bool m_ownerContactHasBeenSet = false; }; } // namespace Model } // namespace AppSync } // namespace Aws