Interface UserAppItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserAppItem.Builder,UserAppItem>,SdkBuilder<UserAppItem.Builder,UserAppItem>,SdkPojo
- Enclosing class:
- UserAppItem
public static interface UserAppItem.Builder extends SdkPojo, CopyableBuilder<UserAppItem.Builder,UserAppItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserAppItem.BuilderappArn(String appArn)The Amazon Resource Name (ARN) of the Q App.UserAppItem.BuilderappId(String appId)The unique identifier of the Q App.UserAppItem.BuildercanEdit(Boolean canEdit)A flag indicating whether the user can edit the Q App.UserAppItem.BuildercreatedAt(Instant createdAt)The date and time the user's association with the Q App was created.UserAppItem.Builderdescription(String description)The description of the Q App.UserAppItem.BuilderisVerified(Boolean isVerified)Indicates whether the Q App has been verified.UserAppItem.Builderstatus(String status)The status of the user's association with the Q App.UserAppItem.Buildertitle(String title)The title of the Q App.-
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
-
appId
UserAppItem.Builder appId(String appId)
The unique identifier of the Q App.
- Parameters:
appId- The unique identifier of the Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appArn
UserAppItem.Builder appArn(String appArn)
The Amazon Resource Name (ARN) of the Q App.
- Parameters:
appArn- The Amazon Resource Name (ARN) of the Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
UserAppItem.Builder title(String title)
The title of the Q App.
- Parameters:
title- The title of the Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UserAppItem.Builder description(String description)
The description of the Q App.
- Parameters:
description- The description of the Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
UserAppItem.Builder createdAt(Instant createdAt)
The date and time the user's association with the Q App was created.
- Parameters:
createdAt- The date and time the user's association with the Q App was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
canEdit
UserAppItem.Builder canEdit(Boolean canEdit)
A flag indicating whether the user can edit the Q App.
- Parameters:
canEdit- A flag indicating whether the user can edit the Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
UserAppItem.Builder status(String status)
The status of the user's association with the Q App.
- Parameters:
status- The status of the user's association with the Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isVerified
UserAppItem.Builder isVerified(Boolean isVerified)
Indicates whether the Q App has been verified.
- Parameters:
isVerified- Indicates whether the Q App has been verified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-