interface ExperimentRunReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppConfig.ExperimentRunReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappconfig#ExperimentRunReference |
Java | software.amazon.awscdk.interfaces.appconfig.ExperimentRunReference |
Python | aws_cdk.interfaces.aws_appconfig.ExperimentRunReference |
TypeScript | aws-cdk-lib » interfaces » aws_appconfig » ExperimentRunReference |
A reference to a ExperimentRun resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appconfig as interfaces_appconfig } from 'aws-cdk-lib/interfaces';
const experimentRunReference: interfaces_appconfig.ExperimentRunReference = {
applicationId: 'applicationId',
experimentDefinitionId: 'experimentDefinitionId',
run: 'run',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the ExperimentRun resource. |
| experiment | string | The ExperimentDefinitionId of the ExperimentRun resource. |
| run | string | The Run of the ExperimentRun resource. |
applicationId
Type:
string
The ApplicationId of the ExperimentRun resource.
experimentDefinitionId
Type:
string
The ExperimentDefinitionId of the ExperimentRun resource.
run
Type:
string
The Run of the ExperimentRun resource.

.NET
Go
Java
Python
TypeScript