Interface ExportStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportStatus.Builder,ExportStatus>,SdkBuilder<ExportStatus.Builder,ExportStatus>,SdkPojo
- Enclosing class:
- ExportStatus
public static interface ExportStatus.Builder extends SdkPojo, CopyableBuilder<ExportStatus.Builder,ExportStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportStatus.BuildercreatedAt(Instant createdAt)The timestamp of when the export was created.ExportStatus.BuilderlastRefreshedAt(Instant lastRefreshedAt)The timestamp of when the export was last generated.ExportStatus.BuilderlastUpdatedAt(Instant lastUpdatedAt)The timestamp of when the export was updated.ExportStatus.BuilderstatusCode(String statusCode)The status code for the request.ExportStatus.BuilderstatusCode(ExportStatusCode statusCode)The status code for the request.ExportStatus.BuilderstatusReason(String statusReason)The description for the status code.ExportStatus.BuilderstatusReason(ExecutionStatusReason statusReason)The description for the status code.-
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
-
createdAt
ExportStatus.Builder createdAt(Instant createdAt)
The timestamp of when the export was created.
- Parameters:
createdAt- The timestamp of when the export was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastRefreshedAt
ExportStatus.Builder lastRefreshedAt(Instant lastRefreshedAt)
The timestamp of when the export was last generated.
- Parameters:
lastRefreshedAt- The timestamp of when the export was last generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
ExportStatus.Builder lastUpdatedAt(Instant lastUpdatedAt)
The timestamp of when the export was updated.
- Parameters:
lastUpdatedAt- The timestamp of when the export was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusCode
ExportStatus.Builder statusCode(String statusCode)
The status code for the request.
- Parameters:
statusCode- The status code for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportStatusCode,ExportStatusCode
-
statusCode
ExportStatus.Builder statusCode(ExportStatusCode statusCode)
The status code for the request.
- Parameters:
statusCode- The status code for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportStatusCode,ExportStatusCode
-
statusReason
ExportStatus.Builder statusReason(String statusReason)
The description for the status code.
- Parameters:
statusReason- The description for the status code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatusReason,ExecutionStatusReason
-
statusReason
ExportStatus.Builder statusReason(ExecutionStatusReason statusReason)
The description for the status code.
- Parameters:
statusReason- The description for the status code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatusReason,ExecutionStatusReason
-
-