Interface DescribeSmbFileSharesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeSmbFileSharesResponse.Builder,DescribeSmbFileSharesResponse>,SdkBuilder<DescribeSmbFileSharesResponse.Builder,DescribeSmbFileSharesResponse>,SdkPojo,SdkResponse.Builder,StorageGatewayResponse.Builder
- Enclosing class:
- DescribeSmbFileSharesResponse
public static interface DescribeSmbFileSharesResponse.Builder extends StorageGatewayResponse.Builder, SdkPojo, CopyableBuilder<DescribeSmbFileSharesResponse.Builder,DescribeSmbFileSharesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeSmbFileSharesResponse.BuildersmbFileShareInfoList(Collection<SMBFileShareInfo> smbFileShareInfoList)An array containing a description for each requested file share.DescribeSmbFileSharesResponse.BuildersmbFileShareInfoList(Consumer<SMBFileShareInfo.Builder>... smbFileShareInfoList)An array containing a description for each requested file share.DescribeSmbFileSharesResponse.BuildersmbFileShareInfoList(SMBFileShareInfo... smbFileShareInfoList)An array containing a description for each requested file share.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.storagegateway.model.StorageGatewayResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
smbFileShareInfoList
DescribeSmbFileSharesResponse.Builder smbFileShareInfoList(Collection<SMBFileShareInfo> smbFileShareInfoList)
An array containing a description for each requested file share.
- Parameters:
smbFileShareInfoList- An array containing a description for each requested file share.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smbFileShareInfoList
DescribeSmbFileSharesResponse.Builder smbFileShareInfoList(SMBFileShareInfo... smbFileShareInfoList)
An array containing a description for each requested file share.
- Parameters:
smbFileShareInfoList- An array containing a description for each requested file share.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smbFileShareInfoList
DescribeSmbFileSharesResponse.Builder smbFileShareInfoList(Consumer<SMBFileShareInfo.Builder>... smbFileShareInfoList)
An array containing a description for each requested file share.
This is a convenience method that creates an instance of theSMBFileShareInfo.Builderavoiding the need to create one manually viaSMBFileShareInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#smbFileShareInfoList(List.) - Parameters:
smbFileShareInfoList- a consumer that will call methods onSMBFileShareInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#smbFileShareInfoList(java.util.Collection)
-
-