Interface AttachmentItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AttachmentItem.Builder,AttachmentItem>,SdkBuilder<AttachmentItem.Builder,AttachmentItem>,SdkPojo
- Enclosing class:
- AttachmentItem
public static interface AttachmentItem.Builder extends SdkPojo, CopyableBuilder<AttachmentItem.Builder,AttachmentItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachmentItem.BuilderattachmentId(String attachmentId)A unique identifier for the attachment.AttachmentItem.BuilderattachmentName(String attachmentName)A case-sensitive name of the attachment being uploaded.AttachmentItem.BuildercontentType(String contentType)Describes the MIME file type of the attachment.AttachmentItem.Builderstatus(String status)Status of the attachment.AttachmentItem.Builderstatus(ArtifactStatus status)Status of the attachment.-
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
-
contentType
AttachmentItem.Builder contentType(String contentType)
Describes the MIME file type of the attachment. For a list of supported file types, see Feature specifications in the Amazon Connect Administrator Guide.
- Parameters:
contentType- Describes the MIME file type of the attachment. For a list of supported file types, see Feature specifications in the Amazon Connect Administrator Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attachmentId
AttachmentItem.Builder attachmentId(String attachmentId)
A unique identifier for the attachment.
- Parameters:
attachmentId- A unique identifier for the attachment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attachmentName
AttachmentItem.Builder attachmentName(String attachmentName)
A case-sensitive name of the attachment being uploaded.
- Parameters:
attachmentName- A case-sensitive name of the attachment being uploaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
AttachmentItem.Builder status(String status)
Status of the attachment.
- Parameters:
status- Status of the attachment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ArtifactStatus,ArtifactStatus
-
status
AttachmentItem.Builder status(ArtifactStatus status)
Status of the attachment.
- Parameters:
status- Status of the attachment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ArtifactStatus,ArtifactStatus
-
-