Interface CreatePresignedNotebookUrlResponse.Builder
-
- All Superinterfaces:
AthenaResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<CreatePresignedNotebookUrlResponse.Builder,CreatePresignedNotebookUrlResponse>,SdkBuilder<CreatePresignedNotebookUrlResponse.Builder,CreatePresignedNotebookUrlResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreatePresignedNotebookUrlResponse
public static interface CreatePresignedNotebookUrlResponse.Builder extends AthenaResponse.Builder, SdkPojo, CopyableBuilder<CreatePresignedNotebookUrlResponse.Builder,CreatePresignedNotebookUrlResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreatePresignedNotebookUrlResponse.BuilderauthToken(String authToken)The authentication token for the notebook.CreatePresignedNotebookUrlResponse.BuilderauthTokenExpirationTime(Long authTokenExpirationTime)The UTC epoch time when the authentication token expires.CreatePresignedNotebookUrlResponse.BuildernotebookUrl(String notebookUrl)The URL of the notebook.-
Methods inherited from interface software.amazon.awssdk.services.athena.model.AthenaResponse.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
-
notebookUrl
CreatePresignedNotebookUrlResponse.Builder notebookUrl(String notebookUrl)
The URL of the notebook. The URL includes the authentication token and notebook file name and points directly to the opened notebook.
- Parameters:
notebookUrl- The URL of the notebook. The URL includes the authentication token and notebook file name and points directly to the opened notebook.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authToken
CreatePresignedNotebookUrlResponse.Builder authToken(String authToken)
The authentication token for the notebook.
- Parameters:
authToken- The authentication token for the notebook.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authTokenExpirationTime
CreatePresignedNotebookUrlResponse.Builder authTokenExpirationTime(Long authTokenExpirationTime)
The UTC epoch time when the authentication token expires.
- Parameters:
authTokenExpirationTime- The UTC epoch time when the authentication token expires.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-