Interface StartTransactionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<StartTransactionRequest.Builder,StartTransactionRequest>
,LakeFormationRequest.Builder
,SdkBuilder<StartTransactionRequest.Builder,StartTransactionRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- StartTransactionRequest
public static interface StartTransactionRequest.Builder extends LakeFormationRequest.Builder, SdkPojo, CopyableBuilder<StartTransactionRequest.Builder,StartTransactionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartTransactionRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
StartTransactionRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
StartTransactionRequest.Builder
transactionType(String transactionType)
Indicates whether this transaction should be read only or read and write.StartTransactionRequest.Builder
transactionType(TransactionType transactionType)
Indicates whether this transaction should be read only or read and write.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lakeformation.model.LakeFormationRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
transactionType
StartTransactionRequest.Builder transactionType(String transactionType)
Indicates whether this transaction should be read only or read and write. Writes made using a read-only transaction ID will be rejected. Read-only transactions do not need to be committed.
- Parameters:
transactionType
- Indicates whether this transaction should be read only or read and write. Writes made using a read-only transaction ID will be rejected. Read-only transactions do not need to be committed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TransactionType
,TransactionType
-
transactionType
StartTransactionRequest.Builder transactionType(TransactionType transactionType)
Indicates whether this transaction should be read only or read and write. Writes made using a read-only transaction ID will be rejected. Read-only transactions do not need to be committed.
- Parameters:
transactionType
- Indicates whether this transaction should be read only or read and write. Writes made using a read-only transaction ID will be rejected. Read-only transactions do not need to be committed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TransactionType
,TransactionType
-
overrideConfiguration
StartTransactionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
StartTransactionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-