Interface ProfileQueryResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProfileQueryResult.Builder,ProfileQueryResult>,SdkBuilder<ProfileQueryResult.Builder,ProfileQueryResult>,SdkPojo
- Enclosing class:
- ProfileQueryResult
public static interface ProfileQueryResult.Builder extends SdkPojo, CopyableBuilder<ProfileQueryResult.Builder,ProfileQueryResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ProfileQueryResult.Builderprofile(Consumer<Profile.Builder> profile)Sets the value of the Profile property for this object.ProfileQueryResult.Builderprofile(Profile profile)Sets the value of the Profile property for this object.ProfileQueryResult.BuilderprofileId(String profileId)The profile id the result belongs to.ProfileQueryResult.BuilderqueryResult(String queryResult)Describes whether the profile was absent or present in the segment.ProfileQueryResult.BuilderqueryResult(QueryResult queryResult)Describes whether the profile was absent or present in the segment.-
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
-
-
-
-
Method Detail
-
profileId
ProfileQueryResult.Builder profileId(String profileId)
The profile id the result belongs to.
- Parameters:
profileId- The profile id the result belongs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryResult
ProfileQueryResult.Builder queryResult(String queryResult)
Describes whether the profile was absent or present in the segment.
- Parameters:
queryResult- Describes whether the profile was absent or present in the segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryResult,QueryResult
-
queryResult
ProfileQueryResult.Builder queryResult(QueryResult queryResult)
Describes whether the profile was absent or present in the segment.
- Parameters:
queryResult- Describes whether the profile was absent or present in the segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryResult,QueryResult
-
profile
ProfileQueryResult.Builder profile(Profile profile)
Sets the value of the Profile property for this object.- Parameters:
profile- The new value for the Profile property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profile
default ProfileQueryResult.Builder profile(Consumer<Profile.Builder> profile)
Sets the value of the Profile property for this object. This is a convenience method that creates an instance of theProfile.Builderavoiding the need to create one manually viaProfile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprofile(Profile).- Parameters:
profile- a consumer that will call methods onProfile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
profile(Profile)
-
-