Interface RotationsListEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RotationsListEntry.Builder,RotationsListEntry>,SdkBuilder<RotationsListEntry.Builder,RotationsListEntry>,SdkPojo
- Enclosing class:
- RotationsListEntry
public static interface RotationsListEntry.Builder extends SdkPojo, CopyableBuilder<RotationsListEntry.Builder,RotationsListEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RotationsListEntry.BuilderkeyId(String keyId)Unique identifier of the key.RotationsListEntry.BuilderrotationDate(Instant rotationDate)Date and time that the key material rotation completed.RotationsListEntry.BuilderrotationType(String rotationType)Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.RotationsListEntry.BuilderrotationType(RotationType rotationType)Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.-
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
-
keyId
RotationsListEntry.Builder keyId(String keyId)
Unique identifier of the key.
- Parameters:
keyId- Unique identifier of the key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rotationDate
RotationsListEntry.Builder rotationDate(Instant rotationDate)
Date and time that the key material rotation completed. Formatted as Unix time.
- Parameters:
rotationDate- Date and time that the key material rotation completed. Formatted as Unix time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rotationType
RotationsListEntry.Builder rotationType(String rotationType)
Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.
- Parameters:
rotationType- Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RotationType,RotationType
-
rotationType
RotationsListEntry.Builder rotationType(RotationType rotationType)
Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.
- Parameters:
rotationType- Identifies whether the key material rotation was a scheduled automatic rotation or an on-demand rotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RotationType,RotationType
-
-