Interface GetMlConfigurationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CleanRoomsMlResponse.Builder,CopyableBuilder<GetMlConfigurationResponse.Builder,GetMlConfigurationResponse>,SdkBuilder<GetMlConfigurationResponse.Builder,GetMlConfigurationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetMlConfigurationResponse
public static interface GetMlConfigurationResponse.Builder extends CleanRoomsMlResponse.Builder, SdkPojo, CopyableBuilder<GetMlConfigurationResponse.Builder,GetMlConfigurationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetMlConfigurationResponse.BuildercreateTime(Instant createTime)The time at which the ML configuration was created.default GetMlConfigurationResponse.BuilderdefaultOutputLocation(Consumer<MLOutputConfiguration.Builder> defaultOutputLocation)The Amazon S3 location where ML model output is stored.GetMlConfigurationResponse.BuilderdefaultOutputLocation(MLOutputConfiguration defaultOutputLocation)The Amazon S3 location where ML model output is stored.GetMlConfigurationResponse.BuildermembershipIdentifier(String membershipIdentifier)The membership ID of the member that owns the ML configuration you requested.GetMlConfigurationResponse.BuilderupdateTime(Instant updateTime)The most recent time at which the ML configuration was updated.-
Methods inherited from interface software.amazon.awssdk.services.cleanroomsml.model.CleanRoomsMlResponse.Builder
build, responseMetadata, responseMetadata
-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
membershipIdentifier
GetMlConfigurationResponse.Builder membershipIdentifier(String membershipIdentifier)
The membership ID of the member that owns the ML configuration you requested.
- Parameters:
membershipIdentifier- The membership ID of the member that owns the ML configuration you requested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultOutputLocation
GetMlConfigurationResponse.Builder defaultOutputLocation(MLOutputConfiguration defaultOutputLocation)
The Amazon S3 location where ML model output is stored.
- Parameters:
defaultOutputLocation- The Amazon S3 location where ML model output is stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultOutputLocation
default GetMlConfigurationResponse.Builder defaultOutputLocation(Consumer<MLOutputConfiguration.Builder> defaultOutputLocation)
The Amazon S3 location where ML model output is stored.
This is a convenience method that creates an instance of theMLOutputConfiguration.Builderavoiding the need to create one manually viaMLOutputConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todefaultOutputLocation(MLOutputConfiguration).- Parameters:
defaultOutputLocation- a consumer that will call methods onMLOutputConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
defaultOutputLocation(MLOutputConfiguration)
-
createTime
GetMlConfigurationResponse.Builder createTime(Instant createTime)
The time at which the ML configuration was created.
- Parameters:
createTime- The time at which the ML configuration was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateTime
GetMlConfigurationResponse.Builder updateTime(Instant updateTime)
The most recent time at which the ML configuration was updated.
- Parameters:
updateTime- The most recent time at which the ML configuration was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-