Interface DBSnapshotAttributesResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DBSnapshotAttributesResult.Builder,DBSnapshotAttributesResult>,SdkBuilder<DBSnapshotAttributesResult.Builder,DBSnapshotAttributesResult>,SdkPojo
- Enclosing class:
- DBSnapshotAttributesResult
public static interface DBSnapshotAttributesResult.Builder extends SdkPojo, CopyableBuilder<DBSnapshotAttributesResult.Builder,DBSnapshotAttributesResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DBSnapshotAttributesResult.BuilderdbSnapshotAttributes(Collection<DBSnapshotAttribute> dbSnapshotAttributes)The list of attributes and values for the manual DB snapshot.DBSnapshotAttributesResult.BuilderdbSnapshotAttributes(Consumer<DBSnapshotAttribute.Builder>... dbSnapshotAttributes)The list of attributes and values for the manual DB snapshot.DBSnapshotAttributesResult.BuilderdbSnapshotAttributes(DBSnapshotAttribute... dbSnapshotAttributes)The list of attributes and values for the manual DB snapshot.DBSnapshotAttributesResult.BuilderdbSnapshotIdentifier(String dbSnapshotIdentifier)The identifier of the manual DB snapshot that the attributes apply to.-
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
-
dbSnapshotIdentifier
DBSnapshotAttributesResult.Builder dbSnapshotIdentifier(String dbSnapshotIdentifier)
The identifier of the manual DB snapshot that the attributes apply to.
- Parameters:
dbSnapshotIdentifier- The identifier of the manual DB snapshot that the attributes apply to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSnapshotAttributes
DBSnapshotAttributesResult.Builder dbSnapshotAttributes(Collection<DBSnapshotAttribute> dbSnapshotAttributes)
The list of attributes and values for the manual DB snapshot.
- Parameters:
dbSnapshotAttributes- The list of attributes and values for the manual DB snapshot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSnapshotAttributes
DBSnapshotAttributesResult.Builder dbSnapshotAttributes(DBSnapshotAttribute... dbSnapshotAttributes)
The list of attributes and values for the manual DB snapshot.
- Parameters:
dbSnapshotAttributes- The list of attributes and values for the manual DB snapshot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSnapshotAttributes
DBSnapshotAttributesResult.Builder dbSnapshotAttributes(Consumer<DBSnapshotAttribute.Builder>... dbSnapshotAttributes)
The list of attributes and values for the manual DB snapshot.
This is a convenience method that creates an instance of theDBSnapshotAttribute.Builderavoiding the need to create one manually viaDBSnapshotAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dbSnapshotAttributes(List.) - Parameters:
dbSnapshotAttributes- a consumer that will call methods onDBSnapshotAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dbSnapshotAttributes(java.util.Collection)
-
-