Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
 public LocalSecondaryIndexDescription WithProjection(Projection projection)
 {
     this.projection = projection;
     return this;
 }
Exemple #2
0
 /// <summary>
 /// Sets the Projection property
 /// </summary>
 /// <param name="projection">The value to set for the Projection property </param>
 /// <returns>this instance</returns>
 public LocalSecondaryIndex WithProjection(Projection projection)
 {
     this.projection = projection;
     return(this);
 }