We are using a object storage account on softlayer and looking to create a lifecycle configuration on the buckets inorder to implement time to live. I am using the aws-sdk-java library as the amazon client.
however any requests such as s3client.setBucketLifecycleConfiguration(bucketName, configuration); returns a bucket already exists exception, per amazon docs is it mandatory for the bucket to exist before making the above api call. It appears to me that the object storage does not support this api call and returns an incorrect error message at that.
Any help is greatly appreciated.