Update Model
| lookoutequipment_update_model | R Documentation |
Updates a model in the account¶
Description¶
Updates a model in the account.
Usage¶
lookoutequipment_update_model(ModelName, LabelsInputConfiguration,
RoleArn, ModelDiagnosticsOutputConfiguration)
Arguments¶
ModelName[required] The name of the model to update.
LabelsInputConfigurationRoleArnThe ARN of the model to update.
ModelDiagnosticsOutputConfigurationThe Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics for the model. You must also specify the
RoleArnrequest parameter.
Value¶
An empty list.
Request syntax¶
svc$update_model(
ModelName = "string",
LabelsInputConfiguration = list(
S3InputConfiguration = list(
Bucket = "string",
Prefix = "string"
),
LabelGroupName = "string"
),
RoleArn = "string",
ModelDiagnosticsOutputConfiguration = list(
S3OutputConfiguration = list(
Bucket = "string",
Prefix = "string"
),
KmsKeyId = "string"
)
)
Examples¶
## Not run:
#
svc$update_model(
LabelsInputConfiguration = list(
LabelGroupName = "sample-label-group"
),
ModelName = "sample-model"
)
## End(Not run)