Interface CreatedAt.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CreatedAt.Builder,CreatedAt>,SdkBuilder<CreatedAt.Builder,CreatedAt>,SdkPojo
- Enclosing class:
- CreatedAt
public static interface CreatedAt.Builder extends SdkPojo, CopyableBuilder<CreatedAt.Builder,CreatedAt>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreatedAt.Builderafter(Instant after)Include service deployments in the result that were created after this time.CreatedAt.Builderbefore(Instant before)Include service deployments in the result that were created before this time.-
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
-
before
CreatedAt.Builder before(Instant before)
Include service deployments in the result that were created before this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
- Parameters:
before- Include service deployments in the result that were created before this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
after
CreatedAt.Builder after(Instant after)
Include service deployments in the result that were created after this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
- Parameters:
after- Include service deployments in the result that were created after this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-