ExperimentTrialComponentReference
- class aws_cdk.interfaces.aws_sagemaker.ExperimentTrialComponentReference(*, experiment_trial_component_arn, experiment_trial_component_id)
Bases:
objectA reference to a ExperimentTrialComponent resource.
- Parameters:
experiment_trial_component_arn (
str) – The ARN of the ExperimentTrialComponent resource.experiment_trial_component_id (
str) – The Id of the ExperimentTrialComponent 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_sagemaker as interfaces_sagemaker experiment_trial_component_reference = interfaces_sagemaker.ExperimentTrialComponentReference( experiment_trial_component_arn="experimentTrialComponentArn", experiment_trial_component_id="experimentTrialComponentId" )
Attributes
- experiment_trial_component_arn
The ARN of the ExperimentTrialComponent resource.
- experiment_trial_component_id
The Id of the ExperimentTrialComponent resource.