Interface AuditTaskMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuditTaskMetadata.Builder,AuditTaskMetadata>,SdkBuilder<AuditTaskMetadata.Builder,AuditTaskMetadata>,SdkPojo
- Enclosing class:
- AuditTaskMetadata
public static interface AuditTaskMetadata.Builder extends SdkPojo, CopyableBuilder<AuditTaskMetadata.Builder,AuditTaskMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuditTaskMetadata.BuildertaskId(String taskId)The ID of this audit.AuditTaskMetadata.BuildertaskStatus(String taskStatus)The status of this audit.AuditTaskMetadata.BuildertaskStatus(AuditTaskStatus taskStatus)The status of this audit.AuditTaskMetadata.BuildertaskType(String taskType)The type of this audit.AuditTaskMetadata.BuildertaskType(AuditTaskType taskType)The type of this audit.-
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
-
taskId
AuditTaskMetadata.Builder taskId(String taskId)
The ID of this audit.
- Parameters:
taskId- The ID of this audit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskStatus
AuditTaskMetadata.Builder taskStatus(String taskStatus)
The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".
- Parameters:
taskStatus- The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuditTaskStatus,AuditTaskStatus
-
taskStatus
AuditTaskMetadata.Builder taskStatus(AuditTaskStatus taskStatus)
The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".
- Parameters:
taskStatus- The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuditTaskStatus,AuditTaskStatus
-
taskType
AuditTaskMetadata.Builder taskType(String taskType)
The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".
- Parameters:
taskType- The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuditTaskType,AuditTaskType
-
taskType
AuditTaskMetadata.Builder taskType(AuditTaskType taskType)
The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".
- Parameters:
taskType- The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuditTaskType,AuditTaskType
-
-