aws-sdk 2.980.0 → 2.981.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.
package/clients/ec2.d.ts CHANGED
@@ -8757,10 +8757,6 @@ declare namespace EC2 {
8757
8757
  VpcPeeringConnection?: VpcPeeringConnection;
8758
8758
  }
8759
8759
  export interface CreateVpcRequest {
8760
- /**
8761
- * The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.
8762
- */
8763
- CidrBlock: String;
8764
8760
  /**
8765
8761
  * Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block.
8766
8762
  */
@@ -8789,6 +8785,10 @@ declare namespace EC2 {
8789
8785
  * The tags to assign to the VPC.
8790
8786
  */
8791
8787
  TagSpecifications?: TagSpecificationList;
8788
+ /**
8789
+ * The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.
8790
+ */
8791
+ CidrBlock: String;
8792
8792
  }
8793
8793
  export interface CreateVpcResult {
8794
8794
  /**
@@ -19458,6 +19458,10 @@ declare namespace EC2 {
19458
19458
  * This parameter enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled. If you specify a value of disabled, you will not be able to access your instance metadata.
19459
19459
  */
19460
19460
  HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState;
19461
+ /**
19462
+ * Enables or disables the IPv6 endpoint for the instance metadata service. Default: disabled
19463
+ */
19464
+ HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6;
19461
19465
  }
19462
19466
  export interface LaunchTemplateInstanceMetadataOptionsRequest {
19463
19467
  /**
@@ -19472,8 +19476,13 @@ declare namespace EC2 {
19472
19476
  * This parameter enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled. If you specify a value of disabled, you will not be able to access your instance metadata.
19473
19477
  */
19474
19478
  HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState;
19479
+ /**
19480
+ * Enables or disables the IPv6 endpoint for the instance metadata service. Default: disabled
19481
+ */
19482
+ HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6;
19475
19483
  }
19476
19484
  export type LaunchTemplateInstanceMetadataOptionsState = "pending"|"applied"|string;
19485
+ export type LaunchTemplateInstanceMetadataProtocolIpv6 = "disabled"|"enabled"|string;
19477
19486
  export interface LaunchTemplateInstanceNetworkInterfaceSpecification {
19478
19487
  /**
19479
19488
  * Indicates whether to associate a Carrier IP address with eth0 for a new network interface. Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.
@@ -19536,19 +19545,19 @@ declare namespace EC2 {
19536
19545
  */
19537
19546
  NetworkCardIndex?: Integer;
19538
19547
  /**
19539
- * One or more IPv4 delegated prefixes assigned to the network interface.
19548
+ * One or more IPv4 prefixes assigned to the network interface.
19540
19549
  */
19541
19550
  Ipv4Prefixes?: Ipv4PrefixListResponse;
19542
19551
  /**
19543
- * The number of IPv4 delegated prefixes that AWS automatically assigned to the network interface.
19552
+ * The number of IPv4 prefixes that Amazon Web Services automatically assigned to the network interface.
19544
19553
  */
19545
19554
  Ipv4PrefixCount?: Integer;
19546
19555
  /**
19547
- * One or more IPv6 delegated prefixes assigned to the network interface.
19556
+ * One or more IPv6 prefixes assigned to the network interface.
19548
19557
  */
19549
19558
  Ipv6Prefixes?: Ipv6PrefixListResponse;
19550
19559
  /**
19551
- * The number of IPv6 delegated prefixes that AWS automatically assigned to the network interface.
19560
+ * The number of IPv6 prefixes that Amazon Web Services automatically assigned to the network interface.
19552
19561
  */
19553
19562
  Ipv6PrefixCount?: Integer;
19554
19563
  }
@@ -19615,19 +19624,19 @@ declare namespace EC2 {
19615
19624
  */
19616
19625
  NetworkCardIndex?: Integer;
19617
19626
  /**
19618
- * One or more IPv4 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.
19627
+ * One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.
19619
19628
  */
19620
19629
  Ipv4Prefixes?: Ipv4PrefixList;
19621
19630
  /**
19622
- * The number of IPv4 delegated prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.
19631
+ * The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.
19623
19632
  */
19624
19633
  Ipv4PrefixCount?: Integer;
19625
19634
  /**
19626
- * One or more IPv6 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.
19635
+ * One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.
19627
19636
  */
19628
19637
  Ipv6Prefixes?: Ipv6PrefixList;
19629
19638
  /**
19630
- * The number of IPv6 delegated prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.
19639
+ * The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.
19631
19640
  */
19632
19641
  Ipv6PrefixCount?: Integer;
19633
19642
  }
@@ -23785,7 +23794,7 @@ declare namespace EC2 {
23785
23794
  */
23786
23795
  InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
23787
23796
  /**
23788
- * The Base64-encoded user data to make available to the instance. For more information, see Running Commands on Your Linux Instance at Launch (Linux) and Adding User Data (Windows).
23797
+ * The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see Running Commands on Your Linux Instance at Launch (Linux) or Adding User Data (Windows). If you are creating the launch template for use with Batch, the user data must be provided in the MIME multi-part archive format. For more information, see Amazon EC2 user data in launch templates in the Batch User Guide.
23789
23798
  */
23790
23799
  UserData?: String;
23791
23800
  /**
@@ -373,6 +373,10 @@ declare namespace MediaTailor {
373
373
  * The timestamp of when the channel was created.
374
374
  */
375
375
  CreationTime?: __timestampUnix;
376
+ /**
377
+ * Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.
378
+ */
379
+ FillerSlate?: SlateSource;
376
380
  /**
377
381
  * The timestamp of when the channel was last modified.
378
382
  */
@@ -382,7 +386,7 @@ declare namespace MediaTailor {
382
386
  */
383
387
  Outputs: ResponseOutputs;
384
388
  /**
385
- * The type of playback mode for this channel. Possible values: ONCE or LOOP.
389
+ * The type of playback mode for this channel. LINEAR - Programs play back-to-back only once. LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.
386
390
  */
387
391
  PlaybackMode: __string;
388
392
  /**
@@ -398,12 +402,16 @@ declare namespace MediaTailor {
398
402
  * The identifier for the channel you are working on.
399
403
  */
400
404
  ChannelName: __string;
405
+ /**
406
+ * The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses an LINEAR PlaybackMode.
407
+ */
408
+ FillerSlate?: SlateSource;
401
409
  /**
402
410
  * The channel's output properties.
403
411
  */
404
412
  Outputs: RequestOutputs;
405
413
  /**
406
- * The type of playback mode for this channel. The only supported value is LOOP.
414
+ * The type of playback mode to use for this channel. LINEAR - The programs in the schedule play once back-to-back in the schedule. LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.
407
415
  */
408
416
  PlaybackMode: PlaybackMode;
409
417
  /**
@@ -428,6 +436,10 @@ declare namespace MediaTailor {
428
436
  * The timestamp of when the channel was created.
429
437
  */
430
438
  CreationTime?: __timestampUnix;
439
+ /**
440
+ * Contains information about the slate used to fill gaps between programs in the schedule.
441
+ */
442
+ FillerSlate?: SlateSource;
431
443
  /**
432
444
  * The timestamp of when the channel was last modified.
433
445
  */
@@ -437,7 +449,7 @@ declare namespace MediaTailor {
437
449
  */
438
450
  Outputs?: ResponseOutputs;
439
451
  /**
440
- * The type of playback for this channel. The only supported value is LOOP.
452
+ * The channel's playback mode.
441
453
  */
442
454
  PlaybackMode?: __string;
443
455
  /**
@@ -492,6 +504,10 @@ declare namespace MediaTailor {
492
504
  * The name of the program.
493
505
  */
494
506
  ProgramName?: __string;
507
+ /**
508
+ * The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.
509
+ */
510
+ ScheduledStartTime?: __timestampUnix;
495
511
  /**
496
512
  * The source location name.
497
513
  */
@@ -732,6 +748,10 @@ declare namespace MediaTailor {
732
748
  * The timestamp of when the channel was created.
733
749
  */
734
750
  CreationTime?: __timestampUnix;
751
+ /**
752
+ * Contains information about the slate used to fill gaps between programs in the schedule.
753
+ */
754
+ FillerSlate?: SlateSource;
735
755
  /**
736
756
  * The timestamp of when the channel was last modified.
737
757
  */
@@ -741,7 +761,7 @@ declare namespace MediaTailor {
741
761
  */
742
762
  Outputs?: ResponseOutputs;
743
763
  /**
744
- * The type of playback for this channel. The only supported value is LOOP.
764
+ * The channel's playback mode.
745
765
  */
746
766
  PlaybackMode?: __string;
747
767
  /**
@@ -780,6 +800,10 @@ declare namespace MediaTailor {
780
800
  * The name of the program.
781
801
  */
782
802
  ProgramName?: __string;
803
+ /**
804
+ * The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.
805
+ */
806
+ ScheduledStartTime?: __timestampUnix;
783
807
  /**
784
808
  * The source location name.
785
809
  */
@@ -1236,7 +1260,7 @@ declare namespace MediaTailor {
1236
1260
  */
1237
1261
  VideoContentSourceUrl?: __string;
1238
1262
  }
1239
- export type PlaybackMode = "LOOP"|string;
1263
+ export type PlaybackMode = "LOOP"|"LINEAR"|string;
1240
1264
  export interface PutChannelPolicyRequest {
1241
1265
  /**
1242
1266
  * The identifier for the channel you are working on.
@@ -1473,6 +1497,10 @@ declare namespace MediaTailor {
1473
1497
  * The schedule's ad break properties.
1474
1498
  */
1475
1499
  ScheduleAdBreaks?: __listOfScheduleAdBreak;
1500
+ /**
1501
+ * The type of schedule entry. Valid values: PROGRAM or FILLER_SLATE.
1502
+ */
1503
+ ScheduleEntryType?: ScheduleEntryType;
1476
1504
  /**
1477
1505
  * The name of the source location.
1478
1506
  */
@@ -1482,6 +1510,7 @@ declare namespace MediaTailor {
1482
1510
  */
1483
1511
  VodSourceName: __string;
1484
1512
  }
1513
+ export type ScheduleEntryType = "PROGRAM"|"FILLER_SLATE"|string;
1485
1514
  export interface SecretsManagerAccessTokenConfiguration {
1486
1515
  /**
1487
1516
  * The name of the HTTP header used to supply the access token in requests to the source location.
@@ -1586,7 +1615,7 @@ declare namespace MediaTailor {
1586
1615
  }
1587
1616
  export interface Transition {
1588
1617
  /**
1589
- * The position where this program will be inserted relative to the RelativeProgram. Possible values are: AFTER_PROGRAM, and BEFORE_PROGRAM.
1618
+ * The position where this program will be inserted relative to the RelativePosition.
1590
1619
  */
1591
1620
  RelativePosition: RelativePosition;
1592
1621
  /**
@@ -1594,7 +1623,11 @@ declare namespace MediaTailor {
1594
1623
  */
1595
1624
  RelativeProgram?: __string;
1596
1625
  /**
1597
- * When the program should be played. RELATIVE means that programs will be played back-to-back.
1626
+ * The date and time that the program is scheduled to start, in epoch milliseconds.
1627
+ */
1628
+ ScheduledStartTimeMillis?: __long;
1629
+ /**
1630
+ * Defines when the program plays in the schedule. You can set the value to ABSOLUTE or RELATIVE. ABSOLUTE - The program plays at a specific wall clock time. This setting can only be used for channels using the LINEAR PlaybackMode. Note the following considerations when using ABSOLUTE transitions: If the preceding program in the schedule has a duration that extends past the wall clock time, MediaTailor truncates the preceding program on a common segment boundary. If there are gaps in playback, MediaTailor plays the FillerSlate you configured for your linear channel. RELATIVE - The program is inserted into the schedule either before or after a program that you specify via RelativePosition.
1598
1631
  */
1599
1632
  Type: __string;
1600
1633
  }
@@ -1636,6 +1669,10 @@ declare namespace MediaTailor {
1636
1669
  * The timestamp of when the channel was created.
1637
1670
  */
1638
1671
  CreationTime?: __timestampUnix;
1672
+ /**
1673
+ * Contains information about the slate used to fill gaps between programs in the schedule.
1674
+ */
1675
+ FillerSlate?: SlateSource;
1639
1676
  /**
1640
1677
  * The timestamp of when the channel was last modified.
1641
1678
  */
@@ -1645,7 +1682,7 @@ declare namespace MediaTailor {
1645
1682
  */
1646
1683
  Outputs?: ResponseOutputs;
1647
1684
  /**
1648
- * The type of playback for this channel. The only supported value is LOOP.
1685
+ * The channel's playback mode.
1649
1686
  */
1650
1687
  PlaybackMode?: __string;
1651
1688
  /**
@@ -83,6 +83,14 @@ declare class ServiceCatalogAppRegistry extends Service {
83
83
  * Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException is thrown, avoiding the ABA addressing problem.
84
84
  */
85
85
  getApplication(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.GetApplicationResponse) => void): Request<ServiceCatalogAppRegistry.Types.GetApplicationResponse, AWSError>;
86
+ /**
87
+ * Gets the resource associated with the application.
88
+ */
89
+ getAssociatedResource(params: ServiceCatalogAppRegistry.Types.GetAssociatedResourceRequest, callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.GetAssociatedResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.GetAssociatedResourceResponse, AWSError>;
90
+ /**
91
+ * Gets the resource associated with the application.
92
+ */
93
+ getAssociatedResource(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.GetAssociatedResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.GetAssociatedResourceResponse, AWSError>;
86
94
  /**
87
95
  * Retrieves an attribute group, either by its name or its ID. The attribute group can be specified either by its unique ID or by its name.
88
96
  */
@@ -132,11 +140,11 @@ declare class ServiceCatalogAppRegistry extends Service {
132
140
  */
133
141
  listTagsForResource(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.ListTagsForResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.ListTagsForResourceResponse, AWSError>;
134
142
  /**
135
- * Syncs the resource with what is currently recorded in App registry. Specifically, the resource’s App registry system tags are synced with its associated application. The resource is removed if it is not associated with the application. The caller must have permissions to read and update the resource.
143
+ * Syncs the resource with current AppRegistry records. Specifically, the resource’s AppRegistry system tags sync with its associated application. We remove the resource's AppRegistry system tags if it does not associate with the application. The caller must have permissions to read and update the resource.
136
144
  */
137
145
  syncResource(params: ServiceCatalogAppRegistry.Types.SyncResourceRequest, callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.SyncResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.SyncResourceResponse, AWSError>;
138
146
  /**
139
- * Syncs the resource with what is currently recorded in App registry. Specifically, the resource’s App registry system tags are synced with its associated application. The resource is removed if it is not associated with the application. The caller must have permissions to read and update the resource.
147
+ * Syncs the resource with current AppRegistry records. Specifically, the resource’s AppRegistry system tags sync with its associated application. We remove the resource's AppRegistry system tags if it does not associate with the application. The caller must have permissions to read and update the resource.
140
148
  */
141
149
  syncResource(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.SyncResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.SyncResourceResponse, AWSError>;
142
150
  /**
@@ -502,6 +510,30 @@ declare namespace ServiceCatalogAppRegistry {
502
510
  * Key-value pairs associated with the application.
503
511
  */
504
512
  tags?: Tags;
513
+ /**
514
+ * The information about the integration of the application with other services, such as Resource Groups.
515
+ */
516
+ integrations?: Integrations;
517
+ }
518
+ export interface GetAssociatedResourceRequest {
519
+ /**
520
+ * The name or ID of the application.
521
+ */
522
+ application: ApplicationSpecifier;
523
+ /**
524
+ * The type of resource associated with the application.
525
+ */
526
+ resourceType: ResourceType;
527
+ /**
528
+ * The name or ID of the resource associated with the application.
529
+ */
530
+ resource: ResourceSpecifier;
531
+ }
532
+ export interface GetAssociatedResourceResponse {
533
+ /**
534
+ * The resource associated with the application.
535
+ */
536
+ resource?: Resource;
505
537
  }
506
538
  export interface GetAttributeGroupRequest {
507
539
  /**
@@ -543,6 +575,12 @@ declare namespace ServiceCatalogAppRegistry {
543
575
  */
544
576
  tags?: Tags;
545
577
  }
578
+ export interface Integrations {
579
+ /**
580
+ * The information about the resource group integration.
581
+ */
582
+ resourceGroup?: ResourceGroup;
583
+ }
546
584
  export interface ListApplicationsRequest {
547
585
  /**
548
586
  * The token to use to get the next page of results after a previous API call.
@@ -646,6 +684,39 @@ declare namespace ServiceCatalogAppRegistry {
646
684
  export type MaxResults = number;
647
685
  export type Name = string;
648
686
  export type NextToken = string;
687
+ export interface Resource {
688
+ /**
689
+ * The name of the resource.
690
+ */
691
+ name?: ResourceSpecifier;
692
+ /**
693
+ * The Amazon resource name (ARN) of the resource.
694
+ */
695
+ arn?: StackArn;
696
+ /**
697
+ * The time the resource was associated with the application.
698
+ */
699
+ associationTime?: Timestamp;
700
+ /**
701
+ * The service integration information about the resource.
702
+ */
703
+ integrations?: ResourceIntegrations;
704
+ }
705
+ export interface ResourceGroup {
706
+ /**
707
+ * The state of the propagation process for the resource group. The states includes: CREATING if the resource group is in the process of being created. CREATE_COMPLETE if the resource group was created successfully. CREATE_FAILED if the resource group failed to be created. UPDATING if the resource group is in the process of being updated. UPDATE_COMPLETE if the resource group updated successfully. UPDATE_FAILED if the resource group could not update successfully.
708
+ */
709
+ state?: ResourceGroupState;
710
+ /**
711
+ * The Amazon resource name (ARN) of the resource group.
712
+ */
713
+ arn?: Arn;
714
+ /**
715
+ * The error message that generates when the propagation process for the resource group fails.
716
+ */
717
+ errorMessage?: String;
718
+ }
719
+ export type ResourceGroupState = "CREATING"|"CREATE_COMPLETE"|"CREATE_FAILED"|"UPDATING"|"UPDATE_COMPLETE"|"UPDATE_FAILED"|string;
649
720
  export interface ResourceInfo {
650
721
  /**
651
722
  * The name of the resource.
@@ -656,10 +727,17 @@ declare namespace ServiceCatalogAppRegistry {
656
727
  */
657
728
  arn?: StackArn;
658
729
  }
730
+ export interface ResourceIntegrations {
731
+ /**
732
+ * The information about the integration of Resource Groups.
733
+ */
734
+ resourceGroup?: ResourceGroup;
735
+ }
659
736
  export type ResourceSpecifier = string;
660
737
  export type ResourceType = "CFN_STACK"|string;
661
738
  export type Resources = ResourceInfo[];
662
739
  export type StackArn = string;
740
+ export type String = string;
663
741
  export type SyncAction = "START_SYNC"|"NO_ACTION"|string;
664
742
  export interface SyncResourceRequest {
665
743
  /**
@@ -667,7 +745,7 @@ declare namespace ServiceCatalogAppRegistry {
667
745
  */
668
746
  resourceType: ResourceType;
669
747
  /**
670
- * An entity you can work with and specify with a name or ID. Examples include an Amazon EC2 instance, an AWS CloudFormation stack, or an Amazon S3 bucket.
748
+ * An entity you can work with and specify with a name or ID. Examples include an Amazon EC2 instance, an Amazon Web Services CloudFormation stack, or an Amazon S3 bucket.
671
749
  */
672
750
  resource: ResourceSpecifier;
673
751
  }
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.980.0',
86
+ VERSION: '2.981.0',
87
87
 
88
88
  /**
89
89
  * @api private