Interface CreateLookupTableRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CloudWatchLogsRequest.Builder,CopyableBuilder<CreateLookupTableRequest.Builder,CreateLookupTableRequest>,SdkBuilder<CreateLookupTableRequest.Builder,CreateLookupTableRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateLookupTableRequest
@Mutable @NotThreadSafe public static interface CreateLookupTableRequest.Builder extends CloudWatchLogsRequest.Builder, SdkPojo, CopyableBuilder<CreateLookupTableRequest.Builder,CreateLookupTableRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateLookupTableRequest.Builderdescription(String description)A description of the lookup table.CreateLookupTableRequest.BuilderkmsKeyId(String kmsKeyId)The ARN of the KMS key to use to encrypt the lookup table data.CreateLookupTableRequest.BuilderlookupTableName(String lookupTableName)The name of the lookup table.CreateLookupTableRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateLookupTableRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateLookupTableRequest.BuildertableBody(String tableBody)The CSV content of the lookup table.CreateLookupTableRequest.Buildertags(Map<String,String> tags)A list of key-value pairs to associate with the lookup table.-
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
-
lookupTableName
CreateLookupTableRequest.Builder lookupTableName(String lookupTableName)
The name of the lookup table. The name must be unique within your account and Region. The name can contain only alphanumeric characters and underscores, and can be up to 256 characters long.
- Parameters:
lookupTableName- The name of the lookup table. The name must be unique within your account and Region. The name can contain only alphanumeric characters and underscores, and can be up to 256 characters long.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateLookupTableRequest.Builder description(String description)
A description of the lookup table. The description can be up to 1024 characters long.
- Parameters:
description- A description of the lookup table. The description can be up to 1024 characters long.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableBody
CreateLookupTableRequest.Builder tableBody(String tableBody)
The CSV content of the lookup table. 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 CSV content of the lookup table. 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
CreateLookupTableRequest.Builder kmsKeyId(String kmsKeyId)
The ARN of the KMS key to use to encrypt the lookup table data. If you don't specify a key, the data is encrypted with an Amazon Web Services-owned key.
- Parameters:
kmsKeyId- The ARN of the KMS key to use to encrypt the lookup table data. If you don't specify a key, the data is encrypted with an Amazon Web Services-owned key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateLookupTableRequest.Builder tags(Map<String,String> tags)
A list of key-value pairs to associate with the lookup table. You can associate as many as 50 tags with a lookup table. Tags can help you organize and categorize your resources.
- Parameters:
tags- A list of key-value pairs to associate with the lookup table. You can associate as many as 50 tags with a lookup table. Tags can help you organize and categorize your resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateLookupTableRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateLookupTableRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-