Interface DocumentParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DocumentParameter.Builder,DocumentParameter>,SdkBuilder<DocumentParameter.Builder,DocumentParameter>,SdkPojo
- Enclosing class:
- DocumentParameter
public static interface DocumentParameter.Builder extends SdkPojo, CopyableBuilder<DocumentParameter.Builder,DocumentParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentParameter.Builderdescription(String description)Description of the map field containing the patterns that need to be replaced in a managed template job document schema.DocumentParameter.Builderexample(String example)An example illustrating a pattern that need to be replaced in a managed template job document schema.DocumentParameter.Builderkey(String key)Key of the map field containing the patterns that need to be replaced in a managed template job document schema.DocumentParameter.Builderoptional(Boolean optional)Specifies whether a pattern that needs to be replaced in a managed template job document schema is optional or required.DocumentParameter.Builderregex(String regex)A regular expression of the patterns that need to be replaced in a managed template job document schema.-
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, sdkFields
-
-
-
-
Method Detail
-
key
DocumentParameter.Builder key(String key)
Key of the map field containing the patterns that need to be replaced in a managed template job document schema.
- Parameters:
key- Key of the map field containing the patterns that need to be replaced in a managed template job document schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
DocumentParameter.Builder description(String description)
Description of the map field containing the patterns that need to be replaced in a managed template job document schema.
- Parameters:
description- Description of the map field containing the patterns that need to be replaced in a managed template job document schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regex
DocumentParameter.Builder regex(String regex)
A regular expression of the patterns that need to be replaced in a managed template job document schema.
- Parameters:
regex- A regular expression of the patterns that need to be replaced in a managed template job document schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
example
DocumentParameter.Builder example(String example)
An example illustrating a pattern that need to be replaced in a managed template job document schema.
- Parameters:
example- An example illustrating a pattern that need to be replaced in a managed template job document schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optional
DocumentParameter.Builder optional(Boolean optional)
Specifies whether a pattern that needs to be replaced in a managed template job document schema is optional or required.
- Parameters:
optional- Specifies whether a pattern that needs to be replaced in a managed template job document schema is optional or required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-