Interface Export.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Export.Builder,Export>,SdkBuilder<Export.Builder,Export>,SdkPojo
- Enclosing class:
- Export
public static interface Export.Builder extends SdkPojo, CopyableBuilder<Export.Builder,Export>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Export.BuilderexportingStackId(String exportingStackId)The stack that contains the exported output name and value.Export.Buildername(String name)The name of exported output value.Export.Buildervalue(String value)The value of the exported output, such as a resource physical ID.-
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, sdkFields
-
-
-
-
Method Detail
-
exportingStackId
Export.Builder exportingStackId(String exportingStackId)
The stack that contains the exported output name and value.
- Parameters:
exportingStackId- The stack that contains the exported output name and value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Export.Builder name(String name)
The name of exported output value. Use this name and the
Fn::ImportValuefunction to import the associated value into other stacks. The name is defined in theExportfield in the associated stack'sOutputssection.- Parameters:
name- The name of exported output value. Use this name and theFn::ImportValuefunction to import the associated value into other stacks. The name is defined in theExportfield in the associated stack'sOutputssection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Export.Builder value(String value)
The value of the exported output, such as a resource physical ID. This value is defined in the
Exportfield in the associated stack'sOutputssection.- Parameters:
value- The value of the exported output, such as a resource physical ID. This value is defined in theExportfield in the associated stack'sOutputssection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-