Interface StackDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StackDefinition.Builder,StackDefinition>,SdkBuilder<StackDefinition.Builder,StackDefinition>,SdkPojo
- Enclosing class:
- StackDefinition
@Mutable @NotThreadSafe public static interface StackDefinition.Builder extends SdkPojo, CopyableBuilder<StackDefinition.Builder,StackDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StackDefinition.BuilderstackName(String stackName)The name associated with the stack.StackDefinition.BuildertemplateBody(String templateBody)The file path for the stack template file.StackDefinition.BuildertemplateURL(String templateURL)The desired final state of the stack template.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
stackName
StackDefinition.Builder stackName(String stackName)
The name associated with the stack.
- Parameters:
stackName- The name associated with the stack.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateBody
StackDefinition.Builder templateBody(String templateBody)
The file path for the stack template file.
- Parameters:
templateBody- The file path for the stack template file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateURL
StackDefinition.Builder templateURL(String templateURL)
The desired final state of the stack template.
- Parameters:
templateURL- The desired final state of the stack template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-