@distilled.cloud/aws 0.25.1 → 0.26.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.
@@ -24222,6 +24222,8 @@ export class InvalidKeyPairNotFound extends S.TaggedErrorClass()("InvalidKeyPair
24222
24222
  }
24223
24223
  export class InvalidLaunchTemplateIdMalformed extends S.TaggedErrorClass()("InvalidLaunchTemplateId.Malformed", {}) {
24224
24224
  }
24225
+ export class InvalidLaunchTemplateIdNotFound extends S.TaggedErrorClass()("InvalidLaunchTemplateId.NotFound", {}) {
24226
+ }
24225
24227
  export class FilterLimitExceeded extends S.TaggedErrorClass()("FilterLimitExceeded", {}).pipe(C.withThrottlingError) {
24226
24228
  }
24227
24229
  export class InvalidOutpostLagIDMalformed extends S.TaggedErrorClass()("InvalidOutpostLagID.Malformed", {}) {
@@ -29944,7 +29946,13 @@ export const describeKeyPairs = /*@__PURE__*/ /*#__PURE__*/ API.make(() => ({
29944
29946
  export const describeLaunchTemplates = /*@__PURE__*/ /*#__PURE__*/ API.makePaginated(() => ({
29945
29947
  input: DescribeLaunchTemplatesRequest,
29946
29948
  output: DescribeLaunchTemplatesResult,
29947
- errors: [RequestLimitExceeded, InvalidLaunchTemplateIdMalformed, ParseError],
29949
+ errors: [
29950
+ RequestLimitExceeded,
29951
+ InvalidLaunchTemplateIdMalformed,
29952
+ ParseError,
29953
+ InvalidLaunchTemplateIdNotFound,
29954
+ InvalidLaunchTemplateNameNotFoundException,
29955
+ ],
29948
29956
  pagination: {
29949
29957
  inputToken: "NextToken",
29950
29958
  outputToken: "NextToken",