デスクトップ仮想化の実践 - powered by Windows Server 2016 & Azure - (Microsoft de:code 2016)Takamasa Maejima
?
2016年5月に開催された Microsoft de:code 2016 での、RDS (Remote Desktop Services) on Microsoft Azure に関するセッションスライドです。
[イベント名] Microsoft de:code 2016
[開催日] 2016年5月24日
[セッションID] INF-012
[セッションタイトル] デスクトップ仮想化の実践 - powered by Windows Server 2016 & Azure -
デスクトップ仮想化の実践 - powered by Windows Server 2016 & Azure - (Microsoft de:code 2016)Takamasa Maejima
?
2016年5月に開催された Microsoft de:code 2016 での、RDS (Remote Desktop Services) on Microsoft Azure に関するセッションスライドです。
[イベント名] Microsoft de:code 2016
[開催日] 2016年5月24日
[セッションID] INF-012
[セッションタイトル] デスクトップ仮想化の実践 - powered by Windows Server 2016 & Azure -
23. Excelの改造:AWS SDKによる情報収集
var ec2Client = new AmazonEC2Client();
var request =
new DescribeInstancesRequest();
var response =
ec2Client.DescribeInstances(request);
Copyright ? CLASSMETHOD.
23
24. Excelの改造:AWS SDKによる情報収集
var reservationList =
response.DescribeInstancesResult.Reservation;
var runningInstanceList =
new List<RunningInstance>();
foreach (var reservation in reservationList)
{
runningInstanceList.AddRange(
reservation.RunningInstance);
}
Reservation:EC2インスタンスを同時に
起動した際に割り当てられるグループ
Copyright ? CLASSMETHOD.
24