public static interface ParameterObject.Builder extends CopyableBuilder<ParameterObject.Builder,ParameterObject>
| Modifier and Type | Method and Description |
|---|---|
ParameterObject.Builder |
attributes(Collection<ParameterAttribute> attributes)
The attributes of the parameter object.
|
ParameterObject.Builder |
attributes(Consumer<ParameterAttribute.Builder>... attributes)
The attributes of the parameter object.
|
ParameterObject.Builder |
attributes(ParameterAttribute... attributes)
The attributes of the parameter object.
|
ParameterObject.Builder |
id(String id)
The ID of the parameter object.
|
copyapply, buildParameterObject.Builder id(String id)
The ID of the parameter object.
id - The ID of the parameter object.ParameterObject.Builder attributes(Collection<ParameterAttribute> attributes)
The attributes of the parameter object.
attributes - The attributes of the parameter object.ParameterObject.Builder attributes(ParameterAttribute... attributes)
The attributes of the parameter object.
attributes - The attributes of the parameter object.ParameterObject.Builder attributes(Consumer<ParameterAttribute.Builder>... attributes)
The attributes of the parameter object.
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 #attributes(List) .attributes - a consumer that will call methods on List.Builder #attributes(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.