interface SandboxReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CodeBuild.SandboxReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscodebuild#SandboxReference |
Java | software.amazon.awscdk.interfaces.codebuild.SandboxReference |
Python | aws_cdk.interfaces.aws_codebuild.SandboxReference |
TypeScript | aws-cdk-lib » interfaces » aws_codebuild » SandboxReference |
A reference to a Sandbox resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as interfaces_codebuild } from 'aws-cdk-lib/interfaces';
const sandboxReference: interfaces_codebuild.SandboxReference = {
sandboxArn: 'sandboxArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| sandbox | string | The Arn of the Sandbox resource. |
sandboxArn
Type:
string
The Arn of the Sandbox resource.

.NET
Go
Java
Python
TypeScript