cdk-docker-image-deployment 0.0.66 → 0.0.68

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 (46) hide show
  1. package/.jsii +4 -4
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +19 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +2 -1
  8. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +78 -10
  9. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +68 -65
  11. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +20 -8
  12. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +844 -836
  13. package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +354 -87
  14. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +343 -42
  15. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.paginators.json +6 -0
  16. package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +174 -140
  17. package/node_modules/aws-sdk/apis/mediapackage-vod-2018-11-07.min.json +4 -0
  18. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  19. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +459 -139
  20. package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.examples.json +5 -0
  21. package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +624 -0
  22. package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +28 -0
  23. package/node_modules/aws-sdk/clients/acm.d.ts +9 -4
  24. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  25. package/node_modules/aws-sdk/clients/all.js +2 -1
  26. package/node_modules/aws-sdk/clients/billingconductor.d.ts +163 -63
  27. package/node_modules/aws-sdk/clients/connect.d.ts +15 -2
  28. package/node_modules/aws-sdk/clients/connectcases.d.ts +27 -5
  29. package/node_modules/aws-sdk/clients/ec2.d.ts +19 -3
  30. package/node_modules/aws-sdk/clients/fms.d.ts +322 -1
  31. package/node_modules/aws-sdk/clients/groundstation.d.ts +413 -70
  32. package/node_modules/aws-sdk/clients/lightsail.d.ts +85 -17
  33. package/node_modules/aws-sdk/clients/mediapackagevod.d.ts +4 -0
  34. package/node_modules/aws-sdk/clients/opensearch.d.ts +890 -430
  35. package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
  36. package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +693 -0
  37. package/node_modules/aws-sdk/clients/resourceexplorer2.js +18 -0
  38. package/node_modules/aws-sdk/clients/route53.d.ts +4 -4
  39. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  40. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +53 -16
  41. package/node_modules/aws-sdk/dist/aws-sdk.js +921 -905
  42. package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
  43. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  44. package/node_modules/aws-sdk/lib/core.js +1 -1
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/package.json +7 -7
@@ -318,5 +318,6 @@ module.exports = {
318
318
  ControlTower: require('./controltower'),
319
319
  IoTFleetWise: require('./iotfleetwise'),
320
320
  MigrationHubOrchestrator: require('./migrationhuborchestrator'),
321
- ConnectCases: require('./connectcases')
321
+ ConnectCases: require('./connectcases'),
322
+ ResourceExplorer2: require('./resourceexplorer2')
322
323
  };
@@ -100,11 +100,11 @@ declare class Billingconductor extends Service {
100
100
  */
101
101
  deletePricingPlan(callback?: (err: AWSError, data: Billingconductor.Types.DeletePricingPlanOutput) => void): Request<Billingconductor.Types.DeletePricingPlanOutput, AWSError>;
102
102
  /**
103
- * Deletes the pricing rule identified by the input Amazon Resource Name (ARN).
103
+ * Deletes the pricing rule that's identified by the input Amazon Resource Name (ARN).
104
104
  */
105
105
  deletePricingRule(params: Billingconductor.Types.DeletePricingRuleInput, callback?: (err: AWSError, data: Billingconductor.Types.DeletePricingRuleOutput) => void): Request<Billingconductor.Types.DeletePricingRuleOutput, AWSError>;
106
106
  /**
107
- * Deletes the pricing rule identified by the input Amazon Resource Name (ARN).
107
+ * Deletes the pricing rule that's identified by the input Amazon Resource Name (ARN).
108
108
  */
109
109
  deletePricingRule(callback?: (err: AWSError, data: Billingconductor.Types.DeletePricingRuleOutput) => void): Request<Billingconductor.Types.DeletePricingRuleOutput, AWSError>;
110
110
  /**
@@ -124,11 +124,11 @@ declare class Billingconductor extends Service {
124
124
  */
125
125
  disassociatePricingRules(callback?: (err: AWSError, data: Billingconductor.Types.DisassociatePricingRulesOutput) => void): Request<Billingconductor.Types.DisassociatePricingRulesOutput, AWSError>;
126
126
  /**
127
- * Amazon Web Services Billing Conductor is in beta release and is subject to change. Your use of Amazon Web Services Billing Conductor is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This is a paginated call to list linked accounts that are linked to the payer account for the specified time period. If no information is provided, the current billing period is used. The response will optionally include the billing group associated with the linked account.
127
+ * This is a paginated call to list linked accounts that are linked to the payer account for the specified time period. If no information is provided, the current billing period is used. The response will optionally include the billing group that's associated with the linked account.
128
128
  */
129
129
  listAccountAssociations(params: Billingconductor.Types.ListAccountAssociationsInput, callback?: (err: AWSError, data: Billingconductor.Types.ListAccountAssociationsOutput) => void): Request<Billingconductor.Types.ListAccountAssociationsOutput, AWSError>;
130
130
  /**
131
- * Amazon Web Services Billing Conductor is in beta release and is subject to change. Your use of Amazon Web Services Billing Conductor is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This is a paginated call to list linked accounts that are linked to the payer account for the specified time period. If no information is provided, the current billing period is used. The response will optionally include the billing group associated with the linked account.
131
+ * This is a paginated call to list linked accounts that are linked to the payer account for the specified time period. If no information is provided, the current billing period is used. The response will optionally include the billing group that's associated with the linked account.
132
132
  */
133
133
  listAccountAssociations(callback?: (err: AWSError, data: Billingconductor.Types.ListAccountAssociationsOutput) => void): Request<Billingconductor.Types.ListAccountAssociationsOutput, AWSError>;
134
134
  /**
@@ -147,6 +147,14 @@ declare class Billingconductor extends Service {
147
147
  * A paginated call to retrieve a list of billing groups for the given billing period. If you don't provide a billing group, the current billing period is used.
148
148
  */
149
149
  listBillingGroups(callback?: (err: AWSError, data: Billingconductor.Types.ListBillingGroupsOutput) => void): Request<Billingconductor.Types.ListBillingGroupsOutput, AWSError>;
150
+ /**
151
+ * A paginated call to get a list of all custom line item versions.
152
+ */
153
+ listCustomLineItemVersions(params: Billingconductor.Types.ListCustomLineItemVersionsInput, callback?: (err: AWSError, data: Billingconductor.Types.ListCustomLineItemVersionsOutput) => void): Request<Billingconductor.Types.ListCustomLineItemVersionsOutput, AWSError>;
154
+ /**
155
+ * A paginated call to get a list of all custom line item versions.
156
+ */
157
+ listCustomLineItemVersions(callback?: (err: AWSError, data: Billingconductor.Types.ListCustomLineItemVersionsOutput) => void): Request<Billingconductor.Types.ListCustomLineItemVersionsOutput, AWSError>;
150
158
  /**
151
159
  * A paginated call to get a list of all custom line items (FFLIs) for the given billing period. If you don't provide a billing period, the current billing period is used.
152
160
  */
@@ -164,11 +172,11 @@ declare class Billingconductor extends Service {
164
172
  */
165
173
  listPricingPlans(callback?: (err: AWSError, data: Billingconductor.Types.ListPricingPlansOutput) => void): Request<Billingconductor.Types.ListPricingPlansOutput, AWSError>;
166
174
  /**
167
- * A list of the pricing plans associated with a pricing rule.
175
+ * A list of the pricing plans that are associated with a pricing rule.
168
176
  */
169
177
  listPricingPlansAssociatedWithPricingRule(params: Billingconductor.Types.ListPricingPlansAssociatedWithPricingRuleInput, callback?: (err: AWSError, data: Billingconductor.Types.ListPricingPlansAssociatedWithPricingRuleOutput) => void): Request<Billingconductor.Types.ListPricingPlansAssociatedWithPricingRuleOutput, AWSError>;
170
178
  /**
171
- * A list of the pricing plans associated with a pricing rule.
179
+ * A list of the pricing plans that are associated with a pricing rule.
172
180
  */
173
181
  listPricingPlansAssociatedWithPricingRule(callback?: (err: AWSError, data: Billingconductor.Types.ListPricingPlansAssociatedWithPricingRuleOutput) => void): Request<Billingconductor.Types.ListPricingPlansAssociatedWithPricingRuleOutput, AWSError>;
174
182
  /**
@@ -180,19 +188,19 @@ declare class Billingconductor extends Service {
180
188
  */
181
189
  listPricingRules(callback?: (err: AWSError, data: Billingconductor.Types.ListPricingRulesOutput) => void): Request<Billingconductor.Types.ListPricingRulesOutput, AWSError>;
182
190
  /**
183
- * Lists the pricing rules associated with a pricing plan.
191
+ * Lists the pricing rules that are associated with a pricing plan.
184
192
  */
185
193
  listPricingRulesAssociatedToPricingPlan(params: Billingconductor.Types.ListPricingRulesAssociatedToPricingPlanInput, callback?: (err: AWSError, data: Billingconductor.Types.ListPricingRulesAssociatedToPricingPlanOutput) => void): Request<Billingconductor.Types.ListPricingRulesAssociatedToPricingPlanOutput, AWSError>;
186
194
  /**
187
- * Lists the pricing rules associated with a pricing plan.
195
+ * Lists the pricing rules that are associated with a pricing plan.
188
196
  */
189
197
  listPricingRulesAssociatedToPricingPlan(callback?: (err: AWSError, data: Billingconductor.Types.ListPricingRulesAssociatedToPricingPlanOutput) => void): Request<Billingconductor.Types.ListPricingRulesAssociatedToPricingPlanOutput, AWSError>;
190
198
  /**
191
- * List the resources associated to a custom line item.
199
+ * List the resources that are associated to a custom line item.
192
200
  */
193
201
  listResourcesAssociatedToCustomLineItem(params: Billingconductor.Types.ListResourcesAssociatedToCustomLineItemInput, callback?: (err: AWSError, data: Billingconductor.Types.ListResourcesAssociatedToCustomLineItemOutput) => void): Request<Billingconductor.Types.ListResourcesAssociatedToCustomLineItemOutput, AWSError>;
194
202
  /**
195
- * List the resources associated to a custom line item.
203
+ * List the resources that are associated to a custom line item.
196
204
  */
197
205
  listResourcesAssociatedToCustomLineItem(callback?: (err: AWSError, data: Billingconductor.Types.ListResourcesAssociatedToCustomLineItemOutput) => void): Request<Billingconductor.Types.ListResourcesAssociatedToCustomLineItemOutput, AWSError>;
198
206
  /**
@@ -318,20 +326,20 @@ declare namespace Billingconductor {
318
326
  }
319
327
  export interface AssociateResourceError {
320
328
  /**
321
- * The reason the resource association failed.
329
+ * The reason why the resource association failed.
322
330
  */
323
331
  Message?: String;
324
332
  /**
325
- * A static error code that used to classify the type of failure.
333
+ * A static error code that's used to classify the type of failure.
326
334
  */
327
335
  Reason?: AssociateResourceErrorReason;
328
336
  }
329
- export type AssociateResourceErrorReason = "INVALID_ARN"|"SERVICE_LIMIT_EXCEEDED"|"ILLEGAL_CUSTOMLINEITEM"|"INTERNAL_SERVER_EXCEPTION"|string;
337
+ export type AssociateResourceErrorReason = "INVALID_ARN"|"SERVICE_LIMIT_EXCEEDED"|"ILLEGAL_CUSTOMLINEITEM"|"INTERNAL_SERVER_EXCEPTION"|"INVALID_BILLING_PERIOD_RANGE"|string;
330
338
  export interface AssociateResourceResponseElement {
331
339
  /**
332
340
  * The resource ARN that was associated to the custom line item.
333
341
  */
334
- Arn?: CustomLineItemArn;
342
+ Arn?: CustomLineItemAssociationElement;
335
343
  /**
336
344
  * An AssociateResourceError that will populate if the resource association fails.
337
345
  */
@@ -415,7 +423,7 @@ declare namespace Billingconductor {
415
423
  export type BillingGroupList = BillingGroupListElement[];
416
424
  export interface BillingGroupListElement {
417
425
  /**
418
- * The billing group's name.
426
+ * The name of the billing group.
419
427
  */
420
428
  Name?: BillingGroupName;
421
429
  /**
@@ -423,7 +431,7 @@ declare namespace Billingconductor {
423
431
  */
424
432
  Arn?: BillingGroupArn;
425
433
  /**
426
- * The billing group description.
434
+ * The description of the billing group.
427
435
  */
428
436
  Description?: BillingGroupDescription;
429
437
  /**
@@ -436,11 +444,11 @@ declare namespace Billingconductor {
436
444
  */
437
445
  Size?: NumberOfAccounts;
438
446
  /**
439
- * The time the billing group was created.
447
+ * The time when the billing group was created.
440
448
  */
441
449
  CreationTime?: Instant;
442
450
  /**
443
- * The most recent time the billing group was modified.
451
+ * The most recent time when the billing group was modified.
444
452
  */
445
453
  LastModifiedTime?: Instant;
446
454
  /**
@@ -459,7 +467,7 @@ declare namespace Billingconductor {
459
467
  export type ClientToken = string;
460
468
  export interface ComputationPreference {
461
469
  /**
462
- * The Amazon Resource Name (ARN) of the pricing plan used to compute the Amazon Web Services charges for a billing group.
470
+ * The Amazon Resource Name (ARN) of the pricing plan that's used to compute the Amazon Web Services charges for a billing group.
463
471
  */
464
472
  PricingPlanArn: PricingPlanFullArn;
465
473
  }
@@ -485,7 +493,7 @@ declare namespace Billingconductor {
485
493
  */
486
494
  PrimaryAccountId?: AccountId;
487
495
  /**
488
- * The billing group description.
496
+ * The description of the billing group.
489
497
  */
490
498
  Description?: BillingGroupDescription;
491
499
  /**
@@ -541,11 +549,11 @@ declare namespace Billingconductor {
541
549
  */
542
550
  ClientToken?: ClientToken;
543
551
  /**
544
- * The pricing plan name. The names must be unique to each pricing plan.
552
+ * The name of the pricing plan. The names must be unique to each pricing plan.
545
553
  */
546
554
  Name: PricingPlanName;
547
555
  /**
548
- * The pricing plan description.
556
+ * The description of the pricing plan.
549
557
  */
550
558
  Description?: PricingPlanDescription;
551
559
  /**
@@ -565,7 +573,7 @@ declare namespace Billingconductor {
565
573
  }
566
574
  export interface CreatePricingRuleInput {
567
575
  /**
568
- * The token that is needed to support idempotency. Idempotency isn't currently supported, but will be implemented in a future update.
576
+ * The token that's needed to support idempotency. Idempotency isn't currently supported, but will be implemented in a future update.
569
577
  */
570
578
  ClientToken?: ClientToken;
571
579
  /**
@@ -577,7 +585,7 @@ declare namespace Billingconductor {
577
585
  */
578
586
  Description?: PricingRuleDescription;
579
587
  /**
580
- * The scope of pricing rule that indicates if it is globally applicable, or is service-specific.
588
+ * The scope of pricing rule that indicates if it's globally applicable, or it's service-specific.
581
589
  */
582
590
  Scope: PricingRuleScope;
583
591
  /**
@@ -585,7 +593,7 @@ declare namespace Billingconductor {
585
593
  */
586
594
  Type: PricingRuleType;
587
595
  /**
588
- * A percentage modifier applied on the public pricing rates.
596
+ * A percentage modifier that's applied on the public pricing rates.
589
597
  */
590
598
  ModifierPercentage: ModifierPercentage;
591
599
  /**
@@ -619,7 +627,7 @@ declare namespace Billingconductor {
619
627
  /**
620
628
  * The inclusive end billing period that defines a billing period range where a custom line is applied.
621
629
  */
622
- ExclusiveEndBillingPeriod: BillingPeriod;
630
+ ExclusiveEndBillingPeriod?: BillingPeriod;
623
631
  }
624
632
  export interface CustomLineItemChargeDetails {
625
633
  /**
@@ -666,7 +674,7 @@ declare namespace Billingconductor {
666
674
  */
667
675
  Description?: CustomLineItemDescription;
668
676
  /**
669
- * The product code associated with the custom line item.
677
+ * The product code that's associated with the custom line item.
670
678
  */
671
679
  ProductCode?: CustomLineItemProductCode;
672
680
  /**
@@ -678,7 +686,7 @@ declare namespace Billingconductor {
678
686
  */
679
687
  CreationTime?: Instant;
680
688
  /**
681
- * The most recent time the custom line item was modified.
689
+ * The most recent time when the custom line item was modified.
682
690
  */
683
691
  LastModifiedTime?: Instant;
684
692
  /**
@@ -702,9 +710,53 @@ declare namespace Billingconductor {
702
710
  export type CustomLineItemProductCode = string;
703
711
  export type CustomLineItemRelationship = "PARENT"|"CHILD"|string;
704
712
  export type CustomLineItemType = "CREDIT"|"FEE"|string;
713
+ export type CustomLineItemVersionList = CustomLineItemVersionListElement[];
714
+ export interface CustomLineItemVersionListElement {
715
+ /**
716
+ * The name of the custom line item.
717
+ */
718
+ Name?: CustomLineItemName;
719
+ ChargeDetails?: ListCustomLineItemChargeDetails;
720
+ /**
721
+ * The charge value currency of the custom line item.
722
+ */
723
+ CurrencyCode?: CurrencyCode;
724
+ /**
725
+ * The description of the custom line item.
726
+ */
727
+ Description?: CustomLineItemDescription;
728
+ /**
729
+ * The product code that’s associated with the custom line item.
730
+ */
731
+ ProductCode?: CustomLineItemProductCode;
732
+ /**
733
+ * The Amazon Resource Name (ARN) of the billing group that the custom line item applies to.
734
+ */
735
+ BillingGroupArn?: BillingGroupArn;
736
+ /**
737
+ * The time when the custom line item version was created.
738
+ */
739
+ CreationTime?: Instant;
740
+ /**
741
+ * The most recent time that the custom line item version was modified.
742
+ */
743
+ LastModifiedTime?: Instant;
744
+ /**
745
+ * The number of resources that are associated with the custom line item.
746
+ */
747
+ AssociationSize?: NumberOfAssociations;
748
+ /**
749
+ * The start billing period of the custom line item version.
750
+ */
751
+ StartBillingPeriod?: BillingPeriod;
752
+ /**
753
+ * The end billing period of the custom line item version.
754
+ */
755
+ EndBillingPeriod?: BillingPeriod;
756
+ }
705
757
  export interface DeleteBillingGroupInput {
706
758
  /**
707
- * The Amazon Resource Name (ARN) of the billing group you're deleting.
759
+ * The Amazon Resource Name (ARN) of the billing group that you're deleting.
708
760
  */
709
761
  Arn: BillingGroupArn;
710
762
  }
@@ -729,7 +781,7 @@ declare namespace Billingconductor {
729
781
  }
730
782
  export interface DeletePricingPlanInput {
731
783
  /**
732
- * The Amazon Resource Name (ARN) of the pricing plan you're deleting.
784
+ * The Amazon Resource Name (ARN) of the pricing plan that you're deleting.
733
785
  */
734
786
  Arn: PricingPlanArn;
735
787
  }
@@ -741,7 +793,7 @@ declare namespace Billingconductor {
741
793
  }
742
794
  export interface DeletePricingRuleInput {
743
795
  /**
744
- * The Amazon Resource Name (ARN) of the pricing rule you are deleting.
796
+ * The Amazon Resource Name (ARN) of the pricing rule that you are deleting.
745
797
  */
746
798
  Arn: PricingRuleArn;
747
799
  }
@@ -787,9 +839,9 @@ declare namespace Billingconductor {
787
839
  /**
788
840
  * The resource ARN that was disassociated from the custom line item.
789
841
  */
790
- Arn?: CustomLineItemArn;
842
+ Arn?: CustomLineItemAssociationElement;
791
843
  /**
792
- * An AssociateResourceError shown if the resource disassociation fails.
844
+ * An AssociateResourceError that's shown if the resource disassociation fails.
793
845
  */
794
846
  Error?: AssociateResourceError;
795
847
  }
@@ -811,11 +863,11 @@ declare namespace Billingconductor {
811
863
  */
812
864
  BillingPeriod?: BillingPeriod;
813
865
  /**
814
- * The filter on the account ID of the linked account, or any of the following: MONITORED: linked accounts that are associated to billing groups. UNMONITORED: linked accounts that are not associated to billing groups. Billing Group Arn: linked accounts that are associated to the provided billing group Arn.
866
+ * The filter on the account ID of the linked account, or any of the following: MONITORED: linked accounts that are associated to billing groups. UNMONITORED: linked accounts that aren't associated to billing groups. Billing Group Arn: linked accounts that are associated to the provided billing group Arn.
815
867
  */
816
868
  Filters?: ListAccountAssociationsFilter;
817
869
  /**
818
- * The pagination token used on subsequent calls to retrieve accounts.
870
+ * The pagination token that's used on subsequent calls to retrieve accounts.
819
871
  */
820
872
  NextToken?: Token;
821
873
  }
@@ -825,7 +877,7 @@ declare namespace Billingconductor {
825
877
  */
826
878
  LinkedAccounts?: AccountAssociationsList;
827
879
  /**
828
- * The pagination token used on subsequent calls to get accounts.
880
+ * The pagination token that's used on subsequent calls to get accounts.
829
881
  */
830
882
  NextToken?: Token;
831
883
  }
@@ -845,7 +897,7 @@ declare namespace Billingconductor {
845
897
  */
846
898
  MaxResults?: MaxBillingGroupResults;
847
899
  /**
848
- * The pagination token used on subsequent calls to get reports.
900
+ * The pagination token that's used on subsequent calls to get reports.
849
901
  */
850
902
  NextToken?: Token;
851
903
  /**
@@ -859,7 +911,7 @@ declare namespace Billingconductor {
859
911
  */
860
912
  BillingGroupCostReports?: BillingGroupCostReportList;
861
913
  /**
862
- * The pagination token used on subsequent calls to get reports.
914
+ * The pagination token that's used on subsequent calls to get reports.
863
915
  */
864
916
  NextToken?: Token;
865
917
  }
@@ -883,7 +935,7 @@ declare namespace Billingconductor {
883
935
  */
884
936
  MaxResults?: MaxBillingGroupResults;
885
937
  /**
886
- * The pagination token used on subsequent calls to get billing groups.
938
+ * The pagination token that's used on subsequent calls to get billing groups.
887
939
  */
888
940
  NextToken?: Token;
889
941
  /**
@@ -897,7 +949,7 @@ declare namespace Billingconductor {
897
949
  */
898
950
  BillingGroups?: BillingGroupList;
899
951
  /**
900
- * The pagination token used on subsequent calls to get billing groups.
952
+ * The pagination token that's used on subsequent calls to get billing groups.
901
953
  */
902
954
  NextToken?: Token;
903
955
  }
@@ -927,6 +979,50 @@ declare namespace Billingconductor {
927
979
  */
928
980
  PercentageValue: CustomLineItemPercentageChargeValue;
929
981
  }
982
+ export interface ListCustomLineItemVersionsBillingPeriodRangeFilter {
983
+ /**
984
+ * The inclusive start billing period that defines a billing period range where a custom line item version is applied.
985
+ */
986
+ StartBillingPeriod?: BillingPeriod;
987
+ /**
988
+ * The exclusive end billing period that defines a billing period range where a custom line item version is applied.
989
+ */
990
+ EndBillingPeriod?: BillingPeriod;
991
+ }
992
+ export interface ListCustomLineItemVersionsFilter {
993
+ /**
994
+ * The billing period range in which the custom line item version is applied.
995
+ */
996
+ BillingPeriodRange?: ListCustomLineItemVersionsBillingPeriodRangeFilter;
997
+ }
998
+ export interface ListCustomLineItemVersionsInput {
999
+ /**
1000
+ * The Amazon Resource Name (ARN) for the custom line item.
1001
+ */
1002
+ Arn: CustomLineItemArn;
1003
+ /**
1004
+ * The maximum number of custom line item versions to retrieve.
1005
+ */
1006
+ MaxResults?: MaxCustomLineItemResults;
1007
+ /**
1008
+ * The pagination token that's used on subsequent calls to retrieve custom line item versions.
1009
+ */
1010
+ NextToken?: Token;
1011
+ /**
1012
+ * A ListCustomLineItemVersionsFilter that specifies the billing period range in which the custom line item versions are applied.
1013
+ */
1014
+ Filters?: ListCustomLineItemVersionsFilter;
1015
+ }
1016
+ export interface ListCustomLineItemVersionsOutput {
1017
+ /**
1018
+ * A list of CustomLineItemVersionListElements that are received.
1019
+ */
1020
+ CustomLineItemVersions?: CustomLineItemVersionList;
1021
+ /**
1022
+ * The pagination token that's used on subsequent calls to retrieve custom line item versions.
1023
+ */
1024
+ NextToken?: Token;
1025
+ }
930
1026
  export interface ListCustomLineItemsFilter {
931
1027
  /**
932
1028
  * A list of custom line items to retrieve information.
@@ -949,9 +1045,9 @@ declare namespace Billingconductor {
949
1045
  /**
950
1046
  * The maximum number of billing groups to retrieve.
951
1047
  */
952
- MaxResults?: MaxBillingGroupResults;
1048
+ MaxResults?: MaxCustomLineItemResults;
953
1049
  /**
954
- * The pagination token used on subsequent calls to get custom line items (FFLIs).
1050
+ * The pagination token that's used on subsequent calls to get custom line items (FFLIs).
955
1051
  */
956
1052
  NextToken?: Token;
957
1053
  /**
@@ -965,7 +1061,7 @@ declare namespace Billingconductor {
965
1061
  */
966
1062
  CustomLineItems?: CustomLineItemList;
967
1063
  /**
968
- * The pagination token used on subsequent calls to get custom line items (FFLIs).
1064
+ * The pagination token that's used on subsequent calls to get custom line items (FFLIs).
969
1065
  */
970
1066
  NextToken?: Token;
971
1067
  }
@@ -997,7 +1093,7 @@ declare namespace Billingconductor {
997
1093
  */
998
1094
  PricingRuleArn?: PricingRuleArn;
999
1095
  /**
1000
- * The list containing pricing plans associated with the requested pricing rule.
1096
+ * The list containing pricing plans that are associated with the requested pricing rule.
1001
1097
  */
1002
1098
  PricingPlanArns?: PricingPlanArns;
1003
1099
  /**
@@ -1025,7 +1121,7 @@ declare namespace Billingconductor {
1025
1121
  */
1026
1122
  MaxResults?: MaxPricingPlanResults;
1027
1123
  /**
1028
- * The pagination token used on subsequent call to get pricing plans.
1124
+ * The pagination token that's used on subsequent call to get pricing plans.
1029
1125
  */
1030
1126
  NextToken?: Token;
1031
1127
  }
@@ -1039,7 +1135,7 @@ declare namespace Billingconductor {
1039
1135
  */
1040
1136
  PricingPlans?: PricingPlanList;
1041
1137
  /**
1042
- * The pagination token used on subsequent calls to get pricing plans.
1138
+ * The pagination token that's used on subsequent calls to get pricing plans.
1043
1139
  */
1044
1140
  NextToken?: Token;
1045
1141
  }
@@ -1071,7 +1167,7 @@ declare namespace Billingconductor {
1071
1167
  */
1072
1168
  PricingPlanArn?: PricingPlanArn;
1073
1169
  /**
1074
- * A list containing pricing rules associated with the requested pricing plan.
1170
+ * A list containing pricing rules that are associated with the requested pricing plan.
1075
1171
  */
1076
1172
  PricingRuleArns?: PricingRuleArns;
1077
1173
  /**
@@ -1099,7 +1195,7 @@ declare namespace Billingconductor {
1099
1195
  */
1100
1196
  MaxResults?: MaxPricingRuleResults;
1101
1197
  /**
1102
- * The pagination token used on subsequent call to get pricing rules.
1198
+ * The pagination token that's used on subsequent call to get pricing rules.
1103
1199
  */
1104
1200
  NextToken?: Token;
1105
1201
  }
@@ -1113,7 +1209,7 @@ declare namespace Billingconductor {
1113
1209
  */
1114
1210
  PricingRules?: PricingRuleList;
1115
1211
  /**
1116
- * The pagination token used on subsequent calls to get pricing rules.
1212
+ * The pagination token that's used on subsequent calls to get pricing rules.
1117
1213
  */
1118
1214
  NextToken?: Token;
1119
1215
  }
@@ -1137,7 +1233,7 @@ declare namespace Billingconductor {
1137
1233
  */
1138
1234
  MaxResults?: MaxCustomLineItemResults;
1139
1235
  /**
1140
- * (Optional) The pagination token returned by a previous request.
1236
+ * (Optional) The pagination token that's returned by a previous request.
1141
1237
  */
1142
1238
  NextToken?: Token;
1143
1239
  /**
@@ -1168,6 +1264,10 @@ declare namespace Billingconductor {
1168
1264
  * The type of relationship between the custom line item and the associated resource.
1169
1265
  */
1170
1266
  Relationship?: CustomLineItemRelationship;
1267
+ /**
1268
+ * The end billing period of the associated resource.
1269
+ */
1270
+ EndBillingPeriod?: BillingPeriod;
1171
1271
  }
1172
1272
  export type ListResourcesAssociatedToCustomLineItemResponseList = ListResourcesAssociatedToCustomLineItemResponseElement[];
1173
1273
  export interface ListTagsForResourceRequest {
@@ -1212,15 +1312,15 @@ declare namespace Billingconductor {
1212
1312
  */
1213
1313
  Description?: PricingPlanDescription;
1214
1314
  /**
1215
- * The pricing rules count currently associated with this pricing plan list element.
1315
+ * The pricing rules count that's currently associated with this pricing plan list element.
1216
1316
  */
1217
1317
  Size?: NumberOfAssociatedPricingRules;
1218
1318
  /**
1219
- * The time the pricing plan was created.
1319
+ * The time when the pricing plan was created.
1220
1320
  */
1221
1321
  CreationTime?: Instant;
1222
1322
  /**
1223
- * The most recent time the pricing plan was modified.
1323
+ * The most recent time when the pricing plan was modified.
1224
1324
  */
1225
1325
  LastModifiedTime?: Instant;
1226
1326
  }
@@ -1265,11 +1365,11 @@ declare namespace Billingconductor {
1265
1365
  */
1266
1366
  AssociatedPricingPlanCount?: NumberOfPricingPlansAssociatedWith;
1267
1367
  /**
1268
- * The time the pricing rule was created.
1368
+ * The time when the pricing rule was created.
1269
1369
  */
1270
1370
  CreationTime?: Instant;
1271
1371
  /**
1272
- * The most recent time the pricing rule was modified.
1372
+ * The most recent time when the pricing rule was modified.
1273
1373
  */
1274
1374
  LastModifiedTime?: Instant;
1275
1375
  }
@@ -1356,7 +1456,7 @@ declare namespace Billingconductor {
1356
1456
  */
1357
1457
  Size?: NumberOfAccounts;
1358
1458
  /**
1359
- * The most recent time the billing group was modified.
1459
+ * The most recent time when the billing group was modified.
1360
1460
  */
1361
1461
  LastModifiedTime?: Instant;
1362
1462
  /**
@@ -1392,7 +1492,7 @@ declare namespace Billingconductor {
1392
1492
  /**
1393
1493
  * The new name for the custom line item.
1394
1494
  */
1395
- Name?: BillingGroupName;
1495
+ Name?: CustomLineItemName;
1396
1496
  /**
1397
1497
  * The new line item description of the custom line item.
1398
1498
  */
@@ -1425,7 +1525,7 @@ declare namespace Billingconductor {
1425
1525
  */
1426
1526
  ChargeDetails?: ListCustomLineItemChargeDetails;
1427
1527
  /**
1428
- * The most recent time the custom line item was modified.
1528
+ * The most recent time when the custom line item was modified.
1429
1529
  */
1430
1530
  LastModifiedTime?: Instant;
1431
1531
  /**
@@ -1441,7 +1541,7 @@ declare namespace Billingconductor {
1441
1541
  }
1442
1542
  export interface UpdatePricingPlanInput {
1443
1543
  /**
1444
- * The Amazon Resource Name (ARN) of the pricing plan you're updating.
1544
+ * The Amazon Resource Name (ARN) of the pricing plan that you're updating.
1445
1545
  */
1446
1546
  Arn: PricingPlanArn;
1447
1547
  /**
@@ -1449,7 +1549,7 @@ declare namespace Billingconductor {
1449
1549
  */
1450
1550
  Name?: PricingPlanName;
1451
1551
  /**
1452
- * The pricing plan description.
1552
+ * The description of the pricing plan.
1453
1553
  */
1454
1554
  Description?: PricingPlanDescription;
1455
1555
  }
@@ -1467,11 +1567,11 @@ declare namespace Billingconductor {
1467
1567
  */
1468
1568
  Description?: PricingPlanDescription;
1469
1569
  /**
1470
- * The pricing rules count currently associated with this pricing plan list.
1570
+ * The pricing rules count that's currently associated with this pricing plan list.
1471
1571
  */
1472
1572
  Size?: NumberOfAssociatedPricingRules;
1473
1573
  /**
1474
- * The most recent time the pricing plan was modified.
1574
+ * The most recent time when the pricing plan was modified.
1475
1575
  */
1476
1576
  LastModifiedTime?: Instant;
1477
1577
  }
@@ -1511,7 +1611,7 @@ declare namespace Billingconductor {
1511
1611
  */
1512
1612
  Description?: PricingRuleDescription;
1513
1613
  /**
1514
- * The scope of pricing rule that indicates if it is globally applicable, or is service-specific.
1614
+ * The scope of pricing rule that indicates if it's globally applicable, or it's service-specific.
1515
1615
  */
1516
1616
  Scope?: PricingRuleScope;
1517
1617
  /**
@@ -1661,7 +1661,7 @@ declare namespace Connect {
1661
1661
  */
1662
1662
  Tags?: TagMap;
1663
1663
  /**
1664
- * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
1664
+ * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs. Pattern: ^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$
1665
1665
  */
1666
1666
  ClientToken?: ClientToken;
1667
1667
  }
@@ -3303,6 +3303,18 @@ declare namespace Connect {
3303
3303
  * The credentials to use for federation.
3304
3304
  */
3305
3305
  Credentials?: Credentials;
3306
+ /**
3307
+ * The URL to sign into the user's instance.
3308
+ */
3309
+ SignInUrl?: Url;
3310
+ /**
3311
+ * The Amazon Resource Name (ARN) of the user.
3312
+ */
3313
+ UserArn?: ARN;
3314
+ /**
3315
+ * The identifier for the user.
3316
+ */
3317
+ UserId?: AgentResourceId;
3306
3318
  }
3307
3319
  export interface GetMetricDataRequest {
3308
3320
  /**
@@ -5184,7 +5196,7 @@ declare namespace Connect {
5184
5196
  }
5185
5197
  export interface ReplicateInstanceRequest {
5186
5198
  /**
5187
- * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
5199
+ * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance. You can provide the InstanceId, or the entire ARN.
5188
5200
  */
5189
5201
  InstanceId: InstanceIdOrArn;
5190
5202
  /**
@@ -6879,6 +6891,7 @@ declare namespace Connect {
6879
6891
  */
6880
6892
  InstanceId: InstanceId;
6881
6893
  }
6894
+ export type Url = string;
6882
6895
  export interface UrlReference {
6883
6896
  /**
6884
6897
  * Identifier of the URL reference.