public static interface Service.Builder extends CopyableBuilder<Service.Builder,Service>
| Modifier and Type | Method and Description | 
|---|---|
Service.Builder | 
categories(Category... categories)
 A list of categories that describe the type of support issue a case describes. 
 | 
Service.Builder | 
categories(Collection<Category> categories)
 A list of categories that describe the type of support issue a case describes. 
 | 
Service.Builder | 
categories(Consumer<Category.Builder>... categories)
 A list of categories that describe the type of support issue a case describes. 
 | 
Service.Builder | 
code(String code)
 The code for an AWS service returned by the DescribeServices response. 
 | 
Service.Builder | 
name(String name)
 The friendly name for an AWS service. 
 | 
copyapplyMutation, buildService.Builder code(String code)
 The code for an AWS service returned by the DescribeServices response. The name element
 contains the corresponding friendly name.
 
code - The code for an AWS service returned by the DescribeServices response. The name
        element contains the corresponding friendly name.Service.Builder name(String name)
 The friendly name for an AWS service. The code element contains the corresponding code.
 
name - The friendly name for an AWS service. The code element contains the corresponding code.Service.Builder categories(Collection<Category> categories)
A list of categories that describe the type of support issue a case describes. Categories consist of a category name and a category code. Category names and codes are passed to AWS Support when you call CreateCase.
categories - A list of categories that describe the type of support issue a case describes. Categories consist of a
        category name and a category code. Category names and codes are passed to AWS Support when you call
        CreateCase.Service.Builder categories(Category... categories)
A list of categories that describe the type of support issue a case describes. Categories consist of a category name and a category code. Category names and codes are passed to AWS Support when you call CreateCase.
categories - A list of categories that describe the type of support issue a case describes. Categories consist of a
        category name and a category code. Category names and codes are passed to AWS Support when you call
        CreateCase.Service.Builder categories(Consumer<Category.Builder>... categories)
A list of categories that describe the type of support issue a case describes. Categories consist of a category name and a category code. Category names and codes are passed to AWS Support when you call CreateCase.
This is a convenience that creates an instance of theList.Builder  avoiding the need to
 create one manually via List#builder() .
 When the Consumer completes, List.Builder#build()  is called immediately and its
 result is passed to #categories(List) .categories - a consumer that will call methods on List.Builder #categories(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.