Interface DescribeFolderPermissionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeFolderPermissionsResponse.Builder,DescribeFolderPermissionsResponse>
,QuickSightResponse.Builder
,SdkBuilder<DescribeFolderPermissionsResponse.Builder,DescribeFolderPermissionsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeFolderPermissionsResponse
public static interface DescribeFolderPermissionsResponse.Builder extends QuickSightResponse.Builder, SdkPojo, CopyableBuilder<DescribeFolderPermissionsResponse.Builder,DescribeFolderPermissionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFolderPermissionsResponse.Builder
arn(String arn)
The Amazon Resource Name (ARN) for the folder.DescribeFolderPermissionsResponse.Builder
folderId(String folderId)
The ID of the folder.DescribeFolderPermissionsResponse.Builder
nextToken(String nextToken)
The pagination token for the next set of results, or null if there are no more results.DescribeFolderPermissionsResponse.Builder
permissions(Collection<ResourcePermission> permissions)
Information about the permissions on the folder.DescribeFolderPermissionsResponse.Builder
permissions(Consumer<ResourcePermission.Builder>... permissions)
Information about the permissions on the folder.DescribeFolderPermissionsResponse.Builder
permissions(ResourcePermission... permissions)
Information about the permissions on the folder.DescribeFolderPermissionsResponse.Builder
requestId(String requestId)
The Amazon Web Services request ID for this operation.DescribeFolderPermissionsResponse.Builder
status(Integer status)
The HTTP status of the request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.quicksight.model.QuickSightResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
status
DescribeFolderPermissionsResponse.Builder status(Integer status)
The HTTP status of the request.
- Parameters:
status
- The HTTP status of the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
folderId
DescribeFolderPermissionsResponse.Builder folderId(String folderId)
The ID of the folder.
- Parameters:
folderId
- The ID of the folder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
DescribeFolderPermissionsResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) for the folder.
- Parameters:
arn
- The Amazon Resource Name (ARN) for the folder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permissions
DescribeFolderPermissionsResponse.Builder permissions(Collection<ResourcePermission> permissions)
Information about the permissions on the folder.
- Parameters:
permissions
- Information about the permissions on the folder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permissions
DescribeFolderPermissionsResponse.Builder permissions(ResourcePermission... permissions)
Information about the permissions on the folder.
- Parameters:
permissions
- Information about the permissions on the folder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permissions
DescribeFolderPermissionsResponse.Builder permissions(Consumer<ResourcePermission.Builder>... permissions)
Information about the permissions on the folder.
This is a convenience method that creates an instance of theResourcePermission.Builder
avoiding the need to create one manually viaResourcePermission.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#permissions(List
.) - Parameters:
permissions
- a consumer that will call methods onResourcePermission.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#permissions(java.util.Collection
)
-
requestId
DescribeFolderPermissionsResponse.Builder requestId(String requestId)
The Amazon Web Services request ID for this operation.
- Parameters:
requestId
- The Amazon Web Services request ID for this operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
DescribeFolderPermissionsResponse.Builder nextToken(String nextToken)
The pagination token for the next set of results, or null if there are no more results.
- Parameters:
nextToken
- The pagination token for the next set of results, or null if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-