/// <summary>
 /// Instantiates ResetImageAttributeRequest with the parameterized properties
 /// </summary>
 /// <param name="imageId">The ID of the AMI.</param>
 /// <param name="attribute">The attribute to reset (currently you can only reset the launch permission attribute).</param>
 public ResetImageAttributeRequest(string imageId, ResetImageAttributeName attribute)
 {
     _imageId = imageId;
     _attribute = attribute;
 }
 /// <summary>
 /// Instantiates ResetImageAttributeRequest with the parameterized properties
 /// </summary>
 /// <param name="imageId">The ID of the AMI.</param>
 /// <param name="attribute">The attribute to reset (currently you can only reset the launch permission attribute).</param>
 public ResetImageAttributeRequest(string imageId, ResetImageAttributeName attribute)
 {
     _imageId   = imageId;
     _attribute = attribute;
 }