Interface GetCustomEntityTypeResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetCustomEntityTypeResponse.Builder,GetCustomEntityTypeResponse>,GlueResponse.Builder,SdkBuilder<GetCustomEntityTypeResponse.Builder,GetCustomEntityTypeResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetCustomEntityTypeResponse
public static interface GetCustomEntityTypeResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetCustomEntityTypeResponse.Builder,GetCustomEntityTypeResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetCustomEntityTypeResponse.BuildercontextWords(String... contextWords)A list of context words if specified when you created the custom pattern.GetCustomEntityTypeResponse.BuildercontextWords(Collection<String> contextWords)A list of context words if specified when you created the custom pattern.GetCustomEntityTypeResponse.Buildername(String name)The name of the custom pattern that you retrieved.GetCustomEntityTypeResponse.BuilderregexString(String regexString)A regular expression string that is used for detecting sensitive data in a custom pattern.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
name
GetCustomEntityTypeResponse.Builder name(String name)
The name of the custom pattern that you retrieved.
- Parameters:
name- The name of the custom pattern that you retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regexString
GetCustomEntityTypeResponse.Builder regexString(String regexString)
A regular expression string that is used for detecting sensitive data in a custom pattern.
- Parameters:
regexString- A regular expression string that is used for detecting sensitive data in a custom pattern.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contextWords
GetCustomEntityTypeResponse.Builder contextWords(Collection<String> contextWords)
A list of context words if specified when you created the custom pattern. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.
- Parameters:
contextWords- A list of context words if specified when you created the custom pattern. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contextWords
GetCustomEntityTypeResponse.Builder contextWords(String... contextWords)
A list of context words if specified when you created the custom pattern. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.
- Parameters:
contextWords- A list of context words if specified when you created the custom pattern. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-