EndpointStep.Rd
Creates a Task State to create https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpoint.html or update https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html an endpoint in SageMaker.
stepfunctions::Block
-> stepfunctions::State
-> stepfunctions::Task
-> EndpointStep
Inherited methods
new()
Initialize EndpointStep Class
EndpointStep$new( state_id, endpoint_name, endpoint_config_name, tags = NULL, update = FALSE, ... )
state_id
(str): State name whose length **must be** less than or equal to 128 unicode characters. State names **must be** unique within the scope of the whole state machine.
endpoint_name
(str or Placeholder): The name of the endpoint to create. We recommend to use :py:class:`~stepfunctions.inputs.ExecutionInput` placeholder collection to pass the value dynamically in each execution.
endpoint_config_name
(str or Placeholder): The name of the endpoint configuration to use for the endpoint. We recommend to use :py:class: `~stepfunctions.inputs.ExecutionInput` placeholder collection to pass the value dynamically in each execution.
tags
(list[list], optional): `List to tags` https://docs.aws.amazon.com/sagemaker/latest/dg/API_Tag.html to associate with the resource.
update
(bool, optional): Boolean flag set to `True` if endpoint must to be updated. Set to `False` if new endpoint must be created. (default: False)
...
: Extra Fields passed to Task class
clone()
The objects of this class are cloneable with this method.
EndpointStep$clone(deep = FALSE)
deep
Whether to make a deep clone.