Interface AppsListDataSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AppsListDataSummary.Builder,AppsListDataSummary>,SdkBuilder<AppsListDataSummary.Builder,AppsListDataSummary>,SdkPojo
- Enclosing class:
- AppsListDataSummary
public static interface AppsListDataSummary.Builder extends SdkPojo, CopyableBuilder<AppsListDataSummary.Builder,AppsListDataSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppsListDataSummary.BuilderappsList(Collection<App> appsList)An array ofAppobjects in the Firewall Manager applications list.AppsListDataSummary.BuilderappsList(Consumer<App.Builder>... appsList)An array ofAppobjects in the Firewall Manager applications list.AppsListDataSummary.BuilderappsList(App... appsList)An array ofAppobjects in the Firewall Manager applications list.AppsListDataSummary.BuilderlistArn(String listArn)The Amazon Resource Name (ARN) of the applications list.AppsListDataSummary.BuilderlistId(String listId)The ID of the applications list.AppsListDataSummary.BuilderlistName(String listName)The name of the applications list.-
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
-
listArn
AppsListDataSummary.Builder listArn(String listArn)
The Amazon Resource Name (ARN) of the applications list.
- Parameters:
listArn- The Amazon Resource Name (ARN) of the applications list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
listId
AppsListDataSummary.Builder listId(String listId)
The ID of the applications list.
- Parameters:
listId- The ID of the applications list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
listName
AppsListDataSummary.Builder listName(String listName)
The name of the applications list.
- Parameters:
listName- The name of the applications list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appsList
AppsListDataSummary.Builder appsList(Collection<App> appsList)
An array of
Appobjects in the Firewall Manager applications list.- Parameters:
appsList- An array ofAppobjects in the Firewall Manager applications list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appsList
AppsListDataSummary.Builder appsList(App... appsList)
An array of
Appobjects in the Firewall Manager applications list.- Parameters:
appsList- An array ofAppobjects in the Firewall Manager applications list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appsList
AppsListDataSummary.Builder appsList(Consumer<App.Builder>... appsList)
An array of
This is a convenience method that creates an instance of theAppobjects in the Firewall Manager applications list.App.Builderavoiding the need to create one manually viaApp.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#appsList(List.) - Parameters:
appsList- a consumer that will call methods onApp.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#appsList(java.util.Collection)
-
-