interface BranchReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Amplify.BranchReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsamplify#BranchReference |
Java | software.amazon.awscdk.interfaces.amplify.BranchReference |
Python | aws_cdk.interfaces.aws_amplify.BranchReference |
TypeScript | aws-cdk-lib » interfaces » aws_amplify » BranchReference |
A reference to a Branch resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_amplify as interfaces_amplify } from 'aws-cdk-lib/interfaces';
const branchReference: interfaces_amplify.BranchReference = {
branchArn: 'branchArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| branch | string | The Arn of the Branch resource. |
branchArn
Type:
string
The Arn of the Branch resource.

.NET
Go
Java
Python
TypeScript