interface RunGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Omics.RunGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsomics#RunGroupReference |
Java | software.amazon.awscdk.interfaces.omics.RunGroupReference |
Python | aws_cdk.interfaces.aws_omics.RunGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_omics » RunGroupReference |
A reference to a RunGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_omics as interfaces_omics } from 'aws-cdk-lib/interfaces';
const runGroupReference: interfaces_omics.RunGroupReference = {
runGroupArn: 'runGroupArn',
runGroupId: 'runGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| run | string | The ARN of the RunGroup resource. |
| run | string | The Id of the RunGroup resource. |
runGroupArn
Type:
string
The ARN of the RunGroup resource.
runGroupId
Type:
string
The Id of the RunGroup resource.

.NET
Go
Java
Python
TypeScript