-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ea181d
commit 0c24cf3
Showing
4 changed files
with
28 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Frends.AmazonS3.DeleteObject/Frends.AmazonS3.DeleteObject/Definitions/S3ObjectArray.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
namespace Frends.AmazonS3.DeleteObject.Definitions; | ||
|
||
/// <summary> | ||
/// Single object. | ||
/// </summary> | ||
public class S3ObjectArray | ||
{ | ||
/// <summary> | ||
/// AWS S3 bucket's name. | ||
/// </summary> | ||
/// <example>ExampleBucket</example> | ||
public string BucketName { get; set; } | ||
|
||
/// <summary> | ||
/// The key identifying the object to delete. | ||
/// </summary> | ||
/// <example>ExampleKey</example> | ||
public string Key { get; set; } | ||
|
||
/// <summary> | ||
/// VersionId used to reference a specific version of the object. | ||
/// Leave empty to use non-versioned delete operation. | ||
/// </summary> | ||
/// <example>1</example> | ||
public string VersionId { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters