Associate Trial Component
| sagemaker_associate_trial_component | R Documentation | 
Associates a trial component with a trial¶
Description¶
Associates a trial component with a trial. A trial component can be
associated with multiple trials. To disassociate a trial component from
a trial, call the disassociate_trial_component API.
Usage¶
sagemaker_associate_trial_component(TrialComponentName, TrialName)
Arguments¶
| TrialComponentName | [required] The name of the component to associated with the trial. | 
| TrialName | [required] The name of the trial to associate with. | 
Value¶
A list with the following syntax:
list(
  TrialComponentArn = "string",
  TrialArn = "string"
)
Request syntax¶
svc$associate_trial_component(
  TrialComponentName = "string",
  TrialName = "string"
)