public static interface ResourceTagMapping.Builder extends CopyableBuilder<ResourceTagMapping.Builder,ResourceTagMapping>
Modifier and Type | Method and Description |
---|---|
ResourceTagMapping.Builder |
resourceARN(String resourceARN)
An array of resource ARN(s).
|
ResourceTagMapping.Builder |
tags(Collection<Tag> tags)
The tags that have been applied to one or more AWS resources.
|
ResourceTagMapping.Builder |
tags(Consumer<Tag.Builder>... tags)
The tags that have been applied to one or more AWS resources.
|
ResourceTagMapping.Builder |
tags(Tag... tags)
The tags that have been applied to one or more AWS resources.
|
copy
apply, build
ResourceTagMapping.Builder resourceARN(String resourceARN)
An array of resource ARN(s).
resourceARN
- An array of resource ARN(s).ResourceTagMapping.Builder tags(Collection<Tag> tags)
The tags that have been applied to one or more AWS resources.
tags
- The tags that have been applied to one or more AWS resources.ResourceTagMapping.Builder tags(Tag... tags)
The tags that have been applied to one or more AWS resources.
tags
- The tags that have been applied to one or more AWS resources.ResourceTagMapping.Builder tags(Consumer<Tag.Builder>... tags)
The tags that have been applied to one or more AWS resources.
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 #tags(List)
.tags
- a consumer that will call methods on List.Builder
#tags(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.