Interface EndpointFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EndpointFilter.Builder,EndpointFilter>,SdkBuilder<EndpointFilter.Builder,EndpointFilter>,SdkPojo
- Enclosing class:
- EndpointFilter
public static interface EndpointFilter.Builder extends SdkPojo, CopyableBuilder<EndpointFilter.Builder,EndpointFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndpointFilter.BuildercreationTimeAfter(Instant creationTimeAfter)Specifies a date after which the returned endpoint or endpoints were created.EndpointFilter.BuildercreationTimeBefore(Instant creationTimeBefore)Specifies a date before which the returned endpoint or endpoints were created.EndpointFilter.BuildermodelArn(String modelArn)The Amazon Resource Number (ARN) of the model to which the endpoint is attached.EndpointFilter.Builderstatus(String status)Specifies the status of the endpoint being returned.EndpointFilter.Builderstatus(EndpointStatus status)Specifies the status of the endpoint being returned.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
modelArn
EndpointFilter.Builder modelArn(String modelArn)
The Amazon Resource Number (ARN) of the model to which the endpoint is attached.
- Parameters:
modelArn- The Amazon Resource Number (ARN) of the model to which the endpoint is attached.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
EndpointFilter.Builder status(String status)
Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.
- Parameters:
status- Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointStatus,EndpointStatus
-
status
EndpointFilter.Builder status(EndpointStatus status)
Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.
- Parameters:
status- Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointStatus,EndpointStatus
-
creationTimeBefore
EndpointFilter.Builder creationTimeBefore(Instant creationTimeBefore)
Specifies a date before which the returned endpoint or endpoints were created.
- Parameters:
creationTimeBefore- Specifies a date before which the returned endpoint or endpoints were created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTimeAfter
EndpointFilter.Builder creationTimeAfter(Instant creationTimeAfter)
Specifies a date after which the returned endpoint or endpoints were created.
- Parameters:
creationTimeAfter- Specifies a date after which the returned endpoint or endpoints were created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-