Interface ServiceCollection.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceCollection.Builder,ServiceCollection>,SdkBuilder<ServiceCollection.Builder,ServiceCollection>,SdkPojo
- Enclosing class:
- ServiceCollection
public static interface ServiceCollection.Builder extends SdkPojo, CopyableBuilder<ServiceCollection.Builder,ServiceCollection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceCollection.BuilderserviceNames(Collection<ServiceName> serviceNames)An array of strings that each specifies the name of an Amazon Web Services service.ServiceCollection.BuilderserviceNames(ServiceName... serviceNames)An array of strings that each specifies the name of an Amazon Web Services service.ServiceCollection.BuilderserviceNamesWithStrings(String... serviceNames)An array of strings that each specifies the name of an Amazon Web Services service.ServiceCollection.BuilderserviceNamesWithStrings(Collection<String> serviceNames)An array of strings that each specifies the name of an Amazon Web Services service.-
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
-
serviceNamesWithStrings
ServiceCollection.Builder serviceNamesWithStrings(Collection<String> serviceNames)
An array of strings that each specifies the name of an Amazon Web Services service.
- Parameters:
serviceNames- An array of strings that each specifies the name of an Amazon Web Services service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceNamesWithStrings
ServiceCollection.Builder serviceNamesWithStrings(String... serviceNames)
An array of strings that each specifies the name of an Amazon Web Services service.
- Parameters:
serviceNames- An array of strings that each specifies the name of an Amazon Web Services service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceNames
ServiceCollection.Builder serviceNames(Collection<ServiceName> serviceNames)
An array of strings that each specifies the name of an Amazon Web Services service.
- Parameters:
serviceNames- An array of strings that each specifies the name of an Amazon Web Services service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceNames
ServiceCollection.Builder serviceNames(ServiceName... serviceNames)
An array of strings that each specifies the name of an Amazon Web Services service.
- Parameters:
serviceNames- An array of strings that each specifies the name of an Amazon Web Services service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-