CopyableBuilder<Service.Builder,Service>
, SdkBuilder<Service.Builder,Service>
public static interface Service.Builder extends CopyableBuilder<Service.Builder,Service>
Modifier and Type | Method | Description |
---|---|---|
Service.Builder |
categories(Collection<Category> categories) |
A list of categories that describe the type of support issue a case describes.
|
Service.Builder |
categories(Category... 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.
|
copy
apply, build
Service.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.
NOTE: This method appends the values to the existing list (if any). Use
#setCategories(java.util.Collection)
or #withCategories(java.util.Collection)
if you want to
override the existing values.
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.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.