@@ -1995,7 +1995,7 @@ export class WindowsBuildImage implements IBuildImage {
1995
1995
/**
1996
1996
* Corresponds to the standard CodeBuild image `aws/codebuild/windows-base:1.0`.
1997
1997
*
1998
- * @deprecated `WindowsBuildImage.WIN_SERVER_CORE_2019_BASE_2_0 ` should be used instead.
1998
+ * @deprecated `WindowsBuildImage.WIN_SERVER_CORE_2019_BASE_3_0 ` should be used instead.
1999
1999
*/
2000
2000
public static readonly WIN_SERVER_CORE_2016_BASE : IBuildImage = new WindowsBuildImage ( {
2001
2001
imageId : 'aws/codebuild/windows-base:1.0' ,
@@ -2006,7 +2006,7 @@ export class WindowsBuildImage implements IBuildImage {
2006
2006
* The standard CodeBuild image `aws/codebuild/windows-base:2.0`, which is
2007
2007
* based off Windows Server Core 2016.
2008
2008
*
2009
- * @deprecated `WindowsBuildImage.WIN_SERVER_CORE_2019_BASE_2_0 ` should be used instead.
2009
+ * @deprecated `WindowsBuildImage.WIN_SERVER_CORE_2019_BASE_3_0 ` should be used instead.
2010
2010
*/
2011
2011
public static readonly WINDOWS_BASE_2_0 : IBuildImage = new WindowsBuildImage ( {
2012
2012
imageId : 'aws/codebuild/windows-base:2.0' ,
@@ -2033,6 +2033,16 @@ export class WindowsBuildImage implements IBuildImage {
2033
2033
imageType : WindowsImageType . SERVER_2019 ,
2034
2034
} ) ;
2035
2035
2036
+ /**
2037
+ * The standard CodeBuild image `aws/codebuild/windows-base:2019-3.0`, which is
2038
+ * based off Windows Server Core 2019.
2039
+ */
2040
+ public static readonly WIN_SERVER_CORE_2019_BASE_3_0 : IBuildImage = new WindowsBuildImage ( {
2041
+ imageId : 'aws/codebuild/windows-base:2019-3.0' ,
2042
+ imagePullPrincipalType : ImagePullPrincipalType . CODEBUILD ,
2043
+ imageType : WindowsImageType . SERVER_2019 ,
2044
+ } ) ;
2045
+
2036
2046
/**
2037
2047
* @returns a Windows build image from a Docker Hub image.
2038
2048
*/
0 commit comments