Interface PrefixList.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PrefixList.Builder,PrefixList>
,SdkBuilder<PrefixList.Builder,PrefixList>
,SdkPojo
- Enclosing class:
- PrefixList
public static interface PrefixList.Builder extends SdkPojo, CopyableBuilder<PrefixList.Builder,PrefixList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrefixList.Builder
cidrs(String... cidrs)
The IP address range of the Amazon Web Services service.PrefixList.Builder
cidrs(Collection<String> cidrs)
The IP address range of the Amazon Web Services service.PrefixList.Builder
prefixListId(String prefixListId)
The ID of the prefix.PrefixList.Builder
prefixListName(String prefixListName)
The name of the prefix.-
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
-
cidrs
PrefixList.Builder cidrs(Collection<String> cidrs)
The IP address range of the Amazon Web Services service.
- Parameters:
cidrs
- The IP address range of the Amazon Web Services service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrs
PrefixList.Builder cidrs(String... cidrs)
The IP address range of the Amazon Web Services service.
- Parameters:
cidrs
- The IP address range of the Amazon Web Services service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefixListId
PrefixList.Builder prefixListId(String prefixListId)
The ID of the prefix.
- Parameters:
prefixListId
- The ID of the prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefixListName
PrefixList.Builder prefixListName(String prefixListName)
The name of the prefix.
- Parameters:
prefixListName
- The name of the prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-