You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The users need to perform batch copies in S3 regularly. Initiating these via the AWS CLI is error-prone with a number of steps and lots of details. We are making a macOS application to present a nice GUI to collect info and compose the request.
Proposed Solution
Implement CreateJob like the other AWS S3 actions.
Other Information
Our only current options are to compose AWS CLI commands or call the REST API directly.
Acknowledgements
I may be able to implement this feature request
This feature might incur a breaking change
The text was updated successfully, but these errors were encountered:
The CreateJob operation referenced in the doc link you cited is available in the SDK's AWSS3Control module. (Some larger AWS services, such as S3 and SageMaker, provide their functions through multiple SDK modules.)
In general, if you don't find what you need in an AWS service, look in the https://github.com/awslabs/aws-sdk-swift/tree/main/Sources/Services directory for a complete list of the service clients included in the SDK. (Currently there's over 400 clients!) Searching the SDK project for the operation name you want to perform should get you to the right place as well.
All of the AWS SDKs are generated from the same set of model definitions, so if you have example code like the Java SDK example in the linked docs, it's usually pretty easy to identify the same components in this SDK.
Describe the feature
We are making a macOS application to provide a nice GUI around CreateJob (https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops-create-job.html). But looks like this SDK doesn't support creating and submitting a CreateJob request with the nice Swift wrappers available for other calls.
Use Case
The users need to perform batch copies in S3 regularly. Initiating these via the AWS CLI is error-prone with a number of steps and lots of details. We are making a macOS application to present a nice GUI to collect info and compose the request.
Proposed Solution
Implement CreateJob like the other AWS S3 actions.
Other Information
Our only current options are to compose AWS CLI commands or call the REST API directly.
Acknowledgements
The text was updated successfully, but these errors were encountered: