S3Link is an object that provides a connection to an S3 resource that can be stored in a DynamoDB field through DynamoDBContext
Ejemplo n.º 1
0
            public object FromEntry(DocumentModel.DynamoDBEntry entry)
            {
                S3ClientCache cache;

                if (!S3Link.Caches.TryGetValue(context, out cache))
                {
                    cache = S3Link.CreatClientCacheFromContext(context);
                }
                return(new S3Link(cache, entry.AsString()));
            }