CopyableBuilder<Stack.Builder,Stack>
, SdkBuilder<Stack.Builder,Stack>
public static interface Stack.Builder extends CopyableBuilder<Stack.Builder,Stack>
Modifier and Type | Method | Description |
---|---|---|
Stack.Builder |
arn(String arn) |
The ARN of the stack.
|
Stack.Builder |
createdTime(Date createdTime) |
The timestamp when the stack was created.
|
Stack.Builder |
description(String description) |
A meaningful description for the stack.
|
Stack.Builder |
displayName(String displayName) |
A display name for the stack.
|
Stack.Builder |
name(String name) |
The unique identifier of the stack.
|
Stack.Builder |
stackErrors(Collection<StackError> stackErrors) |
The list of errors associated with the stack.
|
Stack.Builder |
stackErrors(StackError... stackErrors) |
The list of errors associated with the stack.
|
Stack.Builder |
storageConnectors(Collection<StorageConnector> storageConnectors) |
The storage connectors to be enabled for the stack.
|
Stack.Builder |
storageConnectors(StorageConnector... storageConnectors) |
The storage connectors to be enabled for the stack.
|
copy
apply, build
Stack.Builder arn(String arn)
The ARN of the stack.
arn
- The ARN of the stack.Stack.Builder name(String name)
The unique identifier of the stack.
name
- The unique identifier of the stack.Stack.Builder description(String description)
A meaningful description for the stack.
description
- A meaningful description for the stack.Stack.Builder displayName(String displayName)
A display name for the stack.
displayName
- A display name for the stack.Stack.Builder createdTime(Date createdTime)
The timestamp when the stack was created.
createdTime
- The timestamp when the stack was created.Stack.Builder storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to be enabled for the stack.
storageConnectors
- The storage connectors to be enabled for the stack.Stack.Builder storageConnectors(StorageConnector... storageConnectors)
The storage connectors to be enabled for the stack.
NOTE: This method appends the values to the existing list (if any). Use
#setStorageConnectors(java.util.Collection)
or #withStorageConnectors(java.util.Collection)
if you want to override the existing values.
storageConnectors
- The storage connectors to be enabled for the stack.Stack.Builder stackErrors(Collection<StackError> stackErrors)
The list of errors associated with the stack.
stackErrors
- The list of errors associated with the stack.Stack.Builder stackErrors(StackError... stackErrors)
The list of errors associated with the stack.
NOTE: This method appends the values to the existing list (if any). Use
#setStackErrors(java.util.Collection)
or #withStackErrors(java.util.Collection)
if you want
to override the existing values.
stackErrors
- The list of errors associated with the stack.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.