def create()

in deployment/s3_folder_create.py [0:0]


def create(properties, physical_id):
    bucketName = properties['S3Bucket']
    s3Client.put_object(Bucket=bucketName, Key=('input/'))
    s3Client.put_object(Bucket=bucketName, Key=('output/'))
    s3Client.put_object(Bucket=bucketName, Key=('xmlin/'))
    s3Client.put_object(Bucket=bucketName, Key=('xmlout/'))
    return cfnresponse.SUCCESS, physical_id