aws-sdk 2.1662.0 → 2.1664.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +1 -1
  2. package/apis/application-signals-2024-04-15.min.json +15 -0
  3. package/apis/bedrock-runtime-2023-09-30.min.json +27 -5
  4. package/apis/cleanrooms-2022-02-17.min.json +444 -156
  5. package/apis/codecommit-2015-04-13.min.json +7 -1
  6. package/apis/datazone-2018-05-10.min.json +68 -32
  7. package/apis/ecr-2015-09-21.examples.json +186 -0
  8. package/apis/ecr-2015-09-21.min.json +177 -20
  9. package/apis/ecr-2015-09-21.paginators.json +9 -0
  10. package/apis/eks-2017-11-01.min.json +81 -63
  11. package/apis/elasticloadbalancingv2-2015-12-01.examples.json +33 -0
  12. package/apis/elasticloadbalancingv2-2015-12-01.min.json +113 -73
  13. package/apis/iotsitewise-2019-12-02.min.json +113 -98
  14. package/apis/mediapackagev2-2022-12-25.min.json +0 -3
  15. package/apis/medical-imaging-2023-07-19.min.json +75 -35
  16. package/apis/network-firewall-2020-11-12.min.json +7 -1
  17. package/apis/outposts-2019-12-03.min.json +11 -2
  18. package/apis/pinpoint-sms-voice-v2-2022-03-31.min.json +6 -0
  19. package/apis/states-2016-11-23.min.json +163 -128
  20. package/clients/applicationautoscaling.d.ts +1 -1
  21. package/clients/applicationsignals.d.ts +29 -20
  22. package/clients/bedrockruntime.d.ts +11 -8
  23. package/clients/cleanrooms.d.ts +328 -63
  24. package/clients/datazone.d.ts +36 -0
  25. package/clients/dynamodb.d.ts +6 -6
  26. package/clients/ec2.d.ts +4 -4
  27. package/clients/ecr.d.ts +242 -8
  28. package/clients/eks.d.ts +27 -2
  29. package/clients/elbv2.d.ts +54 -8
  30. package/clients/iotsitewise.d.ts +37 -25
  31. package/clients/mediapackagev2.d.ts +1 -1
  32. package/clients/medicalimaging.d.ts +38 -0
  33. package/clients/networkfirewall.d.ts +7 -7
  34. package/clients/outposts.d.ts +5 -0
  35. package/clients/pinpointsmsvoicev2.d.ts +56 -56
  36. package/clients/stepfunctions.d.ts +67 -9
  37. package/dist/aws-sdk-core-react-native.js +1 -1
  38. package/dist/aws-sdk-react-native.js +17 -17
  39. package/dist/aws-sdk.js +309 -97
  40. package/dist/aws-sdk.min.js +80 -80
  41. package/lib/core.js +1 -1
  42. package/package.json +1 -1
package/clients/eks.d.ts CHANGED
@@ -969,6 +969,10 @@ declare namespace EKS {
969
969
  * The access configuration for the cluster.
970
970
  */
971
971
  accessConfig?: AccessConfigResponse;
972
+ /**
973
+ * This value indicates if extended support is enabled or disabled for the cluster. Learn more about EKS Extended Support in the EKS User Guide.
974
+ */
975
+ upgradePolicy?: UpgradePolicyResponse;
972
976
  }
973
977
  export interface ClusterHealth {
974
978
  /**
@@ -1187,6 +1191,10 @@ declare namespace EKS {
1187
1191
  * If you set this value to False when creating a cluster, the default networking add-ons will not be installed. The default networking addons include vpc-cni, coredns, and kube-proxy. Use this option when you plan to install third-party alternative add-ons or self-manage the default networking add-ons.
1188
1192
  */
1189
1193
  bootstrapSelfManagedAddons?: BoxedBoolean;
1194
+ /**
1195
+ * New clusters, by default, have extended support enabled. You can disable extended support when creating a cluster by setting this value to STANDARD.
1196
+ */
1197
+ upgradePolicy?: UpgradePolicyRequest;
1190
1198
  }
1191
1199
  export interface CreateClusterResponse {
1192
1200
  /**
@@ -2890,6 +2898,7 @@ declare namespace EKS {
2890
2898
  export type RoleArn = string;
2891
2899
  export type String = string;
2892
2900
  export type StringList = String[];
2901
+ export type SupportType = "STANDARD"|"EXTENDED"|string;
2893
2902
  export type TagKey = string;
2894
2903
  export type TagKeyList = TagKey[];
2895
2904
  export type TagMap = {[key: string]: TagValue};
@@ -3049,6 +3058,10 @@ declare namespace EKS {
3049
3058
  * The access configuration for the cluster.
3050
3059
  */
3051
3060
  accessConfig?: UpdateAccessConfigRequest;
3061
+ /**
3062
+ * You can enable or disable extended support for clusters currently on standard support. You cannot disable extended support once it starts. You must enable extended support before your cluster exits standard support.
3063
+ */
3064
+ upgradePolicy?: UpgradePolicyRequest;
3052
3065
  }
3053
3066
  export interface UpdateClusterConfigResponse {
3054
3067
  update?: Update;
@@ -3179,7 +3192,7 @@ declare namespace EKS {
3179
3192
  */
3180
3193
  value?: String;
3181
3194
  }
3182
- export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|"ConfigurationValues"|"SecurityGroups"|"Subnets"|"AuthenticationMode"|"PodIdentityAssociations"|string;
3195
+ export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|"ConfigurationValues"|"SecurityGroups"|"Subnets"|"AuthenticationMode"|"PodIdentityAssociations"|"UpgradePolicy"|string;
3183
3196
  export type UpdateParams = UpdateParam[];
3184
3197
  export interface UpdatePodIdentityAssociationRequest {
3185
3198
  /**
@@ -3216,7 +3229,19 @@ declare namespace EKS {
3216
3229
  */
3217
3230
  removeTaints?: taintsList;
3218
3231
  }
3219
- export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|"AccessConfigUpdate"|string;
3232
+ export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|"AccessConfigUpdate"|"UpgradePolicyUpdate"|string;
3233
+ export interface UpgradePolicyRequest {
3234
+ /**
3235
+ * If the cluster is set to EXTENDED, it will enter extended support at the end of standard support. If the cluster is set to STANDARD, it will be automatically upgraded at the end of standard support. Learn more about EKS Extended Support in the EKS User Guide.
3236
+ */
3237
+ supportType?: SupportType;
3238
+ }
3239
+ export interface UpgradePolicyResponse {
3240
+ /**
3241
+ * If the cluster is set to EXTENDED, it will enter extended support at the end of standard support. If the cluster is set to STANDARD, it will be automatically upgraded at the end of standard support. Learn more about EKS Extended Support in the EKS User Guide.
3242
+ */
3243
+ supportType?: SupportType;
3244
+ }
3220
3245
  export interface VpcConfigRequest {
3221
3246
  /**
3222
3247
  * Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.
@@ -100,6 +100,14 @@ declare class ELBv2 extends Service {
100
100
  * Deletes the specified rule. You can't delete the default rule.
101
101
  */
102
102
  deleteRule(callback?: (err: AWSError, data: ELBv2.Types.DeleteRuleOutput) => void): Request<ELBv2.Types.DeleteRuleOutput, AWSError>;
103
+ /**
104
+ * Deletes a shared trust store association.
105
+ */
106
+ deleteSharedTrustStoreAssociation(params: ELBv2.Types.DeleteSharedTrustStoreAssociationInput, callback?: (err: AWSError, data: ELBv2.Types.DeleteSharedTrustStoreAssociationOutput) => void): Request<ELBv2.Types.DeleteSharedTrustStoreAssociationOutput, AWSError>;
107
+ /**
108
+ * Deletes a shared trust store association.
109
+ */
110
+ deleteSharedTrustStoreAssociation(callback?: (err: AWSError, data: ELBv2.Types.DeleteSharedTrustStoreAssociationOutput) => void): Request<ELBv2.Types.DeleteSharedTrustStoreAssociationOutput, AWSError>;
103
111
  /**
104
112
  * Deletes the specified target group. You can delete a target group if it is not referenced by any actions. Deleting a target group also deletes any associated health checks. Deleting a target group does not affect its registered targets. For example, any EC2 instances continue to run until you stop or terminate them.
105
113
  */
@@ -221,21 +229,29 @@ declare class ELBv2 extends Service {
221
229
  */
222
230
  describeTrustStoreAssociations(callback?: (err: AWSError, data: ELBv2.Types.DescribeTrustStoreAssociationsOutput) => void): Request<ELBv2.Types.DescribeTrustStoreAssociationsOutput, AWSError>;
223
231
  /**
224
- * Describes the revocation files in use by the specified trust store arn, or revocation ID.
232
+ * Describes the revocation files in use by the specified trust store or revocation files.
225
233
  */
226
234
  describeTrustStoreRevocations(params: ELBv2.Types.DescribeTrustStoreRevocationsInput, callback?: (err: AWSError, data: ELBv2.Types.DescribeTrustStoreRevocationsOutput) => void): Request<ELBv2.Types.DescribeTrustStoreRevocationsOutput, AWSError>;
227
235
  /**
228
- * Describes the revocation files in use by the specified trust store arn, or revocation ID.
236
+ * Describes the revocation files in use by the specified trust store or revocation files.
229
237
  */
230
238
  describeTrustStoreRevocations(callback?: (err: AWSError, data: ELBv2.Types.DescribeTrustStoreRevocationsOutput) => void): Request<ELBv2.Types.DescribeTrustStoreRevocationsOutput, AWSError>;
231
239
  /**
232
- * Describes all trust stores for a given account by trust store arn’s or name.
240
+ * Describes all trust stores for the specified account.
233
241
  */
234
242
  describeTrustStores(params: ELBv2.Types.DescribeTrustStoresInput, callback?: (err: AWSError, data: ELBv2.Types.DescribeTrustStoresOutput) => void): Request<ELBv2.Types.DescribeTrustStoresOutput, AWSError>;
235
243
  /**
236
- * Describes all trust stores for a given account by trust store arn’s or name.
244
+ * Describes all trust stores for the specified account.
237
245
  */
238
246
  describeTrustStores(callback?: (err: AWSError, data: ELBv2.Types.DescribeTrustStoresOutput) => void): Request<ELBv2.Types.DescribeTrustStoresOutput, AWSError>;
247
+ /**
248
+ * Retrieves the resource policy for a specified resource.
249
+ */
250
+ getResourcePolicy(params: ELBv2.Types.GetResourcePolicyInput, callback?: (err: AWSError, data: ELBv2.Types.GetResourcePolicyOutput) => void): Request<ELBv2.Types.GetResourcePolicyOutput, AWSError>;
251
+ /**
252
+ * Retrieves the resource policy for a specified resource.
253
+ */
254
+ getResourcePolicy(callback?: (err: AWSError, data: ELBv2.Types.GetResourcePolicyOutput) => void): Request<ELBv2.Types.GetResourcePolicyOutput, AWSError>;
239
255
  /**
240
256
  * Retrieves the ca certificate bundle. This action returns a pre-signed S3 URI which is active for ten minutes.
241
257
  */
@@ -293,11 +309,11 @@ declare class ELBv2 extends Service {
293
309
  */
294
310
  modifyTargetGroupAttributes(callback?: (err: AWSError, data: ELBv2.Types.ModifyTargetGroupAttributesOutput) => void): Request<ELBv2.Types.ModifyTargetGroupAttributesOutput, AWSError>;
295
311
  /**
296
- * Update the ca certificate bundle for a given trust store.
312
+ * Update the ca certificate bundle for the specified trust store.
297
313
  */
298
314
  modifyTrustStore(params: ELBv2.Types.ModifyTrustStoreInput, callback?: (err: AWSError, data: ELBv2.Types.ModifyTrustStoreOutput) => void): Request<ELBv2.Types.ModifyTrustStoreOutput, AWSError>;
299
315
  /**
300
- * Update the ca certificate bundle for a given trust store.
316
+ * Update the ca certificate bundle for the specified trust store.
301
317
  */
302
318
  modifyTrustStore(callback?: (err: AWSError, data: ELBv2.Types.ModifyTrustStoreOutput) => void): Request<ELBv2.Types.ModifyTrustStoreOutput, AWSError>;
303
319
  /**
@@ -903,6 +919,18 @@ declare namespace ELBv2 {
903
919
  }
904
920
  export interface DeleteRuleOutput {
905
921
  }
922
+ export interface DeleteSharedTrustStoreAssociationInput {
923
+ /**
924
+ * The Amazon Resource Name (ARN) of the trust store.
925
+ */
926
+ TrustStoreArn: TrustStoreArn;
927
+ /**
928
+ * The Amazon Resource Name (ARN) of the resource.
929
+ */
930
+ ResourceArn: ResourceArn;
931
+ }
932
+ export interface DeleteSharedTrustStoreAssociationOutput {
933
+ }
906
934
  export interface DeleteTargetGroupInput {
907
935
  /**
908
936
  * The Amazon Resource Name (ARN) of the target group.
@@ -1165,7 +1193,7 @@ declare namespace ELBv2 {
1165
1193
  */
1166
1194
  Targets?: TargetDescriptions;
1167
1195
  /**
1168
- * Used to inclue anomaly detection information.
1196
+ * Used to include anomaly detection information.
1169
1197
  */
1170
1198
  Include?: ListOfDescribeTargetHealthIncludeOptions;
1171
1199
  }
@@ -1305,6 +1333,18 @@ declare namespace ELBv2 {
1305
1333
  */
1306
1334
  TargetGroupStickinessConfig?: TargetGroupStickinessConfig;
1307
1335
  }
1336
+ export interface GetResourcePolicyInput {
1337
+ /**
1338
+ * The Amazon Resource Name (ARN) of the resource.
1339
+ */
1340
+ ResourceArn: ResourceArn;
1341
+ }
1342
+ export interface GetResourcePolicyOutput {
1343
+ /**
1344
+ * The content of the resource policy.
1345
+ */
1346
+ Policy?: Policy;
1347
+ }
1308
1348
  export interface GetTrustStoreCaCertificatesBundleInput {
1309
1349
  /**
1310
1350
  * The Amazon Resource Name (ARN) of the trust store.
@@ -1722,6 +1762,10 @@ declare namespace ELBv2 {
1722
1762
  * Indicates whether expired client certificates are ignored.
1723
1763
  */
1724
1764
  IgnoreClientCertificateExpiry?: IgnoreClientCertificateExpiry;
1765
+ /**
1766
+ * Indicates a shared trust stores association status.
1767
+ */
1768
+ TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum;
1725
1769
  }
1726
1770
  export type Name = string;
1727
1771
  export type NumberOfCaCertificates = number;
@@ -1735,6 +1779,7 @@ declare namespace ELBv2 {
1735
1779
  */
1736
1780
  Values?: ListOfString;
1737
1781
  }
1782
+ export type Policy = string;
1738
1783
  export type Port = number;
1739
1784
  export type PrivateIPv4Address = string;
1740
1785
  export type ProtocolEnum = "HTTP"|"HTTPS"|"TCP"|"TLS"|"UDP"|"TCP_UDP"|"GENEVE"|string;
@@ -1943,7 +1988,7 @@ declare namespace ELBv2 {
1943
1988
  */
1944
1989
  LoadBalancerArn: LoadBalancerArn;
1945
1990
  /**
1946
- * Note: Internal load balancers must use the ipv4 IP address type. [Application Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses), dualstack (for IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (for IPv6 only public addresses, with private IPv4 and IPv6 addresses). [Network Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
1991
+ * Note: Internal load balancers must use the ipv4 IP address type. [Application Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses), dualstack (for IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (for IPv6 only public addresses, with private IPv4 and IPv6 addresses). Note: Application Load Balancer authentication only supports IPv4 addresses when connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public IPv4 address the load balancer cannot complete the authentication process, resulting in HTTP 500 errors. [Network Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
1947
1992
  */
1948
1993
  IpAddressType: IpAddressType;
1949
1994
  }
@@ -2296,6 +2341,7 @@ declare namespace ELBv2 {
2296
2341
  ResourceArn?: TrustStoreAssociationResourceArn;
2297
2342
  }
2298
2343
  export type TrustStoreAssociationResourceArn = string;
2344
+ export type TrustStoreAssociationStatusEnum = "active"|"removed"|string;
2299
2345
  export type TrustStoreAssociations = TrustStoreAssociation[];
2300
2346
  export type TrustStoreName = string;
2301
2347
  export type TrustStoreNames = TrustStoreName[];
@@ -621,11 +621,11 @@ declare class IoTSiteWise extends Service {
621
621
  */
622
622
  updateAsset(callback?: (err: AWSError, data: IoTSiteWise.Types.UpdateAssetResponse) => void): Request<IoTSiteWise.Types.UpdateAssetResponse, AWSError>;
623
623
  /**
624
- * Updates an asset model and all of the assets that were created from the model. Each asset created from the model inherits the updated asset model's property and hierarchy definitions. For more information, see Updating assets and models in the IoT SiteWise User Guide. This operation overwrites the existing model with the provided model. To avoid deleting your asset model's properties or hierarchies, you must include their IDs and definitions in the updated asset model payload. For more information, see DescribeAssetModel. If you remove a property from an asset model, IoT SiteWise deletes all previous data for that property. If you remove a hierarchy definition from an asset model, IoT SiteWise disassociates every asset associated with that hierarchy. You can't change the type or data type of an existing property.
624
+ * Updates an asset model and all of the assets that were created from the model. Each asset created from the model inherits the updated asset model's property and hierarchy definitions. For more information, see Updating assets and models in the IoT SiteWise User Guide. If you remove a property from an asset model, IoT SiteWise deletes all previous data for that property. You can’t change the type or data type of an existing property. To replace an existing asset model property with a new one with the same name, do the following: Submit an UpdateAssetModel request with the entire existing property removed. Submit a second UpdateAssetModel request that includes the new property. The new asset property will have the same name as the previous one and IoT SiteWise will generate a new unique id.
625
625
  */
626
626
  updateAssetModel(params: IoTSiteWise.Types.UpdateAssetModelRequest, callback?: (err: AWSError, data: IoTSiteWise.Types.UpdateAssetModelResponse) => void): Request<IoTSiteWise.Types.UpdateAssetModelResponse, AWSError>;
627
627
  /**
628
- * Updates an asset model and all of the assets that were created from the model. Each asset created from the model inherits the updated asset model's property and hierarchy definitions. For more information, see Updating assets and models in the IoT SiteWise User Guide. This operation overwrites the existing model with the provided model. To avoid deleting your asset model's properties or hierarchies, you must include their IDs and definitions in the updated asset model payload. For more information, see DescribeAssetModel. If you remove a property from an asset model, IoT SiteWise deletes all previous data for that property. If you remove a hierarchy definition from an asset model, IoT SiteWise disassociates every asset associated with that hierarchy. You can't change the type or data type of an existing property.
628
+ * Updates an asset model and all of the assets that were created from the model. Each asset created from the model inherits the updated asset model's property and hierarchy definitions. For more information, see Updating assets and models in the IoT SiteWise User Guide. If you remove a property from an asset model, IoT SiteWise deletes all previous data for that property. You can’t change the type or data type of an existing property. To replace an existing asset model property with a new one with the same name, do the following: Submit an UpdateAssetModel request with the entire existing property removed. Submit a second UpdateAssetModel request that includes the new property. The new asset property will have the same name as the previous one and IoT SiteWise will generate a new unique id.
629
629
  */
630
630
  updateAssetModel(callback?: (err: AWSError, data: IoTSiteWise.Types.UpdateAssetModelResponse) => void): Request<IoTSiteWise.Types.UpdateAssetModelResponse, AWSError>;
631
631
  /**
@@ -1029,7 +1029,7 @@ declare namespace IoTSiteWise {
1029
1029
  export type AssetModelCompositeModelSummaries = AssetModelCompositeModelSummary[];
1030
1030
  export interface AssetModelCompositeModelSummary {
1031
1031
  /**
1032
- * The ID of the the composite model that this summary describes..
1032
+ * The ID of the composite model that this summary describes..
1033
1033
  */
1034
1034
  id: ID;
1035
1035
  /**
@@ -1037,15 +1037,15 @@ declare namespace IoTSiteWise {
1037
1037
  */
1038
1038
  externalId?: ExternalId;
1039
1039
  /**
1040
- * The name of the the composite model that this summary describes..
1040
+ * The name of the composite model that this summary describes..
1041
1041
  */
1042
1042
  name: Name;
1043
1043
  /**
1044
- * The type of asset model. ASSET_MODEL – (default) An asset model that you can use to create assets. Can't be included as a component in another asset model. COMPONENT_MODEL – A reusable component that you can include in the composite models of other asset models. You can't create assets directly from this type of asset model.
1044
+ * The composite model type. Valid values are AWS/ALARM, CUSTOM, or AWS/L4E_ANOMALY.
1045
1045
  */
1046
1046
  type: Name;
1047
1047
  /**
1048
- * The description of the the composite model that this summary describes..
1048
+ * The description of the composite model that this summary describes..
1049
1049
  */
1050
1050
  description?: Description;
1051
1051
  /**
@@ -1932,7 +1932,7 @@ declare namespace IoTSiteWise {
1932
1932
  export type Bucket = string;
1933
1933
  export type CapabilityConfiguration = string;
1934
1934
  export type CapabilityNamespace = string;
1935
- export type CapabilitySyncStatus = "IN_SYNC"|"OUT_OF_SYNC"|"SYNC_FAILED"|"UNKNOWN"|string;
1935
+ export type CapabilitySyncStatus = "IN_SYNC"|"OUT_OF_SYNC"|"SYNC_FAILED"|"UNKNOWN"|"NOT_APPLICABLE"|string;
1936
1936
  export type ClientToken = string;
1937
1937
  export interface ColumnInfo {
1938
1938
  /**
@@ -2077,7 +2077,7 @@ declare namespace IoTSiteWise {
2077
2077
  */
2078
2078
  assetModelCompositeModelDescription?: Description;
2079
2079
  /**
2080
- * A unique, friendly name for the composite model.
2080
+ * A unique name for the composite model.
2081
2081
  */
2082
2082
  assetModelCompositeModelName: Name;
2083
2083
  /**
@@ -2089,11 +2089,11 @@ declare namespace IoTSiteWise {
2089
2089
  */
2090
2090
  clientToken?: ClientToken;
2091
2091
  /**
2092
- * The ID of a composite model on this asset.
2092
+ * The ID of a component model which is reused to create this composite model.
2093
2093
  */
2094
2094
  composedAssetModelId?: CustomID;
2095
2095
  /**
2096
- * The property definitions of the composite model. For more information, see &lt;LINK&gt;. You can specify up to 200 properties per composite model. For more information, see Quotas in the IoT SiteWise User Guide.
2096
+ * The property definitions of the composite model. For more information, see Inline custom composite models in the IoT SiteWise User Guide. You can specify up to 200 properties per composite model. For more information, see Quotas in the IoT SiteWise User Guide.
2097
2097
  */
2098
2098
  assetModelCompositeModelProperties?: AssetModelPropertyDefinitions;
2099
2099
  }
@@ -2110,7 +2110,7 @@ declare namespace IoTSiteWise {
2110
2110
  }
2111
2111
  export interface CreateAssetModelRequest {
2112
2112
  /**
2113
- * A unique, friendly name for the asset model.
2113
+ * A unique name for the asset model.
2114
2114
  */
2115
2115
  assetModelName: Name;
2116
2116
  /**
@@ -2126,7 +2126,7 @@ declare namespace IoTSiteWise {
2126
2126
  */
2127
2127
  assetModelHierarchies?: AssetModelHierarchyDefinitions;
2128
2128
  /**
2129
- * The composite models that are part of this asset model. It groups properties (such as attributes, measurements, transforms, and metrics) and child composite models that model parts of your industrial equipment. Each composite model has a type that defines the properties that the composite model supports. Use composite models to define alarms on this asset model. When creating custom composite models, you need to use CreateAssetModelCompositeModel. For more information, see &lt;LINK&gt;.
2129
+ * The composite models that are part of this asset model. It groups properties (such as attributes, measurements, transforms, and metrics) and child composite models that model parts of your industrial equipment. Each composite model has a type that defines the properties that the composite model supports. Use composite models to define alarms on this asset model. When creating custom composite models, you need to use CreateAssetModelCompositeModel. For more information, see Creating custom composite models (Components) in the IoT SiteWise User Guide.
2130
2130
  */
2131
2131
  assetModelCompositeModels?: AssetModelCompositeModelDefinitions;
2132
2132
  /**
@@ -2290,9 +2290,9 @@ declare namespace IoTSiteWise {
2290
2290
  }
2291
2291
  export interface CreateGatewayRequest {
2292
2292
  /**
2293
- * A unique, friendly name for the gateway.
2293
+ * A unique name for the gateway.
2294
2294
  */
2295
- gatewayName: Name;
2295
+ gatewayName: GatewayName;
2296
2296
  /**
2297
2297
  * The gateway's platform. You can only specify one platform in a gateway.
2298
2298
  */
@@ -3081,7 +3081,7 @@ declare namespace IoTSiteWise {
3081
3081
  /**
3082
3082
  * The name of the gateway.
3083
3083
  */
3084
- gatewayName: Name;
3084
+ gatewayName: GatewayName;
3085
3085
  /**
3086
3086
  * The ARN of the gateway, which has the following format. arn:${Partition}:iotsitewise:${Region}:${Account}:gateway/${GatewayId}
3087
3087
  */
@@ -3491,6 +3491,7 @@ declare namespace IoTSiteWise {
3491
3491
  */
3492
3492
  capabilitySyncStatus: CapabilitySyncStatus;
3493
3493
  }
3494
+ export type GatewayName = string;
3494
3495
  export interface GatewayPlatform {
3495
3496
  /**
3496
3497
  * A gateway that runs on IoT Greengrass.
@@ -3500,6 +3501,10 @@ declare namespace IoTSiteWise {
3500
3501
  * A gateway that runs on IoT Greengrass V2.
3501
3502
  */
3502
3503
  greengrassV2?: GreengrassV2;
3504
+ /**
3505
+ * A SiteWise Edge gateway that runs on a Siemens Industrial Edge Device.
3506
+ */
3507
+ siemensIE?: SiemensIE;
3503
3508
  }
3504
3509
  export type GatewaySummaries = GatewaySummary[];
3505
3510
  export interface GatewaySummary {
@@ -3508,9 +3513,9 @@ declare namespace IoTSiteWise {
3508
3513
  */
3509
3514
  gatewayId: ID;
3510
3515
  /**
3511
- * The name of the asset.
3516
+ * The name of the gateway.
3512
3517
  */
3513
- gatewayName: Name;
3518
+ gatewayName: GatewayName;
3514
3519
  gatewayPlatform?: GatewayPlatform;
3515
3520
  /**
3516
3521
  * A list of gateway capability summaries that each contain a namespace and status. Each gateway capability defines data sources for the gateway. To retrieve a capability configuration's definition, use DescribeGatewayCapabilityConfiguration.
@@ -3717,7 +3722,7 @@ declare namespace IoTSiteWise {
3717
3722
  }
3718
3723
  export interface Greengrass {
3719
3724
  /**
3720
- * The ARN of the Greengrass group. For more information about how to find a group's ARN, see ListGroups and GetGroup in the IoT Greengrass API Reference.
3725
+ * The ARN of the Greengrass group. For more information about how to find a group's ARN, see ListGroups and GetGroup in the IoT Greengrass V1 API Reference.
3721
3726
  */
3722
3727
  groupArn: ARN;
3723
3728
  }
@@ -3805,6 +3810,7 @@ declare namespace IoTSiteWise {
3805
3810
  export type Interval = string;
3806
3811
  export type IntervalInSeconds = number;
3807
3812
  export type IntervalWindowInSeconds = number;
3813
+ export type IotCoreThingName = string;
3808
3814
  export interface JobConfiguration {
3809
3815
  /**
3810
3816
  * The file format of the data in S3.
@@ -4668,6 +4674,12 @@ declare namespace IoTSiteWise {
4668
4674
  export type SSOApplicationId = string;
4669
4675
  export type ScalarType = "BOOLEAN"|"INT"|"DOUBLE"|"TIMESTAMP"|"STRING"|string;
4670
4676
  export type ScalarValue = string;
4677
+ export interface SiemensIE {
4678
+ /**
4679
+ * The name of the IoT Thing for your SiteWise Edge gateway.
4680
+ */
4681
+ iotCoreThingName: IotCoreThingName;
4682
+ }
4671
4683
  export type StorageType = "SITEWISE_DEFAULT_STORAGE"|"MULTI_LAYER_STORAGE"|string;
4672
4684
  export type String = string;
4673
4685
  export type TagKey = string;
@@ -4835,7 +4847,7 @@ declare namespace IoTSiteWise {
4835
4847
  */
4836
4848
  assetModelCompositeModelDescription?: Description;
4837
4849
  /**
4838
- * A unique, friendly name for the composite model.
4850
+ * A unique name for the composite model.
4839
4851
  */
4840
4852
  assetModelCompositeModelName: Name;
4841
4853
  /**
@@ -4843,7 +4855,7 @@ declare namespace IoTSiteWise {
4843
4855
  */
4844
4856
  clientToken?: ClientToken;
4845
4857
  /**
4846
- * The property definitions of the composite model. For more information, see &lt;LINK&gt;. You can specify up to 200 properties per composite model. For more information, see Quotas in the IoT SiteWise User Guide.
4858
+ * The property definitions of the composite model. For more information, see Inline custom composite models in the IoT SiteWise User Guide. You can specify up to 200 properties per composite model. For more information, see Quotas in the IoT SiteWise User Guide.
4847
4859
  */
4848
4860
  assetModelCompositeModelProperties?: AssetModelProperties;
4849
4861
  }
@@ -4860,7 +4872,7 @@ declare namespace IoTSiteWise {
4860
4872
  */
4861
4873
  assetModelId: CustomID;
4862
4874
  /**
4863
- * A unique, friendly name for the asset model.
4875
+ * A unique name for the asset model.
4864
4876
  */
4865
4877
  assetModelName: Name;
4866
4878
  /**
@@ -4876,7 +4888,7 @@ declare namespace IoTSiteWise {
4876
4888
  */
4877
4889
  assetModelHierarchies?: AssetModelHierarchies;
4878
4890
  /**
4879
- * The composite models that are part of this asset model. It groups properties (such as attributes, measurements, transforms, and metrics) and child composite models that model parts of your industrial equipment. Each composite model has a type that defines the properties that the composite model supports. Use composite models to define alarms on this asset model. When creating custom composite models, you need to use CreateAssetModelCompositeModel. For more information, see &lt;LINK&gt;.
4891
+ * The composite models that are part of this asset model. It groups properties (such as attributes, measurements, transforms, and metrics) and child composite models that model parts of your industrial equipment. Each composite model has a type that defines the properties that the composite model supports. Use composite models to define alarms on this asset model. When creating custom composite models, you need to use CreateAssetModelCompositeModel. For more information, see Creating custom composite models (Components) in the IoT SiteWise User Guide.
4880
4892
  */
4881
4893
  assetModelCompositeModels?: AssetModelCompositeModels;
4882
4894
  /**
@@ -5002,9 +5014,9 @@ declare namespace IoTSiteWise {
5002
5014
  */
5003
5015
  gatewayId: ID;
5004
5016
  /**
5005
- * A unique, friendly name for the gateway.
5017
+ * A unique name for the gateway.
5006
5018
  */
5007
- gatewayName: Name;
5019
+ gatewayName: GatewayName;
5008
5020
  }
5009
5021
  export interface UpdatePortalRequest {
5010
5022
  /**
@@ -5095,7 +5107,7 @@ declare namespace IoTSiteWise {
5095
5107
  */
5096
5108
  stringValue?: PropertyValueStringValue;
5097
5109
  /**
5098
- * Asset property data of type integer (number that's greater than or equal to zero).
5110
+ * Asset property data of type integer (whole number).
5099
5111
  */
5100
5112
  integerValue?: PropertyValueIntegerValue;
5101
5113
  /**
@@ -676,7 +676,7 @@ declare namespace MediaPackageV2 {
676
676
  }
677
677
  export interface DeleteOriginEndpointResponse {
678
678
  }
679
- export type DrmSystem = "CLEAR_KEY_AES_128"|"FAIRPLAY"|"PLAYREADY"|"WIDEVINE"|string;
679
+ export type DrmSystem = "CLEAR_KEY_AES_128"|"FAIRPLAY"|"PLAYREADY"|"WIDEVINE"|"IRDETO"|string;
680
680
  export interface Encryption {
681
681
  /**
682
682
  * A 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting content. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).
@@ -160,7 +160,9 @@ declare class MedicalImaging extends Service {
160
160
  declare namespace MedicalImaging {
161
161
  export type Arn = string;
162
162
  export type AwsAccountId = string;
163
+ export type Boolean = boolean;
163
164
  export type ClientToken = string;
165
+ export type CopiableAttributes = string;
164
166
  export interface CopyDestinationImageSet {
165
167
  /**
166
168
  * The image set identifier for the destination image set.
@@ -224,6 +226,10 @@ declare namespace MedicalImaging {
224
226
  * Copy image set information.
225
227
  */
226
228
  copyImageSetInformation: CopyImageSetInformation;
229
+ /**
230
+ * Setting this flag will force the CopyImageSet operation, even if Patient, Study, or Series level metadata are mismatched across the sourceImageSet and destinationImageSet.
231
+ */
232
+ force?: Boolean;
227
233
  }
228
234
  export interface CopyImageSetResponse {
229
235
  /**
@@ -244,6 +250,10 @@ declare namespace MedicalImaging {
244
250
  * The latest version identifier for the source image set.
245
251
  */
246
252
  latestVersionId: ImageSetExternalVersionId;
253
+ /**
254
+ * Contains MetadataCopies structure and wraps information related to specific copy use cases. For example, when copying subsets.
255
+ */
256
+ DICOMCopies?: MetadataCopies;
247
257
  }
248
258
  export interface CopySourceImageSetProperties {
249
259
  /**
@@ -723,6 +733,10 @@ declare namespace MedicalImaging {
723
733
  * The Amazon Resource Name (ARN) assigned to the image set.
724
734
  */
725
735
  imageSetArn?: Arn;
736
+ /**
737
+ * This object contains the details of any overrides used while creating a specific image set version. If an image set was copied or updated using the force flag, this object will contain the forced flag.
738
+ */
739
+ overrides?: Overrides;
726
740
  }
727
741
  export type ImageFrameId = string;
728
742
  export interface ImageFrameInformation {
@@ -767,6 +781,10 @@ declare namespace MedicalImaging {
767
781
  * The error message thrown if an image set action fails.
768
782
  */
769
783
  message?: Message;
784
+ /**
785
+ * Contains details on overrides used when creating the returned version of an image set. For example, if forced exists, the forced flag was used when creating the image set.
786
+ */
787
+ overrides?: Overrides;
770
788
  }
771
789
  export type ImageSetPropertiesList = ImageSetProperties[];
772
790
  export type ImageSetState = "ACTIVE"|"LOCKED"|"DELETED"|string;
@@ -895,14 +913,30 @@ declare namespace MedicalImaging {
895
913
  tags: TagMap;
896
914
  }
897
915
  export type Message = string;
916
+ export interface MetadataCopies {
917
+ /**
918
+ * The JSON string used to specify a subset of SOP Instances to copy from source to destination image set.
919
+ */
920
+ copiableAttributes: CopiableAttributes;
921
+ }
898
922
  export interface MetadataUpdates {
899
923
  /**
900
924
  * The object containing removableAttributes and updatableAttributes.
901
925
  */
902
926
  DICOMUpdates?: DICOMUpdates;
927
+ /**
928
+ * Specifies the previous image set version ID to revert the current image set back to. You must provide either revertToVersionId or DICOMUpdates in your request. A ValidationException error is thrown if both parameters are provided at the same time.
929
+ */
930
+ revertToVersionId?: ImageSetExternalVersionId;
903
931
  }
904
932
  export type NextToken = string;
905
933
  export type Operator = "EQUAL"|"BETWEEN"|string;
934
+ export interface Overrides {
935
+ /**
936
+ * Setting this flag will force the CopyImageSet and UpdateImageSetMetadata operations, even if Patient, Study, or Series level metadata are mismatched.
937
+ */
938
+ forced?: Boolean;
939
+ }
906
940
  export type PayloadBlob = Buffer|Uint8Array|Blob|string|Readable;
907
941
  export type RoleArn = string;
908
942
  export type S3Uri = string;
@@ -1097,6 +1131,10 @@ declare namespace MedicalImaging {
1097
1131
  * The latest image set version identifier.
1098
1132
  */
1099
1133
  latestVersionId: ImageSetExternalVersionId;
1134
+ /**
1135
+ * Setting this flag will force the UpdateImageSetMetadata operation for the following attributes: Tag.StudyInstanceUID, Tag.SeriesInstanceUID, Tag.SOPInstanceUID, and Tag.StudyID Adding, removing, or updating private tags for an individual SOP Instance
1136
+ */
1137
+ force?: Boolean;
1100
1138
  /**
1101
1139
  * Update image set metadata updates.
1102
1140
  */
@@ -52,11 +52,11 @@ declare class NetworkFirewall extends Service {
52
52
  */
53
53
  createRuleGroup(callback?: (err: AWSError, data: NetworkFirewall.Types.CreateRuleGroupResponse) => void): Request<NetworkFirewall.Types.CreateRuleGroupResponse, AWSError>;
54
54
  /**
55
- * Creates an Network Firewall TLS inspection configuration. A TLS inspection configuration contains Certificate Manager certificate associations between and the scope configurations that Network Firewall uses to decrypt and re-encrypt traffic traveling through your firewall. After you create a TLS inspection configuration, you can associate it with a new firewall policy. To update the settings for a TLS inspection configuration, use UpdateTLSInspectionConfiguration. To manage a TLS inspection configuration's tags, use the standard Amazon Web Services resource tagging operations, ListTagsForResource, TagResource, and UntagResource. To retrieve information about TLS inspection configurations, use ListTLSInspectionConfigurations and DescribeTLSInspectionConfiguration. For more information about TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the Network Firewall Developer Guide.
55
+ * Creates an Network Firewall TLS inspection configuration. Network Firewall uses TLS inspection configurations to decrypt your firewall's inbound and outbound SSL/TLS traffic. After decryption, Network Firewall inspects the traffic according to your firewall policy's stateful rules, and then re-encrypts it before sending it to its destination. You can enable inspection of your firewall's inbound traffic, outbound traffic, or both. To use TLS inspection with your firewall, you must first import or provision certificates using ACM, create a TLS inspection configuration, add that configuration to a new firewall policy, and then associate that policy with your firewall. To update the settings for a TLS inspection configuration, use UpdateTLSInspectionConfiguration. To manage a TLS inspection configuration's tags, use the standard Amazon Web Services resource tagging operations, ListTagsForResource, TagResource, and UntagResource. To retrieve information about TLS inspection configurations, use ListTLSInspectionConfigurations and DescribeTLSInspectionConfiguration. For more information about TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the Network Firewall Developer Guide.
56
56
  */
57
57
  createTLSInspectionConfiguration(params: NetworkFirewall.Types.CreateTLSInspectionConfigurationRequest, callback?: (err: AWSError, data: NetworkFirewall.Types.CreateTLSInspectionConfigurationResponse) => void): Request<NetworkFirewall.Types.CreateTLSInspectionConfigurationResponse, AWSError>;
58
58
  /**
59
- * Creates an Network Firewall TLS inspection configuration. A TLS inspection configuration contains Certificate Manager certificate associations between and the scope configurations that Network Firewall uses to decrypt and re-encrypt traffic traveling through your firewall. After you create a TLS inspection configuration, you can associate it with a new firewall policy. To update the settings for a TLS inspection configuration, use UpdateTLSInspectionConfiguration. To manage a TLS inspection configuration's tags, use the standard Amazon Web Services resource tagging operations, ListTagsForResource, TagResource, and UntagResource. To retrieve information about TLS inspection configurations, use ListTLSInspectionConfigurations and DescribeTLSInspectionConfiguration. For more information about TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the Network Firewall Developer Guide.
59
+ * Creates an Network Firewall TLS inspection configuration. Network Firewall uses TLS inspection configurations to decrypt your firewall's inbound and outbound SSL/TLS traffic. After decryption, Network Firewall inspects the traffic according to your firewall policy's stateful rules, and then re-encrypts it before sending it to its destination. You can enable inspection of your firewall's inbound traffic, outbound traffic, or both. To use TLS inspection with your firewall, you must first import or provision certificates using ACM, create a TLS inspection configuration, add that configuration to a new firewall policy, and then associate that policy with your firewall. To update the settings for a TLS inspection configuration, use UpdateTLSInspectionConfiguration. To manage a TLS inspection configuration's tags, use the standard Amazon Web Services resource tagging operations, ListTagsForResource, TagResource, and UntagResource. To retrieve information about TLS inspection configurations, use ListTLSInspectionConfigurations and DescribeTLSInspectionConfiguration. For more information about TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the Network Firewall Developer Guide.
60
60
  */
61
61
  createTLSInspectionConfiguration(callback?: (err: AWSError, data: NetworkFirewall.Types.CreateTLSInspectionConfigurationResponse) => void): Request<NetworkFirewall.Types.CreateTLSInspectionConfigurationResponse, AWSError>;
62
62
  /**
@@ -1305,22 +1305,22 @@ declare namespace NetworkFirewall {
1305
1305
  }
1306
1306
  export interface LogDestinationConfig {
1307
1307
  /**
1308
- * The type of log to send. Alert logs report traffic that matches a StatefulRule with an action setting that sends an alert log message. Flow logs are standard network traffic flow logs.
1308
+ * The type of log to record. You can record the following types of logs from your Network Firewall stateful engine. ALERT - Logs for traffic that matches your stateful rules and that have an action that sends an alert. A stateful rule sends alerts for the rule actions DROP, ALERT, and REJECT. For more information, see StatefulRule. FLOW - Standard network traffic flow logs. The stateful rules engine records flow logs for all network traffic that it receives. Each flow log record captures the network flow for a specific standard stateless rule group. TLS - Logs for events that are related to TLS inspection. For more information, see Inspecting SSL/TLS traffic with TLS inspection configurations in the Network Firewall Developer Guide.
1309
1309
  */
1310
1310
  LogType: LogType;
1311
1311
  /**
1312
- * The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket, a CloudWatch log group, or a Kinesis Data Firehose delivery stream.
1312
+ * The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream.
1313
1313
  */
1314
1314
  LogDestinationType: LogDestinationType;
1315
1315
  /**
1316
- * The named location for the logs, provided in a key:value mapping that is specific to the chosen destination type. For an Amazon S3 bucket, provide the name of the bucket, with key bucketName, and optionally provide a prefix, with key prefix. The following example specifies an Amazon S3 bucket named DOC-EXAMPLE-BUCKET and the prefix alerts: "LogDestination": { "bucketName": "DOC-EXAMPLE-BUCKET", "prefix": "alerts" } For a CloudWatch log group, provide the name of the CloudWatch log group, with key logGroup. The following example specifies a log group named alert-log-group: "LogDestination": { "logGroup": "alert-log-group" } For a Kinesis Data Firehose delivery stream, provide the name of the delivery stream, with key deliveryStream. The following example specifies a delivery stream named alert-delivery-stream: "LogDestination": { "deliveryStream": "alert-delivery-stream" }
1316
+ * The named location for the logs, provided in a key:value mapping that is specific to the chosen destination type. For an Amazon S3 bucket, provide the name of the bucket, with key bucketName, and optionally provide a prefix, with key prefix. The following example specifies an Amazon S3 bucket named DOC-EXAMPLE-BUCKET and the prefix alerts: "LogDestination": { "bucketName": "DOC-EXAMPLE-BUCKET", "prefix": "alerts" } For a CloudWatch log group, provide the name of the CloudWatch log group, with key logGroup. The following example specifies a log group named alert-log-group: "LogDestination": { "logGroup": "alert-log-group" } For a Firehose delivery stream, provide the name of the delivery stream, with key deliveryStream. The following example specifies a delivery stream named alert-delivery-stream: "LogDestination": { "deliveryStream": "alert-delivery-stream" }
1317
1317
  */
1318
1318
  LogDestination: LogDestinationMap;
1319
1319
  }
1320
1320
  export type LogDestinationConfigs = LogDestinationConfig[];
1321
1321
  export type LogDestinationMap = {[key: string]: HashMapValue};
1322
1322
  export type LogDestinationType = "S3"|"CloudWatchLogs"|"KinesisDataFirehose"|string;
1323
- export type LogType = "ALERT"|"FLOW"|string;
1323
+ export type LogType = "ALERT"|"FLOW"|"TLS"|string;
1324
1324
  export interface LoggingConfiguration {
1325
1325
  /**
1326
1326
  * Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups.
@@ -1666,7 +1666,7 @@ declare namespace NetworkFirewall {
1666
1666
  }
1667
1667
  export interface StatefulRule {
1668
1668
  /**
1669
- * Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: PASS - Permits the packets to go to the intended destination. DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. ALERT - Sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with ALERT action, verify in the logs that the rule is filtering as you want, then change the action to DROP.
1669
+ * Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: PASS - Permits the packets to go to the intended destination. DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. ALERT - Sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with ALERT action, verify in the logs that the rule is filtering as you want, then change the action to DROP. REJECT - Drops traffic that matches the conditions of the stateful rule, and sends a TCP reset packet back to sender of the packet. A TCP reset packet is a packet with no payload and an RST bit contained in the TCP header flags. REJECT is available only for TCP traffic. This option doesn't support FTP or IMAP protocols.
1670
1670
  */
1671
1671
  Action: StatefulAction;
1672
1672
  /**
@@ -790,6 +790,10 @@ declare namespace Outposts {
790
790
  export type InstanceTypeCount = number;
791
791
  export interface InstanceTypeItem {
792
792
  InstanceType?: InstanceType;
793
+ /**
794
+ * The number of default VCPUs in an instance type.
795
+ */
796
+ VCPUs?: VCPUCount;
793
797
  }
794
798
  export type InstanceTypeListDefinition = InstanceTypeItem[];
795
799
  export type InstanceTypeName = string;
@@ -1424,6 +1428,7 @@ declare namespace Outposts {
1424
1428
  }
1425
1429
  export type UplinkCount = "UPLINK_COUNT_1"|"UPLINK_COUNT_2"|"UPLINK_COUNT_3"|"UPLINK_COUNT_4"|"UPLINK_COUNT_5"|"UPLINK_COUNT_6"|"UPLINK_COUNT_7"|"UPLINK_COUNT_8"|"UPLINK_COUNT_12"|"UPLINK_COUNT_16"|string;
1426
1430
  export type UplinkGbps = "UPLINK_1G"|"UPLINK_10G"|"UPLINK_40G"|"UPLINK_100G"|string;
1431
+ export type VCPUCount = number;
1427
1432
  export type WireGuardPublicKey = string;
1428
1433
  export type outpostListDefinition = Outpost[];
1429
1434
  export type siteListDefinition = Site[];