func (svc *Rekognition) CreateCollection(name string) error {
    collectionName := svc.prefix + name
    _, err := svc.client.CreateCollection(&SDK.CreateCollectionInput{
        CollectionId: pointers.String(collectionName),
    })