Interface UpdateLookupTableRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CloudWatchLogsRequest.Builder,CopyableBuilder<UpdateLookupTableRequest.Builder,UpdateLookupTableRequest>,SdkBuilder<UpdateLookupTableRequest.Builder,UpdateLookupTableRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateLookupTableRequest
@Mutable @NotThreadSafe public static interface UpdateLookupTableRequest.Builder extends CloudWatchLogsRequest.Builder, SdkPojo, CopyableBuilder<UpdateLookupTableRequest.Builder,UpdateLookupTableRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateLookupTableRequest.Builderdescription(String description)An updated description of the lookup table.UpdateLookupTableRequest.BuilderkmsKeyId(String kmsKeyId)The ARN of the KMS key to use to encrypt the lookup table data.UpdateLookupTableRequest.BuilderlookupTableArn(String lookupTableArn)The ARN of the lookup table to update.UpdateLookupTableRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateLookupTableRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateLookupTableRequest.BuildertableBody(String tableBody)The new CSV content to replace the existing data.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudwatchlogs.model.CloudWatchLogsRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
lookupTableArn
UpdateLookupTableRequest.Builder lookupTableArn(String lookupTableArn)
The ARN of the lookup table to update.
- Parameters:
lookupTableArn- The ARN of the lookup table to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateLookupTableRequest.Builder description(String description)
An updated description of the lookup table.
- Parameters:
description- An updated description of the lookup table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableBody
UpdateLookupTableRequest.Builder tableBody(String tableBody)
The new CSV content to replace the existing data. The first row must be a header row with column names. The content must use UTF-8 encoding and not exceed 10 MB.
- Parameters:
tableBody- The new CSV content to replace the existing data. The first row must be a header row with column names. The content must use UTF-8 encoding and not exceed 10 MB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyId
UpdateLookupTableRequest.Builder kmsKeyId(String kmsKeyId)
The ARN of the KMS key to use to encrypt the lookup table data. You can use this parameter to add, update, or remove the KMS key. To remove the KMS key and use an Amazon Web Services-owned key instead, specify an empty string.
- Parameters:
kmsKeyId- The ARN of the KMS key to use to encrypt the lookup table data. You can use this parameter to add, update, or remove the KMS key. To remove the KMS key and use an Amazon Web Services-owned key instead, specify an empty string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateLookupTableRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateLookupTableRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-