Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .doc_gen/metadata/s3_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1189,19 +1189,6 @@ s3_DeleteBucketLifecycle:
- python.example_code.s3.DeleteBucketLifecycleConfiguration
services:
s3: {DeleteBucketLifecycle}
s3_AbortMultipartUploads:
languages:
.NET:
versions:
- sdk_version: 3
github: dotnetv3/S3
sdkguide:
excerpts:
- description:
snippet_tags:
- S3.dotnetv3.AbortMPUExample
services:
s3: {AbortMultipartUploads}
s3_AbortMultipartUpload:
languages:
C++:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-check-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
8.0.x
- name: Checkout files
uses: actions/checkout@v4
with:
Expand Down
7 changes: 4 additions & 3 deletions dotnetv3/CloudFormation/Actions/HelloCloudFormation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,14 @@ await _amazonCloudFormation.DescribeStackResourcesAsync(
{
Console.WriteLine(ex.Message);
Console.WriteLine("If you are usnig SSO, be sure to install" +
" the AWSSDK.SSO and AWSSDK.SSOOIDC packages.");
" the AWSSDK.SSO and AWSSDK.SSOOIDC packages.");
}
else
{
Console.WriteLine(ex.Message);
Console.WriteLine(ex.StackTrace);
}

return false;
}
catch (ArgumentNullException ex)
Expand All @@ -104,8 +105,8 @@ await _amazonCloudFormation.DescribeStackResourcesAsync(
Console.WriteLine(ex.Message);
Console.WriteLine(ex.StackTrace);
}

return false;
}
}
}
// snippet-end:[CloudFormation.dotnetv3.CloudFormationActions.HelloCloudFormation]
}// snippet-end:[CloudFormation.dotnetv3.CloudFormationActions.HelloCloudFormation]
324 changes: 301 additions & 23 deletions dotnetv3/DotNetV3Examples.sln

Large diffs are not rendered by default.

57 changes: 0 additions & 57 deletions dotnetv3/S3/AbortMPUExample/AbortMPU.cs

This file was deleted.

25 changes: 0 additions & 25 deletions dotnetv3/S3/AbortMPUExample/AbortMPUExample.csproj

This file was deleted.

25 changes: 0 additions & 25 deletions dotnetv3/S3/AbortMPUExample/AbortMPUExample.sln

This file was deleted.

1 change: 0 additions & 1 deletion dotnetv3/S3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Code examples that show you how to perform the essential operations within a ser

Code excerpts that show you how to call individual service functions.

- [AbortMultipartUploads](AbortMPUExample/AbortMPU.cs#L6)
- [CopyObject](CopyObjectExample/CopyObject.cs#L11)
- [CreateBucket](S3_Basics/S3Bucket.cs#L12)
- [DeleteBucket](S3_Basics/S3Bucket.cs#L266)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ await _s3ActionsWrapper.ModifyBucketDefaultRetention(retentionAfterCreationBucke

Console.WriteLine("\nObject lock policies can also be added to existing buckets.");
await _s3ActionsWrapper.EnableObjectLockOnBucket(lockEnabledBucketName);

Console.WriteLine("Press Enter to continue.");
if (interactive)
Console.ReadLine();
Expand Down
Loading