public static interface CreatePortfolioResponse.Builder extends ServiceCatalogResponse.Builder, CopyableBuilder<CreatePortfolioResponse.Builder,CreatePortfolioResponse>
Modifier and Type | Method and Description |
---|---|
default CreatePortfolioResponse.Builder |
portfolioDetail(Consumer<PortfolioDetail.Builder> portfolioDetail)
The resulting detailed portfolio information.
|
CreatePortfolioResponse.Builder |
portfolioDetail(PortfolioDetail portfolioDetail)
The resulting detailed portfolio information.
|
CreatePortfolioResponse.Builder |
tags(Collection<Tag> tags)
Tags successfully associated with the new portfolio.
|
CreatePortfolioResponse.Builder |
tags(Consumer<Tag.Builder>... tags)
Tags successfully associated with the new portfolio.
|
CreatePortfolioResponse.Builder |
tags(Tag... tags)
Tags successfully associated with the new portfolio.
|
build
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
CreatePortfolioResponse.Builder portfolioDetail(PortfolioDetail portfolioDetail)
The resulting detailed portfolio information.
portfolioDetail
- The resulting detailed portfolio information.default CreatePortfolioResponse.Builder portfolioDetail(Consumer<PortfolioDetail.Builder> portfolioDetail)
The resulting detailed portfolio information.
This is a convenience that creates an instance of thePortfolioDetail.Builder
avoiding the need to
create one manually via PortfolioDetail.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to portfolioDetail(PortfolioDetail)
.portfolioDetail
- a consumer that will call methods on PortfolioDetail.Builder
portfolioDetail(PortfolioDetail)
CreatePortfolioResponse.Builder tags(Collection<Tag> tags)
Tags successfully associated with the new portfolio.
tags
- Tags successfully associated with the new portfolio.CreatePortfolioResponse.Builder tags(Tag... tags)
Tags successfully associated with the new portfolio.
tags
- Tags successfully associated with the new portfolio.CreatePortfolioResponse.Builder tags(Consumer<Tag.Builder>... tags)
Tags successfully associated with the new portfolio.
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.