Interface UpdateConnectionRecordingPreferencesResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateConnectionRecordingPreferencesResponse.Builder,
,UpdateConnectionRecordingPreferencesResponse> SdkBuilder<UpdateConnectionRecordingPreferencesResponse.Builder,
,UpdateConnectionRecordingPreferencesResponse> SdkPojo
,SdkResponse.Builder
,SsmGuiConnectResponse.Builder
- Enclosing class:
UpdateConnectionRecordingPreferencesResponse
@Mutable
@NotThreadSafe
public static interface UpdateConnectionRecordingPreferencesResponse.Builder
extends SsmGuiConnectResponse.Builder, SdkPojo, CopyableBuilder<UpdateConnectionRecordingPreferencesResponse.Builder,UpdateConnectionRecordingPreferencesResponse>
-
Method Summary
Modifier and TypeMethodDescriptionclientToken
(String clientToken) Service-provided idempotency token.connectionRecordingPreferences
(Consumer<ConnectionRecordingPreferences.Builder> connectionRecordingPreferences) The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region.connectionRecordingPreferences
(ConnectionRecordingPreferences connectionRecordingPreferences) The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region.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
Methods inherited from interface software.amazon.awssdk.services.ssmguiconnect.model.SsmGuiConnectResponse.Builder
build, responseMetadata, responseMetadata
-
Method Details
-
clientToken
Service-provided idempotency token.
- Parameters:
clientToken
- Service-provided idempotency token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionRecordingPreferences
UpdateConnectionRecordingPreferencesResponse.Builder connectionRecordingPreferences(ConnectionRecordingPreferences connectionRecordingPreferences) The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.
- Parameters:
connectionRecordingPreferences
- The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionRecordingPreferences
default UpdateConnectionRecordingPreferencesResponse.Builder connectionRecordingPreferences(Consumer<ConnectionRecordingPreferences.Builder> connectionRecordingPreferences) The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.
This is a convenience method that creates an instance of theConnectionRecordingPreferences.Builder
avoiding the need to create one manually viaConnectionRecordingPreferences.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toconnectionRecordingPreferences(ConnectionRecordingPreferences)
.- Parameters:
connectionRecordingPreferences
- a consumer that will call methods onConnectionRecordingPreferences.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-