GetBranchResult

data class GetBranchResult(val arn: String? = null, val backend: BranchBackend? = null, val buildSpec: String? = null, val description: String? = null, val enableAutoBuild: Boolean? = null, val enablePerformanceMode: Boolean? = null, val enablePullRequestPreview: Boolean? = null, val environmentVariables: List<BranchEnvironmentVariable>? = null, val framework: String? = null, val pullRequestEnvironmentName: String? = null, val stage: BranchStage? = null, val tags: List<Tag>? = null)

Constructors

Link copied to clipboard
constructor(arn: String? = null, backend: BranchBackend? = null, buildSpec: String? = null, description: String? = null, enableAutoBuild: Boolean? = null, enablePerformanceMode: Boolean? = null, enablePullRequestPreview: Boolean? = null, environmentVariables: List<BranchEnvironmentVariable>? = null, framework: String? = null, pullRequestEnvironmentName: String? = null, stage: BranchStage? = null, tags: List<Tag>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val arn: String? = null

ARN for a branch, part of an Amplify App.

Link copied to clipboard
val backend: BranchBackend? = null

The backend for a Branch of an Amplify app. Use for a backend created from an AWS CloudFormation stack. This field is available to Amplify Gen 2 apps only. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.

Link copied to clipboard
val buildSpec: String? = null

The build specification (build spec) for the branch.

Link copied to clipboard
val description: String? = null

The description for the branch that is part of an Amplify app.

Link copied to clipboard

Enables auto building for the branch.

Link copied to clipboard

Enables performance mode for the branch. Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

Link copied to clipboard

Specifies whether Amplify Hosting creates a preview for each pull request that is made for this branch. If this property is enabled, Amplify deploys your app to a unique preview URL after each pull request is opened. Development and QA teams can use this preview to test the pull request before it's merged into a production or integration branch. To provide backend support for your preview, Amplify automatically provisions a temporary backend environment that it deletes when the pull request is closed. If you want to specify a dedicated backend environment for your previews, use the PullRequestEnvironmentName property. For more information, see Web Previews in the AWS Amplify Hosting User Guide .

Link copied to clipboard

The environment variables for the branch.

Link copied to clipboard
val framework: String? = null

The framework for the branch.

Link copied to clipboard

If pull request previews are enabled for this branch, you can use this property to specify a dedicated backend environment for your previews. For example, you could specify an environment named prod , test , or dev that you initialized with the Amplify CLI and mapped to this branch. To enable pull request previews, set the EnablePullRequestPreview property to true . If you don't specify an environment, Amplify Hosting provides backend support for each preview by automatically provisioning a temporary backend environment. Amplify Hosting deletes this environment when the pull request is closed. For more information about creating backend environments, see Feature Branch Deployments and Team Workflows in the AWS Amplify Hosting User Guide .

Link copied to clipboard
val stage: BranchStage? = null

Describes the current stage for the branch.

Link copied to clipboard
val tags: List<Tag>? = null

The tag for the branch.