Interface CreateSessionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<CreateSessionResponse.Builder,CreateSessionResponse>
,S3Response.Builder
,SdkBuilder<CreateSessionResponse.Builder,CreateSessionResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- CreateSessionResponse
public static interface CreateSessionResponse.Builder extends S3Response.Builder, SdkPojo, CopyableBuilder<CreateSessionResponse.Builder,CreateSessionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateSessionResponse.Builder
credentials(Consumer<SessionCredentials.Builder> credentials)
The established temporary security credentials for the created session.CreateSessionResponse.Builder
credentials(SessionCredentials credentials)
The established temporary security credentials for the created session.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3.model.S3Response.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
-
credentials
CreateSessionResponse.Builder credentials(SessionCredentials credentials)
The established temporary security credentials for the created session.
- Parameters:
credentials
- The established temporary security credentials for the created session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
credentials
default CreateSessionResponse.Builder credentials(Consumer<SessionCredentials.Builder> credentials)
The established temporary security credentials for the created session.
This is a convenience method that creates an instance of theSessionCredentials.Builder
avoiding the need to create one manually viaSessionCredentials.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocredentials(SessionCredentials)
.- Parameters:
credentials
- a consumer that will call methods onSessionCredentials.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
credentials(SessionCredentials)
-
-