@@ -259,6 +259,12 @@ export interface CreateEnvironmentRequest {
259
259
* @public
260
260
*/
261
261
tags ?: Record < string , string > ;
262
+
263
+ /**
264
+ * <p>A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.</p>
265
+ * @public
266
+ */
267
+ deviceCreationTags ?: Record < string , string > ;
262
268
}
263
269
264
270
/**
@@ -1127,6 +1133,12 @@ export interface Environment {
1127
1133
* @public
1128
1134
*/
1129
1135
tags ?: Record < string , string > ;
1136
+
1137
+ /**
1138
+ * <p>"The tag keys and optional values for the newly created devices for this environment."</p>
1139
+ * @public
1140
+ */
1141
+ deviceCreationTags ?: Record < string , string > ;
1130
1142
}
1131
1143
1132
1144
/**
@@ -1621,6 +1633,12 @@ export interface UpdateEnvironmentRequest {
1621
1633
* @public
1622
1634
*/
1623
1635
desiredSoftwareSetId ?: string ;
1636
+
1637
+ /**
1638
+ * <p>A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.</p>
1639
+ * @public
1640
+ */
1641
+ deviceCreationTags ?: Record < string , string > ;
1624
1642
}
1625
1643
1626
1644
/**
@@ -1664,6 +1682,7 @@ export const CreateEnvironmentRequestFilterSensitiveLog = (obj: CreateEnvironmen
1664
1682
...( obj . name && { name : SENSITIVE_STRING } ) ,
1665
1683
...( obj . desktopEndpoint && { desktopEndpoint : SENSITIVE_STRING } ) ,
1666
1684
...( obj . tags && { tags : SENSITIVE_STRING } ) ,
1685
+ ...( obj . deviceCreationTags && { deviceCreationTags : SENSITIVE_STRING } ) ,
1667
1686
} ) ;
1668
1687
1669
1688
/**
@@ -1708,6 +1727,7 @@ export const EnvironmentFilterSensitiveLog = (obj: Environment): any => ({
1708
1727
...( obj . name && { name : SENSITIVE_STRING } ) ,
1709
1728
...( obj . desktopEndpoint && { desktopEndpoint : SENSITIVE_STRING } ) ,
1710
1729
...( obj . tags && { tags : SENSITIVE_STRING } ) ,
1730
+ ...( obj . deviceCreationTags && { deviceCreationTags : SENSITIVE_STRING } ) ,
1711
1731
} ) ;
1712
1732
1713
1733
/**
@@ -1805,6 +1825,7 @@ export const UpdateEnvironmentRequestFilterSensitiveLog = (obj: UpdateEnvironmen
1805
1825
...obj ,
1806
1826
...( obj . name && { name : SENSITIVE_STRING } ) ,
1807
1827
...( obj . desktopEndpoint && { desktopEndpoint : SENSITIVE_STRING } ) ,
1828
+ ...( obj . deviceCreationTags && { deviceCreationTags : SENSITIVE_STRING } ) ,
1808
1829
} ) ;
1809
1830
1810
1831
/**
0 commit comments