public static interface Stack.Builder extends CopyableBuilder<Stack.Builder,Stack>
| Modifier and Type | Method and Description |
|---|---|
Stack.Builder |
arn(String arn)
The ARN of the stack.
|
Stack.Builder |
createdTime(Instant createdTime)
The time the stack was created.
|
Stack.Builder |
description(String description)
The description displayed to end users.
|
Stack.Builder |
displayName(String displayName)
The stack name displayed to end users.
|
Stack.Builder |
name(String name)
The name of the stack.
|
Stack.Builder |
stackErrors(Collection<StackError> stackErrors)
The errors for the stack.
|
Stack.Builder |
stackErrors(Consumer<StackError.Builder>... stackErrors)
The errors for the stack.
|
Stack.Builder |
stackErrors(StackError... stackErrors)
The errors for the stack.
|
Stack.Builder |
storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to enable.
|
Stack.Builder |
storageConnectors(Consumer<StorageConnector.Builder>... storageConnectors)
The storage connectors to enable.
|
Stack.Builder |
storageConnectors(StorageConnector... storageConnectors)
The storage connectors to enable.
|
copyapply, buildStack.Builder arn(String arn)
The ARN of the stack.
arn - The ARN of the stack.Stack.Builder name(String name)
The name of the stack.
name - The name of the stack.Stack.Builder description(String description)
The description displayed to end users.
description - The description displayed to end users.Stack.Builder displayName(String displayName)
The stack name displayed to end users.
displayName - The stack name displayed to end users.Stack.Builder createdTime(Instant createdTime)
The time the stack was created.
createdTime - The time the stack was created.Stack.Builder storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to enable.
storageConnectors - The storage connectors to enable.Stack.Builder storageConnectors(StorageConnector... storageConnectors)
The storage connectors to enable.
storageConnectors - The storage connectors to enable.Stack.Builder storageConnectors(Consumer<StorageConnector.Builder>... storageConnectors)
The storage connectors to enable.
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 #storageConnectors(List) .storageConnectors - a consumer that will call methods on List.Builder #storageConnectors(List) Stack.Builder stackErrors(Collection<StackError> stackErrors)
The errors for the stack.
stackErrors - The errors for the stack.Stack.Builder stackErrors(StackError... stackErrors)
The errors for the stack.
stackErrors - The errors for the stack.Stack.Builder stackErrors(Consumer<StackError.Builder>... stackErrors)
The errors for the stack.
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 #stackErrors(List) .stackErrors - a consumer that will call methods on List.Builder #stackErrors(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.