/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The request structure used to create apps in Amplify. See
* Also:
AWS
* API Reference
The name for the Amplify app.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name for the Amplify app.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name for the Amplify app.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name for the Amplify app.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name for the Amplify app.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name for the Amplify app.
*/ inline CreateAppRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name for the Amplify app.
*/ inline CreateAppRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name for the Amplify app.
*/ inline CreateAppRequest& WithName(const char* value) { SetName(value); return *this;} /** *The description for an Amplify app.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The description for an Amplify app.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The description for an Amplify app.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The description for an Amplify app.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The description for an Amplify app.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The description for an Amplify app.
*/ inline CreateAppRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description for an Amplify app.
*/ inline CreateAppRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description for an Amplify app.
*/ inline CreateAppRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The repository for an Amplify app.
*/ inline const Aws::String& GetRepository() const{ return m_repository; } /** *The repository for an Amplify app.
*/ inline bool RepositoryHasBeenSet() const { return m_repositoryHasBeenSet; } /** *The repository for an Amplify app.
*/ inline void SetRepository(const Aws::String& value) { m_repositoryHasBeenSet = true; m_repository = value; } /** *The repository for an Amplify app.
*/ inline void SetRepository(Aws::String&& value) { m_repositoryHasBeenSet = true; m_repository = std::move(value); } /** *The repository for an Amplify app.
*/ inline void SetRepository(const char* value) { m_repositoryHasBeenSet = true; m_repository.assign(value); } /** *The repository for an Amplify app.
*/ inline CreateAppRequest& WithRepository(const Aws::String& value) { SetRepository(value); return *this;} /** *The repository for an Amplify app.
*/ inline CreateAppRequest& WithRepository(Aws::String&& value) { SetRepository(std::move(value)); return *this;} /** *The repository for an Amplify app.
*/ inline CreateAppRequest& WithRepository(const char* value) { SetRepository(value); return *this;} /** *The platform or framework for an Amplify app.
*/ inline const Platform& GetPlatform() const{ return m_platform; } /** *The platform or framework for an Amplify app.
*/ inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; } /** *The platform or framework for an Amplify app.
*/ inline void SetPlatform(const Platform& value) { m_platformHasBeenSet = true; m_platform = value; } /** *The platform or framework for an Amplify app.
*/ inline void SetPlatform(Platform&& value) { m_platformHasBeenSet = true; m_platform = std::move(value); } /** *The platform or framework for an Amplify app.
*/ inline CreateAppRequest& WithPlatform(const Platform& value) { SetPlatform(value); return *this;} /** *The platform or framework for an Amplify app.
*/ inline CreateAppRequest& WithPlatform(Platform&& value) { SetPlatform(std::move(value)); return *this;} /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline const Aws::String& GetIamServiceRoleArn() const{ return m_iamServiceRoleArn; } /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline bool IamServiceRoleArnHasBeenSet() const { return m_iamServiceRoleArnHasBeenSet; } /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline void SetIamServiceRoleArn(const Aws::String& value) { m_iamServiceRoleArnHasBeenSet = true; m_iamServiceRoleArn = value; } /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline void SetIamServiceRoleArn(Aws::String&& value) { m_iamServiceRoleArnHasBeenSet = true; m_iamServiceRoleArn = std::move(value); } /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline void SetIamServiceRoleArn(const char* value) { m_iamServiceRoleArnHasBeenSet = true; m_iamServiceRoleArn.assign(value); } /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline CreateAppRequest& WithIamServiceRoleArn(const Aws::String& value) { SetIamServiceRoleArn(value); return *this;} /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline CreateAppRequest& WithIamServiceRoleArn(Aws::String&& value) { SetIamServiceRoleArn(std::move(value)); return *this;} /** *The AWS Identity and Access Management (IAM) service role for an Amplify * app.
*/ inline CreateAppRequest& WithIamServiceRoleArn(const char* value) { SetIamServiceRoleArn(value); return *this;} /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline const Aws::String& GetOauthToken() const{ return m_oauthToken; } /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline bool OauthTokenHasBeenSet() const { return m_oauthTokenHasBeenSet; } /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline void SetOauthToken(const Aws::String& value) { m_oauthTokenHasBeenSet = true; m_oauthToken = value; } /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline void SetOauthToken(Aws::String&& value) { m_oauthTokenHasBeenSet = true; m_oauthToken = std::move(value); } /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline void SetOauthToken(const char* value) { m_oauthTokenHasBeenSet = true; m_oauthToken.assign(value); } /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline CreateAppRequest& WithOauthToken(const Aws::String& value) { SetOauthToken(value); return *this;} /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline CreateAppRequest& WithOauthToken(Aws::String&& value) { SetOauthToken(std::move(value)); return *this;} /** *The OAuth token for a third-party source control system for an Amplify app. * The OAuth token is used to create a webhook and a read-only deploy key. The * OAuth token is not stored.
*/ inline CreateAppRequest& WithOauthToken(const char* value) { SetOauthToken(value); return *this;} /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline const Aws::String& GetAccessToken() const{ return m_accessToken; } /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline bool AccessTokenHasBeenSet() const { return m_accessTokenHasBeenSet; } /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline void SetAccessToken(const Aws::String& value) { m_accessTokenHasBeenSet = true; m_accessToken = value; } /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline void SetAccessToken(Aws::String&& value) { m_accessTokenHasBeenSet = true; m_accessToken = std::move(value); } /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline void SetAccessToken(const char* value) { m_accessTokenHasBeenSet = true; m_accessToken.assign(value); } /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline CreateAppRequest& WithAccessToken(const Aws::String& value) { SetAccessToken(value); return *this;} /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline CreateAppRequest& WithAccessToken(Aws::String&& value) { SetAccessToken(std::move(value)); return *this;} /** *The personal access token for a third-party source control system for an * Amplify app. The personal access token is used to create a webhook and a * read-only deploy key. The token is not stored.
*/ inline CreateAppRequest& WithAccessToken(const char* value) { SetAccessToken(value); return *this;} /** *The environment variables map for an Amplify app.
*/ inline const Aws::MapThe environment variables map for an Amplify app.
*/ inline bool EnvironmentVariablesHasBeenSet() const { return m_environmentVariablesHasBeenSet; } /** *The environment variables map for an Amplify app.
*/ inline void SetEnvironmentVariables(const Aws::MapThe environment variables map for an Amplify app.
*/ inline void SetEnvironmentVariables(Aws::MapThe environment variables map for an Amplify app.
*/ inline CreateAppRequest& WithEnvironmentVariables(const Aws::MapThe environment variables map for an Amplify app.
*/ inline CreateAppRequest& WithEnvironmentVariables(Aws::MapThe environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(const Aws::String& key, const Aws::String& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, value); return *this; } /** *The environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(Aws::String&& key, const Aws::String& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(std::move(key), value); return *this; } /** *The environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(const Aws::String& key, Aws::String&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, std::move(value)); return *this; } /** *The environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(Aws::String&& key, Aws::String&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(std::move(key), std::move(value)); return *this; } /** *The environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(const char* key, Aws::String&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, std::move(value)); return *this; } /** *The environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(Aws::String&& key, const char* value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(std::move(key), value); return *this; } /** *The environment variables map for an Amplify app.
*/ inline CreateAppRequest& AddEnvironmentVariables(const char* key, const char* value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, value); return *this; } /** *Enables the auto building of branches for an Amplify app.
*/ inline bool GetEnableBranchAutoBuild() const{ return m_enableBranchAutoBuild; } /** *Enables the auto building of branches for an Amplify app.
*/ inline bool EnableBranchAutoBuildHasBeenSet() const { return m_enableBranchAutoBuildHasBeenSet; } /** *Enables the auto building of branches for an Amplify app.
*/ inline void SetEnableBranchAutoBuild(bool value) { m_enableBranchAutoBuildHasBeenSet = true; m_enableBranchAutoBuild = value; } /** *Enables the auto building of branches for an Amplify app.
*/ inline CreateAppRequest& WithEnableBranchAutoBuild(bool value) { SetEnableBranchAutoBuild(value); return *this;} /** *Automatically disconnects a branch in the Amplify Console when you delete a * branch from your Git repository.
*/ inline bool GetEnableBranchAutoDeletion() const{ return m_enableBranchAutoDeletion; } /** *Automatically disconnects a branch in the Amplify Console when you delete a * branch from your Git repository.
*/ inline bool EnableBranchAutoDeletionHasBeenSet() const { return m_enableBranchAutoDeletionHasBeenSet; } /** *Automatically disconnects a branch in the Amplify Console when you delete a * branch from your Git repository.
*/ inline void SetEnableBranchAutoDeletion(bool value) { m_enableBranchAutoDeletionHasBeenSet = true; m_enableBranchAutoDeletion = value; } /** *Automatically disconnects a branch in the Amplify Console when you delete a * branch from your Git repository.
*/ inline CreateAppRequest& WithEnableBranchAutoDeletion(bool value) { SetEnableBranchAutoDeletion(value); return *this;} /** *Enables basic authorization for an Amplify app. This will apply to all * branches that are part of this app.
*/ inline bool GetEnableBasicAuth() const{ return m_enableBasicAuth; } /** *Enables basic authorization for an Amplify app. This will apply to all * branches that are part of this app.
*/ inline bool EnableBasicAuthHasBeenSet() const { return m_enableBasicAuthHasBeenSet; } /** *Enables basic authorization for an Amplify app. This will apply to all * branches that are part of this app.
*/ inline void SetEnableBasicAuth(bool value) { m_enableBasicAuthHasBeenSet = true; m_enableBasicAuth = value; } /** *Enables basic authorization for an Amplify app. This will apply to all * branches that are part of this app.
*/ inline CreateAppRequest& WithEnableBasicAuth(bool value) { SetEnableBasicAuth(value); return *this;} /** *The credentials for basic authorization for an Amplify app.
*/ inline const Aws::String& GetBasicAuthCredentials() const{ return m_basicAuthCredentials; } /** *The credentials for basic authorization for an Amplify app.
*/ inline bool BasicAuthCredentialsHasBeenSet() const { return m_basicAuthCredentialsHasBeenSet; } /** *The credentials for basic authorization for an Amplify app.
*/ inline void SetBasicAuthCredentials(const Aws::String& value) { m_basicAuthCredentialsHasBeenSet = true; m_basicAuthCredentials = value; } /** *The credentials for basic authorization for an Amplify app.
*/ inline void SetBasicAuthCredentials(Aws::String&& value) { m_basicAuthCredentialsHasBeenSet = true; m_basicAuthCredentials = std::move(value); } /** *The credentials for basic authorization for an Amplify app.
*/ inline void SetBasicAuthCredentials(const char* value) { m_basicAuthCredentialsHasBeenSet = true; m_basicAuthCredentials.assign(value); } /** *The credentials for basic authorization for an Amplify app.
*/ inline CreateAppRequest& WithBasicAuthCredentials(const Aws::String& value) { SetBasicAuthCredentials(value); return *this;} /** *The credentials for basic authorization for an Amplify app.
*/ inline CreateAppRequest& WithBasicAuthCredentials(Aws::String&& value) { SetBasicAuthCredentials(std::move(value)); return *this;} /** *The credentials for basic authorization for an Amplify app.
*/ inline CreateAppRequest& WithBasicAuthCredentials(const char* value) { SetBasicAuthCredentials(value); return *this;} /** *The custom rewrite and redirect rules for an Amplify app.
*/ inline const Aws::VectorThe custom rewrite and redirect rules for an Amplify app.
*/ inline bool CustomRulesHasBeenSet() const { return m_customRulesHasBeenSet; } /** *The custom rewrite and redirect rules for an Amplify app.
*/ inline void SetCustomRules(const Aws::VectorThe custom rewrite and redirect rules for an Amplify app.
*/ inline void SetCustomRules(Aws::VectorThe custom rewrite and redirect rules for an Amplify app.
*/ inline CreateAppRequest& WithCustomRules(const Aws::VectorThe custom rewrite and redirect rules for an Amplify app.
*/ inline CreateAppRequest& WithCustomRules(Aws::VectorThe custom rewrite and redirect rules for an Amplify app.
*/ inline CreateAppRequest& AddCustomRules(const CustomRule& value) { m_customRulesHasBeenSet = true; m_customRules.push_back(value); return *this; } /** *The custom rewrite and redirect rules for an Amplify app.
*/ inline CreateAppRequest& AddCustomRules(CustomRule&& value) { m_customRulesHasBeenSet = true; m_customRules.push_back(std::move(value)); return *this; } /** *The tag for an Amplify app.
*/ inline const Aws::MapThe tag for an Amplify app.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The tag for an Amplify app.
*/ inline void SetTags(const Aws::MapThe tag for an Amplify app.
*/ inline void SetTags(Aws::MapThe tag for an Amplify app.
*/ inline CreateAppRequest& WithTags(const Aws::MapThe tag for an Amplify app.
*/ inline CreateAppRequest& WithTags(Aws::MapThe tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *The tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *The tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *The tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *The tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *The tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *The tag for an Amplify app.
*/ inline CreateAppRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *The build specification (build spec) for an Amplify app.
*/ inline const Aws::String& GetBuildSpec() const{ return m_buildSpec; } /** *The build specification (build spec) for an Amplify app.
*/ inline bool BuildSpecHasBeenSet() const { return m_buildSpecHasBeenSet; } /** *The build specification (build spec) for an Amplify app.
*/ inline void SetBuildSpec(const Aws::String& value) { m_buildSpecHasBeenSet = true; m_buildSpec = value; } /** *The build specification (build spec) for an Amplify app.
*/ inline void SetBuildSpec(Aws::String&& value) { m_buildSpecHasBeenSet = true; m_buildSpec = std::move(value); } /** *The build specification (build spec) for an Amplify app.
*/ inline void SetBuildSpec(const char* value) { m_buildSpecHasBeenSet = true; m_buildSpec.assign(value); } /** *The build specification (build spec) for an Amplify app.
*/ inline CreateAppRequest& WithBuildSpec(const Aws::String& value) { SetBuildSpec(value); return *this;} /** *The build specification (build spec) for an Amplify app.
*/ inline CreateAppRequest& WithBuildSpec(Aws::String&& value) { SetBuildSpec(std::move(value)); return *this;} /** *The build specification (build spec) for an Amplify app.
*/ inline CreateAppRequest& WithBuildSpec(const char* value) { SetBuildSpec(value); return *this;} /** *Enables automated branch creation for the Amplify app.
*/ inline bool GetEnableAutoBranchCreation() const{ return m_enableAutoBranchCreation; } /** *Enables automated branch creation for the Amplify app.
*/ inline bool EnableAutoBranchCreationHasBeenSet() const { return m_enableAutoBranchCreationHasBeenSet; } /** *Enables automated branch creation for the Amplify app.
*/ inline void SetEnableAutoBranchCreation(bool value) { m_enableAutoBranchCreationHasBeenSet = true; m_enableAutoBranchCreation = value; } /** *Enables automated branch creation for the Amplify app.
*/ inline CreateAppRequest& WithEnableAutoBranchCreation(bool value) { SetEnableAutoBranchCreation(value); return *this;} /** *The automated branch creation glob patterns for the Amplify app.
*/ inline const Aws::VectorThe automated branch creation glob patterns for the Amplify app.
*/ inline bool AutoBranchCreationPatternsHasBeenSet() const { return m_autoBranchCreationPatternsHasBeenSet; } /** *The automated branch creation glob patterns for the Amplify app.
*/ inline void SetAutoBranchCreationPatterns(const Aws::VectorThe automated branch creation glob patterns for the Amplify app.
*/ inline void SetAutoBranchCreationPatterns(Aws::VectorThe automated branch creation glob patterns for the Amplify app.
*/ inline CreateAppRequest& WithAutoBranchCreationPatterns(const Aws::VectorThe automated branch creation glob patterns for the Amplify app.
*/ inline CreateAppRequest& WithAutoBranchCreationPatterns(Aws::VectorThe automated branch creation glob patterns for the Amplify app.
*/ inline CreateAppRequest& AddAutoBranchCreationPatterns(const Aws::String& value) { m_autoBranchCreationPatternsHasBeenSet = true; m_autoBranchCreationPatterns.push_back(value); return *this; } /** *The automated branch creation glob patterns for the Amplify app.
*/ inline CreateAppRequest& AddAutoBranchCreationPatterns(Aws::String&& value) { m_autoBranchCreationPatternsHasBeenSet = true; m_autoBranchCreationPatterns.push_back(std::move(value)); return *this; } /** *The automated branch creation glob patterns for the Amplify app.
*/ inline CreateAppRequest& AddAutoBranchCreationPatterns(const char* value) { m_autoBranchCreationPatternsHasBeenSet = true; m_autoBranchCreationPatterns.push_back(value); return *this; } /** *The automated branch creation configuration for the Amplify app.
*/ inline const AutoBranchCreationConfig& GetAutoBranchCreationConfig() const{ return m_autoBranchCreationConfig; } /** *The automated branch creation configuration for the Amplify app.
*/ inline bool AutoBranchCreationConfigHasBeenSet() const { return m_autoBranchCreationConfigHasBeenSet; } /** *The automated branch creation configuration for the Amplify app.
*/ inline void SetAutoBranchCreationConfig(const AutoBranchCreationConfig& value) { m_autoBranchCreationConfigHasBeenSet = true; m_autoBranchCreationConfig = value; } /** *The automated branch creation configuration for the Amplify app.
*/ inline void SetAutoBranchCreationConfig(AutoBranchCreationConfig&& value) { m_autoBranchCreationConfigHasBeenSet = true; m_autoBranchCreationConfig = std::move(value); } /** *The automated branch creation configuration for the Amplify app.
*/ inline CreateAppRequest& WithAutoBranchCreationConfig(const AutoBranchCreationConfig& value) { SetAutoBranchCreationConfig(value); return *this;} /** *The automated branch creation configuration for the Amplify app.
*/ inline CreateAppRequest& WithAutoBranchCreationConfig(AutoBranchCreationConfig&& value) { SetAutoBranchCreationConfig(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet; Aws::String m_description; bool m_descriptionHasBeenSet; Aws::String m_repository; bool m_repositoryHasBeenSet; Platform m_platform; bool m_platformHasBeenSet; Aws::String m_iamServiceRoleArn; bool m_iamServiceRoleArnHasBeenSet; Aws::String m_oauthToken; bool m_oauthTokenHasBeenSet; Aws::String m_accessToken; bool m_accessTokenHasBeenSet; Aws::Map