Interface LastModifiedDate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LastModifiedDate.Builder,LastModifiedDate>,SdkBuilder<LastModifiedDate.Builder,LastModifiedDate>,SdkPojo
- Enclosing class:
- LastModifiedDate
public static interface LastModifiedDate.Builder extends SdkPojo, CopyableBuilder<LastModifiedDate.Builder,LastModifiedDate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastModifiedDate.BuilderafterLastModifiedDate(Instant afterLastModifiedDate)Specifies the date after which the opportunities were modified.LastModifiedDate.BuilderbeforeLastModifiedDate(Instant beforeLastModifiedDate)Specifies the date before which the opportunities were modified.-
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
-
afterLastModifiedDate
LastModifiedDate.Builder afterLastModifiedDate(Instant afterLastModifiedDate)
Specifies the date after which the opportunities were modified. Use this filter to retrieve only those opportunities that were modified after a given timestamp.
- Parameters:
afterLastModifiedDate- Specifies the date after which the opportunities were modified. Use this filter to retrieve only those opportunities that were modified after a given timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforeLastModifiedDate
LastModifiedDate.Builder beforeLastModifiedDate(Instant beforeLastModifiedDate)
Specifies the date before which the opportunities were modified. Use this filter to retrieve only those opportunities that were modified before a given timestamp.
- Parameters:
beforeLastModifiedDate- Specifies the date before which the opportunities were modified. Use this filter to retrieve only those opportunities that were modified before a given timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-