Interface StartExportTaskResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<StartExportTaskResponse.Builder,StartExportTaskResponse>,NeptuneGraphResponse.Builder,SdkBuilder<StartExportTaskResponse.Builder,StartExportTaskResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- StartExportTaskResponse
public static interface StartExportTaskResponse.Builder extends NeptuneGraphResponse.Builder, SdkPojo, CopyableBuilder<StartExportTaskResponse.Builder,StartExportTaskResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StartExportTaskResponse.Builderdestination(String destination)The Amazon S3 URI of the export task where data will be exported to.default StartExportTaskResponse.BuilderexportFilter(Consumer<ExportFilter.Builder> exportFilter)The export filter of the export task.StartExportTaskResponse.BuilderexportFilter(ExportFilter exportFilter)The export filter of the export task.StartExportTaskResponse.Builderformat(String format)The format of the export task.StartExportTaskResponse.Builderformat(ExportFormat format)The format of the export task.StartExportTaskResponse.BuildergraphId(String graphId)The source graph identifier of the export task.StartExportTaskResponse.BuilderkmsKeyIdentifier(String kmsKeyIdentifier)The KMS key identifier of the export task.StartExportTaskResponse.BuilderparquetType(String parquetType)The parquet type of the export task.StartExportTaskResponse.BuilderparquetType(ParquetType parquetType)The parquet type of the export task.StartExportTaskResponse.BuilderroleArn(String roleArn)The ARN of the IAM role that will allow data to be exported to the destination.StartExportTaskResponse.Builderstatus(String status)The current status of the export task.StartExportTaskResponse.Builderstatus(ExportTaskStatus status)The current status of the export task.StartExportTaskResponse.BuilderstatusReason(String statusReason)The reason that the export task has this status value.StartExportTaskResponse.BuildertaskId(String taskId)The unique identifier of the export task.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.neptunegraph.model.NeptuneGraphResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
graphId
StartExportTaskResponse.Builder graphId(String graphId)
The source graph identifier of the export task.
- Parameters:
graphId- The source graph identifier of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roleArn
StartExportTaskResponse.Builder roleArn(String roleArn)
The ARN of the IAM role that will allow data to be exported to the destination.
- Parameters:
roleArn- The ARN of the IAM role that will allow data to be exported to the destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskId
StartExportTaskResponse.Builder taskId(String taskId)
The unique identifier of the export task.
- Parameters:
taskId- The unique identifier of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
StartExportTaskResponse.Builder status(String status)
The current status of the export task.
- Parameters:
status- The current status of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportTaskStatus,ExportTaskStatus
-
status
StartExportTaskResponse.Builder status(ExportTaskStatus status)
The current status of the export task.
- Parameters:
status- The current status of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportTaskStatus,ExportTaskStatus
-
format
StartExportTaskResponse.Builder format(String format)
The format of the export task.
- Parameters:
format- The format of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportFormat,ExportFormat
-
format
StartExportTaskResponse.Builder format(ExportFormat format)
The format of the export task.
- Parameters:
format- The format of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportFormat,ExportFormat
-
destination
StartExportTaskResponse.Builder destination(String destination)
The Amazon S3 URI of the export task where data will be exported to.
- Parameters:
destination- The Amazon S3 URI of the export task where data will be exported to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyIdentifier
StartExportTaskResponse.Builder kmsKeyIdentifier(String kmsKeyIdentifier)
The KMS key identifier of the export task.
- Parameters:
kmsKeyIdentifier- The KMS key identifier of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parquetType
StartExportTaskResponse.Builder parquetType(String parquetType)
The parquet type of the export task.
- Parameters:
parquetType- The parquet type of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParquetType,ParquetType
-
parquetType
StartExportTaskResponse.Builder parquetType(ParquetType parquetType)
The parquet type of the export task.
- Parameters:
parquetType- The parquet type of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParquetType,ParquetType
-
statusReason
StartExportTaskResponse.Builder statusReason(String statusReason)
The reason that the export task has this status value.
- Parameters:
statusReason- The reason that the export task has this status value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportFilter
StartExportTaskResponse.Builder exportFilter(ExportFilter exportFilter)
The export filter of the export task.
- Parameters:
exportFilter- The export filter of the export task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportFilter
default StartExportTaskResponse.Builder exportFilter(Consumer<ExportFilter.Builder> exportFilter)
The export filter of the export task.
This is a convenience method that creates an instance of theExportFilter.Builderavoiding the need to create one manually viaExportFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexportFilter(ExportFilter).- Parameters:
exportFilter- a consumer that will call methods onExportFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
exportFilter(ExportFilter)
-
-