Interface ImportTaskSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImportTaskSummary.Builder,ImportTaskSummary>,SdkBuilder<ImportTaskSummary.Builder,ImportTaskSummary>,SdkPojo
- Enclosing class:
- ImportTaskSummary
public static interface ImportTaskSummary.Builder extends SdkPojo, CopyableBuilder<ImportTaskSummary.Builder,ImportTaskSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportTaskSummary.Builderformat(String format)Specifies the format of S3 data to be imported.ImportTaskSummary.Builderformat(Format format)Specifies the format of S3 data to be imported.ImportTaskSummary.BuildergraphId(String graphId)The unique identifier of the Neptune Analytics graph.ImportTaskSummary.BuilderroleArn(String roleArn)The ARN of the IAM role that will allow access to the data that is to be imported.ImportTaskSummary.Buildersource(String source)A URL identifying to the location of the data to be imported.ImportTaskSummary.Builderstatus(String status)Status of the import task.ImportTaskSummary.Builderstatus(ImportTaskStatus status)Status of the import task.ImportTaskSummary.BuildertaskId(String taskId)The unique identifier of the import task.-
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
-
graphId
ImportTaskSummary.Builder graphId(String graphId)
The unique identifier of the Neptune Analytics graph.
- Parameters:
graphId- The unique identifier of the Neptune Analytics graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskId
ImportTaskSummary.Builder taskId(String taskId)
The unique identifier of the import task.
- Parameters:
taskId- The unique identifier of the import task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
ImportTaskSummary.Builder source(String source)
A URL identifying to the location of the data to be imported. This can be an Amazon S3 path, or can point to a Neptune database endpoint or snapshot
- Parameters:
source- A URL identifying to the location of the data to be imported. This can be an Amazon S3 path, or can point to a Neptune database endpoint or snapshot- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
ImportTaskSummary.Builder format(String format)
Specifies the format of S3 data to be imported. Valid values are
CSV, which identifies the Gremlin CSV format orOPENCYPHER, which identies the openCypher load format.- Parameters:
format- Specifies the format of S3 data to be imported. Valid values areCSV, which identifies the Gremlin CSV format orOPENCYPHER, which identies the openCypher load format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Format,Format
-
format
ImportTaskSummary.Builder format(Format format)
Specifies the format of S3 data to be imported. Valid values are
CSV, which identifies the Gremlin CSV format orOPENCYPHER, which identies the openCypher load format.- Parameters:
format- Specifies the format of S3 data to be imported. Valid values areCSV, which identifies the Gremlin CSV format orOPENCYPHER, which identies the openCypher load format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Format,Format
-
roleArn
ImportTaskSummary.Builder roleArn(String roleArn)
The ARN of the IAM role that will allow access to the data that is to be imported.
- Parameters:
roleArn- The ARN of the IAM role that will allow access to the data that is to be imported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ImportTaskSummary.Builder status(String status)
Status of the import task.
- Parameters:
status- Status of the import task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportTaskStatus,ImportTaskStatus
-
status
ImportTaskSummary.Builder status(ImportTaskStatus status)
Status of the import task.
- Parameters:
status- Status of the import task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportTaskStatus,ImportTaskStatus
-
-