public static interface CreateConnectionResponse.Builder extends CodeStarConnectionsResponse.Builder, SdkPojo, CopyableBuilder<CreateConnectionResponse.Builder,CreateConnectionResponse>
Modifier and Type | Method and Description |
---|---|
CreateConnectionResponse.Builder |
connectionArn(String connectionArn)
The Amazon Resource Name (ARN) of the connection to be created.
|
CreateConnectionResponse.Builder |
tags(Collection<Tag> tags)
Specifies the tags applied to the resource.
|
CreateConnectionResponse.Builder |
tags(Consumer<Tag.Builder>... tags)
Specifies the tags applied to the resource.
|
CreateConnectionResponse.Builder |
tags(Tag... tags)
Specifies the tags applied to the resource.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
equalsBySdkFields, sdkFields
copy
applyMutation, build
CreateConnectionResponse.Builder connectionArn(String connectionArn)
The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection reference when the connection is shared between AWS services.
The ARN is never reused if the connection is deleted.
connectionArn
- The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection
reference when the connection is shared between AWS services. The ARN is never reused if the connection is deleted.
CreateConnectionResponse.Builder tags(Collection<Tag> tags)
Specifies the tags applied to the resource.
tags
- Specifies the tags applied to the resource.CreateConnectionResponse.Builder tags(Tag... tags)
Specifies the tags applied to the resource.
tags
- Specifies the tags applied to the resource.CreateConnectionResponse.Builder tags(Consumer<Tag.Builder>... tags)
Specifies the tags applied to the resource.
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)