Beispiel #1
0
 public MyStack()
 {
     var production = new Aws.Ssm.PatchBaseline("production", new Aws.Ssm.PatchBaselineArgs
     {
         ApprovedPatches =
         {
             "KB123456",
         },
     });
 }
Beispiel #2
0
 public MyStack()
 {
     var production = new Aws.Ssm.PatchBaseline("production", new Aws.Ssm.PatchBaselineArgs
     {
         ApprovedPatches =
         {
             "KB123456",
         },
     });
     var patchgroup = new Aws.Ssm.PatchGroup("patchgroup", new Aws.Ssm.PatchGroupArgs
     {
         BaselineId = production.Id,
         PatchGroup = "patch-group-name",
     });
 }