Interface DownloadUrlMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DownloadUrlMetadata.Builder,DownloadUrlMetadata>,SdkBuilder<DownloadUrlMetadata.Builder,DownloadUrlMetadata>,SdkPojo
- Enclosing class:
- DownloadUrlMetadata
public static interface DownloadUrlMetadata.Builder extends SdkPojo, CopyableBuilder<DownloadUrlMetadata.Builder,DownloadUrlMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DownloadUrlMetadata.Builderurl(String url)A pre-signed URL that should be used to download the attached file.DownloadUrlMetadata.BuilderurlExpiry(String urlExpiry)The expiration time of the URL in ISO timestamp.-
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
-
url
DownloadUrlMetadata.Builder url(String url)
A pre-signed URL that should be used to download the attached file.
- Parameters:
url- A pre-signed URL that should be used to download the attached file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
urlExpiry
DownloadUrlMetadata.Builder urlExpiry(String urlExpiry)
The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
- Parameters:
urlExpiry- The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-