Package software.amazon.awscdk.services.amplify
AWS Amplify Construct Library
---
AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see the Migrating to AWS CDK v2 guide.
The AWS Amplify Console provides a Git-based workflow for deploying and hosting fullstack serverless web applications. A fullstack serverless app consists of a backend built with cloud resources such as GraphQL or REST APIs, file and data storage, and a frontend built with single page application frameworks such as React, Angular, Vue, or Gatsby.
Setting up an app with branches, custom rules and a domain
To set up an Amplify Console app, define an App
:
import software.amazon.awscdk.services.codebuild.*; App amplifyApp = App.Builder.create(this, "MyApp") .sourceCodeProvider(GitHubSourceCodeProvider.Builder.create() .owner("<user>") .repository("<repo>") .oauthToken(SecretValue.secretsManager("my-github-token")) .build()) .buildSpec(BuildSpec.fromObjectToYaml(Map.of( // Alternatively add a `amplify.yml` to the repo "version", "1.0", "frontend", Map.of( "phases", Map.of( "preBuild", Map.of( "commands", List.of("yarn")), "build", Map.of( "commands", List.of("yarn build"))), "artifacts", Map.of( "baseDirectory", "public", "files", -"**/*"))))) .build();
To connect your App
to GitLab, use the GitLabSourceCodeProvider
:
App amplifyApp = App.Builder.create(this, "MyApp") .sourceCodeProvider(GitLabSourceCodeProvider.Builder.create() .owner("<user>") .repository("<repo>") .oauthToken(SecretValue.secretsManager("my-gitlab-token")) .build()) .build();
To connect your App
to CodeCommit, use the CodeCommitSourceCodeProvider
:
import software.amazon.awscdk.services.codecommit.*; Repository repository = Repository.Builder.create(this, "Repo") .repositoryName("my-repo") .build(); App amplifyApp = App.Builder.create(this, "App") .sourceCodeProvider(CodeCommitSourceCodeProvider.Builder.create().repository(repository).build()) .build();
The IAM role associated with the App
will automatically be granted the permission
to pull the CodeCommit repository.
Add branches:
App amplifyApp; Branch master = amplifyApp.addBranch("master"); // `id` will be used as repo branch name Branch dev = amplifyApp.addBranch("dev", BranchOptions.builder() .performanceMode(true) .build()); dev.addEnvironment("STAGE", "dev");
Auto build and pull request preview are enabled by default.
Add custom rules for redirection:
App amplifyApp; amplifyApp.addCustomRule(Map.of( "source", "/docs/specific-filename.html", "target", "/documents/different-filename.html", "status", RedirectStatus.TEMPORARY_REDIRECT));
When working with a single page application (SPA), use the
CustomRule.SINGLE_PAGE_APPLICATION_REDIRECT
to set up a 200
rewrite for all files to index.html
except for the following
file extensions: css, gif, ico, jpg, js, png, txt, svg, woff,
ttf, map, json, webmanifest.
App mySinglePageApp; mySinglePageApp.addCustomRule(CustomRule.SINGLE_PAGE_APPLICATION_REDIRECT);
Add a domain and map sub domains to branches:
App amplifyApp; Branch master; Branch dev; Domain domain = amplifyApp.addDomain("example.com", DomainOptions.builder() .enableAutoSubdomain(true) // in case subdomains should be auto registered for branches .autoSubdomainCreationPatterns(List.of("*", "pr*")) .build()); domain.mapRoot(master); // map master branch to domain root domain.mapSubDomain(master, "www"); domain.mapSubDomain(dev);
Restricting access
Password protect the app with basic auth by specifying the basicAuth
prop.
Use BasicAuth.fromCredentials
when referencing an existing secret:
App amplifyApp = App.Builder.create(this, "MyApp") .sourceCodeProvider(GitHubSourceCodeProvider.Builder.create() .owner("<user>") .repository("<repo>") .oauthToken(SecretValue.secretsManager("my-github-token")) .build()) .basicAuth(BasicAuth.fromCredentials("username", SecretValue.secretsManager("my-github-token"))) .build();
Use BasicAuth.fromGeneratedPassword
to generate a password in Secrets Manager:
App amplifyApp = App.Builder.create(this, "MyApp") .sourceCodeProvider(GitHubSourceCodeProvider.Builder.create() .owner("<user>") .repository("<repo>") .oauthToken(SecretValue.secretsManager("my-github-token")) .build()) .basicAuth(BasicAuth.fromGeneratedPassword("username")) .build();
Basic auth can be added to specific branches:
App amplifyApp; amplifyApp.addBranch("feature/next", BranchOptions.builder() .basicAuth(BasicAuth.fromGeneratedPassword("username")) .build());
Automatically creating and deleting branches
Use the autoBranchCreation
and autoBranchDeletion
props to control creation/deletion
of branches:
App amplifyApp = App.Builder.create(this, "MyApp") .sourceCodeProvider(GitHubSourceCodeProvider.Builder.create() .owner("<user>") .repository("<repo>") .oauthToken(SecretValue.secretsManager("my-github-token")) .build()) .autoBranchCreation(AutoBranchCreation.builder() // Automatically connect branches that match a pattern set .patterns(List.of("feature/*", "test/*")).build()) .autoBranchDeletion(true) .build();
Adding custom response headers
Use the customResponseHeaders
prop to configure custom response headers for an Amplify app:
App amplifyApp = App.Builder.create(this, "App") .sourceCodeProvider(GitHubSourceCodeProvider.Builder.create() .owner("<user>") .repository("<repo>") .oauthToken(SecretValue.secretsManager("my-github-token")) .build()) .customResponseHeaders(List.of(CustomResponseHeader.builder() .pattern("*.json") .headers(Map.of( "custom-header-name-1", "custom-header-value-1", "custom-header-name-2", "custom-header-value-2")) .build(), CustomResponseHeader.builder() .pattern("/path/*") .headers(Map.of( "custom-header-name-1", "custom-header-value-2")) .build())) .build();
Deploying Assets
sourceCodeProvider
is optional; when this is not specified the Amplify app can be deployed to using .zip
packages. The asset
property can be used to deploy S3 assets to Amplify as part of the CDK:
Deprecated: AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.htmlimport software.amazon.awscdk.services.s3.assets.*; Asset asset; App amplifyApp; Branch branch = amplifyApp.addBranch("dev", BranchOptions.builder().asset(asset).build());
-
ClassDescription(experimental) An Amplify Console application.(experimental) A fluent builder for
App
.(experimental) Properties for an App.A builder forAppProps
An implementation forAppProps
(experimental) Auto branch creation configuration.A builder forAutoBranchCreation
An implementation forAutoBranchCreation
(experimental) Basic Auth configuration.(experimental) A fluent builder forBasicAuth
.(experimental) A Basic Auth configuration.A builder forBasicAuthConfig
An implementation forBasicAuthConfig
(experimental) Properties for a BasicAuth.A builder forBasicAuthProps
An implementation forBasicAuthProps
(experimental) An Amplify Console branch.(experimental) A fluent builder forBranch
.(experimental) Options to add a branch to an application.A builder forBranchOptions
An implementation forBranchOptions
(experimental) Properties for a Branch.A builder forBranchProps
An implementation forBranchProps
A CloudFormationAWS::Amplify::App
.Use the AutoBranchCreationConfig property type to automatically create branches that match a certain pattern.A builder forCfnApp.AutoBranchCreationConfigProperty
An implementation forCfnApp.AutoBranchCreationConfigProperty
Use the BasicAuthConfig property type to set password protection at an app level to all your branches.A builder forCfnApp.BasicAuthConfigProperty
An implementation forCfnApp.BasicAuthConfigProperty
A fluent builder forCfnApp
.The CustomRule property type allows you to specify redirects, rewrites, and reverse proxies.A builder forCfnApp.CustomRuleProperty
An implementation forCfnApp.CustomRuleProperty
Environment variables are key-value pairs that are available at build time.A builder forCfnApp.EnvironmentVariableProperty
An implementation forCfnApp.EnvironmentVariableProperty
Properties for defining aCfnApp
.A builder forCfnAppProps
An implementation forCfnAppProps
A CloudFormationAWS::Amplify::Branch
.Use the BasicAuthConfig property type to set password protection for a specific branch.A builder forCfnBranch.BasicAuthConfigProperty
An implementation forCfnBranch.BasicAuthConfigProperty
A fluent builder forCfnBranch
.The EnvironmentVariable property type sets environment variables for a specific branch.A builder forCfnBranch.EnvironmentVariableProperty
An implementation forCfnBranch.EnvironmentVariableProperty
Properties for defining aCfnBranch
.A builder forCfnBranchProps
An implementation forCfnBranchProps
A CloudFormationAWS::Amplify::Domain
.A fluent builder forCfnDomain
.The SubDomainSetting property type enables you to connect a subdomain (for example, example.exampledomain.com) to a specific branch.A builder forCfnDomain.SubDomainSettingProperty
An implementation forCfnDomain.SubDomainSettingProperty
Properties for defining aCfnDomain
.A builder forCfnDomainProps
An implementation forCfnDomainProps
(experimental) CodeCommit source code provider.(experimental) A fluent builder forCodeCommitSourceCodeProvider
.(experimental) Properties for a CodeCommit source code provider.A builder forCodeCommitSourceCodeProviderProps
An implementation forCodeCommitSourceCodeProviderProps
(experimental) Custom response header of an Amplify App.A builder forCustomResponseHeader
An implementation forCustomResponseHeader
(experimental) Custom rewrite/redirect rule for an Amplify App.(experimental) A fluent builder forCustomRule
.(experimental) Options for a custom rewrite/redirect rule for an Amplify App.A builder forCustomRuleOptions
An implementation forCustomRuleOptions
(experimental) An Amplify Console domain.(experimental) A fluent builder forDomain
.(experimental) Options to add a domain to an application.A builder forDomainOptions
An implementation forDomainOptions
(experimental) Properties for a Domain.A builder forDomainProps
An implementation forDomainProps
(experimental) GitHub source code provider.(experimental) A fluent builder forGitHubSourceCodeProvider
.(experimental) Properties for a GitHub source code provider.A builder forGitHubSourceCodeProviderProps
An implementation forGitHubSourceCodeProviderProps
(experimental) GitLab source code provider.(experimental) A fluent builder forGitLabSourceCodeProvider
.(experimental) Properties for a GitLab source code provider.A builder forGitLabSourceCodeProviderProps
An implementation forGitLabSourceCodeProviderProps
(experimental) An Amplify Console application.Internal default implementation forIApp
.A proxy class which represents a concrete javascript instance of this type.(experimental) A branch.Internal default implementation forIBranch
.A proxy class which represents a concrete javascript instance of this type.(experimental) A source code provider.Internal default implementation forISourceCodeProvider
.A proxy class which represents a concrete javascript instance of this type.(experimental) The status code for a URL rewrite or redirect rule.(experimental) Configuration for the source code provider.A builder forSourceCodeProviderConfig
An implementation forSourceCodeProviderConfig
(experimental) Sub domain settings.A builder forSubDomain
An implementation forSubDomain