interface ExperimentDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppConfig.ExperimentDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappconfig#ExperimentDefinitionReference |
Java | software.amazon.awscdk.interfaces.appconfig.ExperimentDefinitionReference |
Python | aws_cdk.interfaces.aws_appconfig.ExperimentDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_appconfig » ExperimentDefinitionReference |
A reference to a ExperimentDefinition 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 experimentDefinitionReference: interfaces_appconfig.ExperimentDefinitionReference = {
applicationId: 'applicationId',
experimentDefinitionId: 'experimentDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the ExperimentDefinition resource. |
| experiment | string | The Id of the ExperimentDefinition resource. |
applicationId
Type:
string
The ApplicationId of the ExperimentDefinition resource.
experimentDefinitionId
Type:
string
The Id of the ExperimentDefinition resource.

.NET
Go
Java
Python
TypeScript