Amazon.EC2.Util.ImageUtilities.DescriptorFromKey C# (CSharp) Метод

DescriptorFromKey() публичный статический Метод

Returns the ImageDescriptor instance for a known key.
public static DescriptorFromKey ( string key, IAmazonEC2 ec2Client ) : ImageDescriptor
key string /// The version-independent key identifying the descriptor ///
ec2Client IAmazonEC2 /// /// Optional. Configured client object from which proxy settings, if needed, can be /// determined. If no client is supplied the application configuration will be /// inspected for proxy details. /// /// /// If a proxy is configured (either on the client or in the configuration file) it /// will be used when downloading the metadata file containing the key to filter /// mappings. /// ///
Результат ImageDescriptor
        public static ImageDescriptor DescriptorFromKey(string key, IAmazonEC2 ec2Client)
        {
            LoadDefinitionsFromWeb(ConfigFromClient(ec2Client));

            return FindDescriptorWithKey(key);
        }
        

Same methods

ImageUtilities::DescriptorFromKey ( string key ) : ImageDescriptor