ExperimentDefinitionReference
- class aws_cdk.interfaces.aws_appconfig.ExperimentDefinitionReference(*, application_id, experiment_definition_id)
Bases:
objectA reference to a ExperimentDefinition resource.
- Parameters:
application_id (
str) – The ApplicationId of the ExperimentDefinition resource.experiment_definition_id (
str) – The Id of the ExperimentDefinition 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_definition_reference = interfaces_appconfig.ExperimentDefinitionReference( application_id="applicationId", experiment_definition_id="experimentDefinitionId" )
Attributes
- application_id
The ApplicationId of the ExperimentDefinition resource.
- experiment_definition_id
The Id of the ExperimentDefinition resource.