ExperimentRunReference
- class aws_cdk.interfaces.aws_appconfig.ExperimentRunReference(*, application_id, experiment_definition_id, run)
Bases:
objectA reference to a ExperimentRun resource.
- Parameters:
application_id (
str) – The ApplicationId of the ExperimentRun resource.experiment_definition_id (
str) – The ExperimentDefinitionId of the ExperimentRun resource.run (
str) – The Run of the ExperimentRun resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_appconfig as interfaces_appconfig experiment_run_reference = interfaces_appconfig.ExperimentRunReference( application_id="applicationId", experiment_definition_id="experimentDefinitionId", run="run" )
Attributes
- application_id
The ApplicationId of the ExperimentRun resource.
- experiment_definition_id
The ExperimentDefinitionId of the ExperimentRun resource.
- run
The Run of the ExperimentRun resource.