cdk-comprehend-s3olap 2.0.32 → 2.0.35

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.
@@ -123,6 +123,22 @@ declare class NetworkManager extends Service {
123
123
  * Creates an Amazon Web Services site-to-site VPN attachment on an edge location of a core network.
124
124
  */
125
125
  createSiteToSiteVpnAttachment(callback?: (err: AWSError, data: NetworkManager.Types.CreateSiteToSiteVpnAttachmentResponse) => void): Request<NetworkManager.Types.CreateSiteToSiteVpnAttachmentResponse, AWSError>;
126
+ /**
127
+ * Creates a transit gateway peering connection.
128
+ */
129
+ createTransitGatewayPeering(params: NetworkManager.Types.CreateTransitGatewayPeeringRequest, callback?: (err: AWSError, data: NetworkManager.Types.CreateTransitGatewayPeeringResponse) => void): Request<NetworkManager.Types.CreateTransitGatewayPeeringResponse, AWSError>;
130
+ /**
131
+ * Creates a transit gateway peering connection.
132
+ */
133
+ createTransitGatewayPeering(callback?: (err: AWSError, data: NetworkManager.Types.CreateTransitGatewayPeeringResponse) => void): Request<NetworkManager.Types.CreateTransitGatewayPeeringResponse, AWSError>;
134
+ /**
135
+ * Creates a transit gateway route table attachment.
136
+ */
137
+ createTransitGatewayRouteTableAttachment(params: NetworkManager.Types.CreateTransitGatewayRouteTableAttachmentRequest, callback?: (err: AWSError, data: NetworkManager.Types.CreateTransitGatewayRouteTableAttachmentResponse) => void): Request<NetworkManager.Types.CreateTransitGatewayRouteTableAttachmentResponse, AWSError>;
138
+ /**
139
+ * Creates a transit gateway route table attachment.
140
+ */
141
+ createTransitGatewayRouteTableAttachment(callback?: (err: AWSError, data: NetworkManager.Types.CreateTransitGatewayRouteTableAttachmentResponse) => void): Request<NetworkManager.Types.CreateTransitGatewayRouteTableAttachmentResponse, AWSError>;
126
142
  /**
127
143
  * Creates a VPC attachment on an edge location of a core network.
128
144
  */
@@ -195,6 +211,14 @@ declare class NetworkManager extends Service {
195
211
  * Deletes an existing link. You must first disassociate the link from any devices and customer gateways.
196
212
  */
197
213
  deleteLink(callback?: (err: AWSError, data: NetworkManager.Types.DeleteLinkResponse) => void): Request<NetworkManager.Types.DeleteLinkResponse, AWSError>;
214
+ /**
215
+ * Deletes an existing peering connection.
216
+ */
217
+ deletePeering(params: NetworkManager.Types.DeletePeeringRequest, callback?: (err: AWSError, data: NetworkManager.Types.DeletePeeringResponse) => void): Request<NetworkManager.Types.DeletePeeringResponse, AWSError>;
218
+ /**
219
+ * Deletes an existing peering connection.
220
+ */
221
+ deletePeering(callback?: (err: AWSError, data: NetworkManager.Types.DeletePeeringResponse) => void): Request<NetworkManager.Types.DeletePeeringResponse, AWSError>;
198
222
  /**
199
223
  * Deletes a resource policy for the specified resource. This revokes the access of the principals specified in the resource policy.
200
224
  */
@@ -307,6 +331,14 @@ declare class NetworkManager extends Service {
307
331
  * Returns information about the LIVE policy for a core network.
308
332
  */
309
333
  getCoreNetwork(callback?: (err: AWSError, data: NetworkManager.Types.GetCoreNetworkResponse) => void): Request<NetworkManager.Types.GetCoreNetworkResponse, AWSError>;
334
+ /**
335
+ * Returns information about a core network change event.
336
+ */
337
+ getCoreNetworkChangeEvents(params: NetworkManager.Types.GetCoreNetworkChangeEventsRequest, callback?: (err: AWSError, data: NetworkManager.Types.GetCoreNetworkChangeEventsResponse) => void): Request<NetworkManager.Types.GetCoreNetworkChangeEventsResponse, AWSError>;
338
+ /**
339
+ * Returns information about a core network change event.
340
+ */
341
+ getCoreNetworkChangeEvents(callback?: (err: AWSError, data: NetworkManager.Types.GetCoreNetworkChangeEventsResponse) => void): Request<NetworkManager.Types.GetCoreNetworkChangeEventsResponse, AWSError>;
310
342
  /**
311
343
  * Returns a change set between the LIVE core network policy and a submitted policy.
312
344
  */
@@ -316,11 +348,11 @@ declare class NetworkManager extends Service {
316
348
  */
317
349
  getCoreNetworkChangeSet(callback?: (err: AWSError, data: NetworkManager.Types.GetCoreNetworkChangeSetResponse) => void): Request<NetworkManager.Types.GetCoreNetworkChangeSetResponse, AWSError>;
318
350
  /**
319
- * Gets details about a core network policy. You can get details about your current live policy or any previous policy version.
351
+ * Returns details about a core network policy. You can get details about your current live policy or any previous policy version.
320
352
  */
321
353
  getCoreNetworkPolicy(params: NetworkManager.Types.GetCoreNetworkPolicyRequest, callback?: (err: AWSError, data: NetworkManager.Types.GetCoreNetworkPolicyResponse) => void): Request<NetworkManager.Types.GetCoreNetworkPolicyResponse, AWSError>;
322
354
  /**
323
- * Gets details about a core network policy. You can get details about your current live policy or any previous policy version.
355
+ * Returns details about a core network policy. You can get details about your current live policy or any previous policy version.
324
356
  */
325
357
  getCoreNetworkPolicy(callback?: (err: AWSError, data: NetworkManager.Types.GetCoreNetworkPolicyResponse) => void): Request<NetworkManager.Types.GetCoreNetworkPolicyResponse, AWSError>;
326
358
  /**
@@ -435,6 +467,14 @@ declare class NetworkManager extends Service {
435
467
  * Gets information about one or more of your transit gateway Connect peer associations in a global network.
436
468
  */
437
469
  getTransitGatewayConnectPeerAssociations(callback?: (err: AWSError, data: NetworkManager.Types.GetTransitGatewayConnectPeerAssociationsResponse) => void): Request<NetworkManager.Types.GetTransitGatewayConnectPeerAssociationsResponse, AWSError>;
470
+ /**
471
+ * Returns information about a transit gateway peer.
472
+ */
473
+ getTransitGatewayPeering(params: NetworkManager.Types.GetTransitGatewayPeeringRequest, callback?: (err: AWSError, data: NetworkManager.Types.GetTransitGatewayPeeringResponse) => void): Request<NetworkManager.Types.GetTransitGatewayPeeringResponse, AWSError>;
474
+ /**
475
+ * Returns information about a transit gateway peer.
476
+ */
477
+ getTransitGatewayPeering(callback?: (err: AWSError, data: NetworkManager.Types.GetTransitGatewayPeeringResponse) => void): Request<NetworkManager.Types.GetTransitGatewayPeeringResponse, AWSError>;
438
478
  /**
439
479
  * Gets information about the transit gateway registrations in a specified global network.
440
480
  */
@@ -443,6 +483,14 @@ declare class NetworkManager extends Service {
443
483
  * Gets information about the transit gateway registrations in a specified global network.
444
484
  */
445
485
  getTransitGatewayRegistrations(callback?: (err: AWSError, data: NetworkManager.Types.GetTransitGatewayRegistrationsResponse) => void): Request<NetworkManager.Types.GetTransitGatewayRegistrationsResponse, AWSError>;
486
+ /**
487
+ * Returns information about a transit gateway route table attachment.
488
+ */
489
+ getTransitGatewayRouteTableAttachment(params: NetworkManager.Types.GetTransitGatewayRouteTableAttachmentRequest, callback?: (err: AWSError, data: NetworkManager.Types.GetTransitGatewayRouteTableAttachmentResponse) => void): Request<NetworkManager.Types.GetTransitGatewayRouteTableAttachmentResponse, AWSError>;
490
+ /**
491
+ * Returns information about a transit gateway route table attachment.
492
+ */
493
+ getTransitGatewayRouteTableAttachment(callback?: (err: AWSError, data: NetworkManager.Types.GetTransitGatewayRouteTableAttachmentResponse) => void): Request<NetworkManager.Types.GetTransitGatewayRouteTableAttachmentResponse, AWSError>;
446
494
  /**
447
495
  * Returns information about a VPC attachment.
448
496
  */
@@ -484,13 +532,21 @@ declare class NetworkManager extends Service {
484
532
  */
485
533
  listCoreNetworks(callback?: (err: AWSError, data: NetworkManager.Types.ListCoreNetworksResponse) => void): Request<NetworkManager.Types.ListCoreNetworksResponse, AWSError>;
486
534
  /**
487
- *
535
+ * Gets the status of the Service Linked Role (SLR) deployment for the accounts in a given Amazon Web Services Organization.
488
536
  */
489
537
  listOrganizationServiceAccessStatus(params: NetworkManager.Types.ListOrganizationServiceAccessStatusRequest, callback?: (err: AWSError, data: NetworkManager.Types.ListOrganizationServiceAccessStatusResponse) => void): Request<NetworkManager.Types.ListOrganizationServiceAccessStatusResponse, AWSError>;
490
538
  /**
491
- *
539
+ * Gets the status of the Service Linked Role (SLR) deployment for the accounts in a given Amazon Web Services Organization.
492
540
  */
493
541
  listOrganizationServiceAccessStatus(callback?: (err: AWSError, data: NetworkManager.Types.ListOrganizationServiceAccessStatusResponse) => void): Request<NetworkManager.Types.ListOrganizationServiceAccessStatusResponse, AWSError>;
542
+ /**
543
+ * Lists the peerings for a core network.
544
+ */
545
+ listPeerings(params: NetworkManager.Types.ListPeeringsRequest, callback?: (err: AWSError, data: NetworkManager.Types.ListPeeringsResponse) => void): Request<NetworkManager.Types.ListPeeringsResponse, AWSError>;
546
+ /**
547
+ * Lists the peerings for a core network.
548
+ */
549
+ listPeerings(callback?: (err: AWSError, data: NetworkManager.Types.ListPeeringsResponse) => void): Request<NetworkManager.Types.ListPeeringsResponse, AWSError>;
494
550
  /**
495
551
  * Lists the tags for a specified resource.
496
552
  */
@@ -540,11 +596,11 @@ declare class NetworkManager extends Service {
540
596
  */
541
597
  restoreCoreNetworkPolicyVersion(callback?: (err: AWSError, data: NetworkManager.Types.RestoreCoreNetworkPolicyVersionResponse) => void): Request<NetworkManager.Types.RestoreCoreNetworkPolicyVersionResponse, AWSError>;
542
598
  /**
543
- *
599
+ * Enables for the Network Manager service for an Amazon Web Services Organization. This can only be called by a management account within the organization.
544
600
  */
545
601
  startOrganizationServiceAccessUpdate(params: NetworkManager.Types.StartOrganizationServiceAccessUpdateRequest, callback?: (err: AWSError, data: NetworkManager.Types.StartOrganizationServiceAccessUpdateResponse) => void): Request<NetworkManager.Types.StartOrganizationServiceAccessUpdateResponse, AWSError>;
546
602
  /**
547
- *
603
+ * Enables for the Network Manager service for an Amazon Web Services Organization. This can only be called by a management account within the organization.
548
604
  */
549
605
  startOrganizationServiceAccessUpdate(callback?: (err: AWSError, data: NetworkManager.Types.StartOrganizationServiceAccessUpdateResponse) => void): Request<NetworkManager.Types.StartOrganizationServiceAccessUpdateResponse, AWSError>;
550
606
  /**
@@ -662,7 +718,13 @@ declare namespace NetworkManager {
662
718
  }
663
719
  export type AccountId = string;
664
720
  export interface AccountStatus {
721
+ /**
722
+ * The ID of an account within the Amazon Web Services Organization.
723
+ */
665
724
  AccountId?: AccountId;
725
+ /**
726
+ * The status of SLR deployment for the account.
727
+ */
666
728
  SLRDeploymentStatus?: SLRDeploymentStatus;
667
729
  }
668
730
  export type AccountStatusList = AccountStatus[];
@@ -761,7 +823,7 @@ declare namespace NetworkManager {
761
823
  }
762
824
  export interface Attachment {
763
825
  /**
764
- * A core network ID.
826
+ * The ID of a core network.
765
827
  */
766
828
  CoreNetworkId?: CoreNetworkId;
767
829
  /**
@@ -820,7 +882,7 @@ declare namespace NetworkManager {
820
882
  export type AttachmentId = string;
821
883
  export type AttachmentList = Attachment[];
822
884
  export type AttachmentState = "REJECTED"|"PENDING_ATTACHMENT_ACCEPTANCE"|"CREATING"|"FAILED"|"AVAILABLE"|"UPDATING"|"PENDING_NETWORK_UPDATE"|"PENDING_TAG_ACCEPTANCE"|"DELETING"|string;
823
- export type AttachmentType = "CONNECT"|"SITE_TO_SITE_VPN"|"VPC"|string;
885
+ export type AttachmentType = "CONNECT"|"SITE_TO_SITE_VPN"|"VPC"|"TRANSIT_GATEWAY_ROUTE_TABLE"|string;
824
886
  export interface Bandwidth {
825
887
  /**
826
888
  * Upload speed in Mbps.
@@ -840,7 +902,8 @@ declare namespace NetworkManager {
840
902
  export type Boolean = boolean;
841
903
  export type ChangeAction = "ADD"|"MODIFY"|"REMOVE"|string;
842
904
  export type ChangeSetState = "PENDING_GENERATION"|"FAILED_GENERATION"|"READY_TO_EXECUTE"|"EXECUTING"|"EXECUTION_SUCCEEDED"|"OUT_OF_DATE"|string;
843
- export type ChangeType = "CORE_NETWORK_SEGMENT"|"CORE_NETWORK_EDGE"|"ATTACHMENT_MAPPING"|"ATTACHMENT_ROUTE_PROPAGATION"|"ATTACHMENT_ROUTE_STATIC"|string;
905
+ export type ChangeStatus = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"FAILED"|string;
906
+ export type ChangeType = "CORE_NETWORK_SEGMENT"|"CORE_NETWORK_EDGE"|"ATTACHMENT_MAPPING"|"ATTACHMENT_ROUTE_PROPAGATION"|"ATTACHMENT_ROUTE_STATIC"|"CORE_NETWORK_CONFIGURATION"|"SEGMENTS_CONFIGURATION"|"SEGMENT_ACTIONS_CONFIGURATION"|"ATTACHMENT_POLICIES_CONFIGURATION"|string;
844
907
  export type ClientToken = string;
845
908
  export interface ConnectAttachment {
846
909
  /**
@@ -892,7 +955,7 @@ declare namespace NetworkManager {
892
955
  */
893
956
  Configuration?: ConnectPeerConfiguration;
894
957
  /**
895
- * The tags associated with the Connect peer.
958
+ * The list of key-value tags associated with the Connect peer.
896
959
  */
897
960
  Tags?: TagList;
898
961
  }
@@ -990,7 +1053,7 @@ declare namespace NetworkManager {
990
1053
  */
991
1054
  CreatedAt?: DateTime;
992
1055
  /**
993
- * The tags associated with a Connect peer summary.
1056
+ * The list of key-value tags associated with the Connect peer summary.
994
1057
  */
995
1058
  Tags?: TagList;
996
1059
  }
@@ -1098,7 +1161,7 @@ declare namespace NetworkManager {
1098
1161
  */
1099
1162
  Edges?: CoreNetworkEdgeList;
1100
1163
  /**
1101
- * The tags associated with a core network.
1164
+ * The list of key-value tags associated with a core network.
1102
1165
  */
1103
1166
  Tags?: TagList;
1104
1167
  }
@@ -1124,6 +1187,55 @@ declare namespace NetworkManager {
1124
1187
  * The new value for a core network
1125
1188
  */
1126
1189
  NewValues?: CoreNetworkChangeValues;
1190
+ /**
1191
+ * Uniquely identifies the path for a change within the changeset. For example, the IdentifierPath for a core network segment change might be "CORE_NETWORK_SEGMENT/us-east-1/devsegment".
1192
+ */
1193
+ IdentifierPath?: ConstrainedString;
1194
+ }
1195
+ export interface CoreNetworkChangeEvent {
1196
+ /**
1197
+ * Describes the type of change event.
1198
+ */
1199
+ Type?: ChangeType;
1200
+ /**
1201
+ * The action taken for the change event.
1202
+ */
1203
+ Action?: ChangeAction;
1204
+ /**
1205
+ * Uniquely identifies the path for a change within the changeset. For example, the IdentifierPath for a core network segment change might be "CORE_NETWORK_SEGMENT/us-east-1/devsegment".
1206
+ */
1207
+ IdentifierPath?: ConstrainedString;
1208
+ /**
1209
+ * The timestamp for an event change in status.
1210
+ */
1211
+ EventTime?: DateTime;
1212
+ /**
1213
+ * The status of the core network change event.
1214
+ */
1215
+ Status?: ChangeStatus;
1216
+ /**
1217
+ * Details of the change event.
1218
+ */
1219
+ Values?: CoreNetworkChangeEventValues;
1220
+ }
1221
+ export type CoreNetworkChangeEventList = CoreNetworkChangeEvent[];
1222
+ export interface CoreNetworkChangeEventValues {
1223
+ /**
1224
+ * The edge location for the core network change event.
1225
+ */
1226
+ EdgeLocation?: ExternalRegionCode;
1227
+ /**
1228
+ * The segment name if the change event is associated with a segment.
1229
+ */
1230
+ SegmentName?: ConstrainedString;
1231
+ /**
1232
+ * The ID of the attachment if the change event is associated with an attachment.
1233
+ */
1234
+ AttachmentId?: AttachmentId;
1235
+ /**
1236
+ * For a STATIC_ROUTE event, this is the IP address.
1237
+ */
1238
+ Cidr?: ConstrainedString;
1127
1239
  }
1128
1240
  export type CoreNetworkChangeList = CoreNetworkChange[];
1129
1241
  export interface CoreNetworkChangeValues {
@@ -1591,6 +1703,54 @@ declare namespace NetworkManager {
1591
1703
  */
1592
1704
  SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
1593
1705
  }
1706
+ export interface CreateTransitGatewayPeeringRequest {
1707
+ /**
1708
+ * The ID of a core network.
1709
+ */
1710
+ CoreNetworkId: CoreNetworkId;
1711
+ /**
1712
+ * The ARN of the transit gateway for the peering request.
1713
+ */
1714
+ TransitGatewayArn: TransitGatewayArn;
1715
+ /**
1716
+ * The list of key-value tags associated with the request.
1717
+ */
1718
+ Tags?: TagList;
1719
+ /**
1720
+ * The client token associated with the request.
1721
+ */
1722
+ ClientToken?: ClientToken;
1723
+ }
1724
+ export interface CreateTransitGatewayPeeringResponse {
1725
+ /**
1726
+ * Returns information about the transit gateway peering connection request.
1727
+ */
1728
+ TransitGatewayPeering?: TransitGatewayPeering;
1729
+ }
1730
+ export interface CreateTransitGatewayRouteTableAttachmentRequest {
1731
+ /**
1732
+ * The ID of the peer for the
1733
+ */
1734
+ PeeringId: PeeringId;
1735
+ /**
1736
+ * The ARN of the transit gateway route table for the attachment request.
1737
+ */
1738
+ TransitGatewayRouteTableArn: TransitGatewayRouteTableArn;
1739
+ /**
1740
+ * The list of key-value tags associated with the request.
1741
+ */
1742
+ Tags?: TagList;
1743
+ /**
1744
+ * The client token associated with the request.
1745
+ */
1746
+ ClientToken?: ClientToken;
1747
+ }
1748
+ export interface CreateTransitGatewayRouteTableAttachmentResponse {
1749
+ /**
1750
+ * The route table associated with the create transit gateway route table attachment request.
1751
+ */
1752
+ TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
1753
+ }
1594
1754
  export interface CreateVpcAttachmentRequest {
1595
1755
  /**
1596
1756
  * The ID of a core network for the VPC attachment.
@@ -1762,6 +1922,18 @@ declare namespace NetworkManager {
1762
1922
  */
1763
1923
  Link?: Link;
1764
1924
  }
1925
+ export interface DeletePeeringRequest {
1926
+ /**
1927
+ * The ID of the peering connection to delete.
1928
+ */
1929
+ PeeringId: PeeringId;
1930
+ }
1931
+ export interface DeletePeeringResponse {
1932
+ /**
1933
+ * Information about a deleted peering connection.
1934
+ */
1935
+ Peering?: Peering;
1936
+ }
1765
1937
  export interface DeleteResourcePolicyRequest {
1766
1938
  /**
1767
1939
  * The ARN of the policy to delete.
@@ -2059,6 +2231,34 @@ declare namespace NetworkManager {
2059
2231
  */
2060
2232
  NextToken?: NextToken;
2061
2233
  }
2234
+ export interface GetCoreNetworkChangeEventsRequest {
2235
+ /**
2236
+ * The ID of a core network.
2237
+ */
2238
+ CoreNetworkId: CoreNetworkId;
2239
+ /**
2240
+ * The ID of the policy version.
2241
+ */
2242
+ PolicyVersionId: Integer;
2243
+ /**
2244
+ * The maximum number of results to return.
2245
+ */
2246
+ MaxResults?: MaxResults;
2247
+ /**
2248
+ * The token for the next page of results.
2249
+ */
2250
+ NextToken?: NextToken;
2251
+ }
2252
+ export interface GetCoreNetworkChangeEventsResponse {
2253
+ /**
2254
+ * The response to GetCoreNetworkChangeEventsRequest.
2255
+ */
2256
+ CoreNetworkChangeEvents?: CoreNetworkChangeEventList;
2257
+ /**
2258
+ * The token for the next page of results.
2259
+ */
2260
+ NextToken?: NextToken;
2261
+ }
2062
2262
  export interface GetCoreNetworkChangeSetRequest {
2063
2263
  /**
2064
2264
  * The ID of a core network.
@@ -2583,6 +2783,18 @@ declare namespace NetworkManager {
2583
2783
  */
2584
2784
  NextToken?: NextToken;
2585
2785
  }
2786
+ export interface GetTransitGatewayPeeringRequest {
2787
+ /**
2788
+ * The ID of the peering request.
2789
+ */
2790
+ PeeringId: PeeringId;
2791
+ }
2792
+ export interface GetTransitGatewayPeeringResponse {
2793
+ /**
2794
+ * Returns information about a transit gateway peering.
2795
+ */
2796
+ TransitGatewayPeering?: TransitGatewayPeering;
2797
+ }
2586
2798
  export interface GetTransitGatewayRegistrationsRequest {
2587
2799
  /**
2588
2800
  * The ID of the global network.
@@ -2611,6 +2823,18 @@ declare namespace NetworkManager {
2611
2823
  */
2612
2824
  NextToken?: NextToken;
2613
2825
  }
2826
+ export interface GetTransitGatewayRouteTableAttachmentRequest {
2827
+ /**
2828
+ * The ID of the transit gateway route table attachment.
2829
+ */
2830
+ AttachmentId: AttachmentId;
2831
+ }
2832
+ export interface GetTransitGatewayRouteTableAttachmentResponse {
2833
+ /**
2834
+ * Returns information about the transit gateway route table attachment.
2835
+ */
2836
+ TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
2837
+ }
2614
2838
  export interface GetVpcAttachmentRequest {
2615
2839
  /**
2616
2840
  * The ID of the attachment.
@@ -2836,11 +3060,59 @@ declare namespace NetworkManager {
2836
3060
  NextToken?: NextToken;
2837
3061
  }
2838
3062
  export interface ListOrganizationServiceAccessStatusRequest {
3063
+ /**
3064
+ * The maximum number of results to return.
3065
+ */
2839
3066
  MaxResults?: MaxResults;
3067
+ /**
3068
+ * The token for the next page of results.
3069
+ */
2840
3070
  NextToken?: NextToken;
2841
3071
  }
2842
3072
  export interface ListOrganizationServiceAccessStatusResponse {
3073
+ /**
3074
+ * Displays the status of an Amazon Web Services Organization.
3075
+ */
2843
3076
  OrganizationStatus?: OrganizationStatus;
3077
+ /**
3078
+ * The token for the next page of results.
3079
+ */
3080
+ NextToken?: NextToken;
3081
+ }
3082
+ export interface ListPeeringsRequest {
3083
+ /**
3084
+ * The ID of a core network.
3085
+ */
3086
+ CoreNetworkId?: CoreNetworkId;
3087
+ /**
3088
+ * Returns a list of a peering requests.
3089
+ */
3090
+ PeeringType?: PeeringType;
3091
+ /**
3092
+ * Returns a list edge locations for the
3093
+ */
3094
+ EdgeLocation?: ExternalRegionCode;
3095
+ /**
3096
+ * Returns a list of the peering request states.
3097
+ */
3098
+ State?: PeeringState;
3099
+ /**
3100
+ * The maximum number of results to return.
3101
+ */
3102
+ MaxResults?: MaxResults;
3103
+ /**
3104
+ * The token for the next page of results.
3105
+ */
3106
+ NextToken?: NextToken;
3107
+ }
3108
+ export interface ListPeeringsResponse {
3109
+ /**
3110
+ * Lists the transit gateway peerings for the ListPeerings request.
3111
+ */
3112
+ Peerings?: PeeringList;
3113
+ /**
3114
+ * The token for the next page of results.
3115
+ */
2844
3116
  NextToken?: NextToken;
2845
3117
  }
2846
3118
  export interface ListTagsForResourceRequest {
@@ -2877,7 +3149,7 @@ declare namespace NetworkManager {
2877
3149
  */
2878
3150
  RegisteredGatewayArn?: ResourceArn;
2879
3151
  /**
2880
- * a core network ID.
3152
+ * The ID of a core network.
2881
3153
  */
2882
3154
  CoreNetworkId?: CoreNetworkId;
2883
3155
  /**
@@ -3049,9 +3321,21 @@ declare namespace NetworkManager {
3049
3321
  export type OrganizationAwsServiceAccessStatus = string;
3050
3322
  export type OrganizationId = string;
3051
3323
  export interface OrganizationStatus {
3324
+ /**
3325
+ * The ID of an Amazon Web Services Organization.
3326
+ */
3052
3327
  OrganizationId?: OrganizationId;
3328
+ /**
3329
+ * The status of the organization's AWS service access. This will be ENABLED or DISABLED.
3330
+ */
3053
3331
  OrganizationAwsServiceAccessStatus?: OrganizationAwsServiceAccessStatus;
3332
+ /**
3333
+ * The status of the SLR deployment for the account. This will be either SUCCEEDED or IN_PROGRESS.
3334
+ */
3054
3335
  SLRDeploymentStatus?: SLRDeploymentStatus;
3336
+ /**
3337
+ * The current service-linked role (SLR) deployment status for an Amazon Web Services Organization's accounts. This will be either SUCCEEDED or IN_PROGRESS.
3338
+ */
3055
3339
  AccountStatusList?: AccountStatusList;
3056
3340
  }
3057
3341
  export interface PathComponent {
@@ -3069,9 +3353,55 @@ declare namespace NetworkManager {
3069
3353
  DestinationCidrBlock?: ConstrainedString;
3070
3354
  }
3071
3355
  export type PathComponentList = PathComponent[];
3356
+ export interface Peering {
3357
+ /**
3358
+ * The ID of the core network for the peering request.
3359
+ */
3360
+ CoreNetworkId?: CoreNetworkId;
3361
+ /**
3362
+ * The ARN of a core network.
3363
+ */
3364
+ CoreNetworkArn?: CoreNetworkArn;
3365
+ /**
3366
+ * The ID of the peering attachment.
3367
+ */
3368
+ PeeringId?: PeeringId;
3369
+ /**
3370
+ * The ID of the account owner.
3371
+ */
3372
+ OwnerAccountId?: AWSAccountId;
3373
+ /**
3374
+ * The type of peering. This will be TRANSIT_GATEWAY.
3375
+ */
3376
+ PeeringType?: PeeringType;
3377
+ /**
3378
+ * The current state of the peering connection.
3379
+ */
3380
+ State?: PeeringState;
3381
+ /**
3382
+ * The edge location for the peer.
3383
+ */
3384
+ EdgeLocation?: ExternalRegionCode;
3385
+ /**
3386
+ * The resource ARN of the peer.
3387
+ */
3388
+ ResourceArn?: ResourceArn;
3389
+ /**
3390
+ * The list of key-value tags associated with the peering.
3391
+ */
3392
+ Tags?: TagList;
3393
+ /**
3394
+ * The timestamp when the attachment peer was created.
3395
+ */
3396
+ CreatedAt?: DateTime;
3397
+ }
3398
+ export type PeeringId = string;
3399
+ export type PeeringList = Peering[];
3400
+ export type PeeringState = "CREATING"|"FAILED"|"AVAILABLE"|"DELETING"|string;
3401
+ export type PeeringType = "TRANSIT_GATEWAY"|string;
3072
3402
  export interface ProposedSegmentChange {
3073
3403
  /**
3074
- * The key-value tags that changed for the segment.
3404
+ * The list of key-value tags that changed for the segment.
3075
3405
  */
3076
3406
  Tags?: TagList;
3077
3407
  /**
@@ -3347,9 +3677,15 @@ declare namespace NetworkManager {
3347
3677
  VpnConnectionArn?: VpnConnectionArn;
3348
3678
  }
3349
3679
  export interface StartOrganizationServiceAccessUpdateRequest {
3680
+ /**
3681
+ * The action to take for the update request. This can be either ENABLE or DISABLE.
3682
+ */
3350
3683
  Action: Action;
3351
3684
  }
3352
3685
  export interface StartOrganizationServiceAccessUpdateResponse {
3686
+ /**
3687
+ * The status of the service access update request for an Amazon Web Services Organization.
3688
+ */
3353
3689
  OrganizationStatus?: OrganizationStatus;
3354
3690
  }
3355
3691
  export interface StartRouteAnalysisRequest {
@@ -3438,6 +3774,16 @@ declare namespace NetworkManager {
3438
3774
  }
3439
3775
  export type TransitGatewayConnectPeerAssociationList = TransitGatewayConnectPeerAssociation[];
3440
3776
  export type TransitGatewayConnectPeerAssociationState = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"|string;
3777
+ export interface TransitGatewayPeering {
3778
+ /**
3779
+ * Describes a transit gateway peer connection.
3780
+ */
3781
+ Peering?: Peering;
3782
+ /**
3783
+ * The ARN of the transit gateway.
3784
+ */
3785
+ TransitGatewayArn?: TransitGatewayArn;
3786
+ }
3441
3787
  export interface TransitGatewayRegistration {
3442
3788
  /**
3443
3789
  * The ID of the global network.
@@ -3465,6 +3811,17 @@ declare namespace NetworkManager {
3465
3811
  Message?: ConstrainedString;
3466
3812
  }
3467
3813
  export type TransitGatewayRouteTableArn = string;
3814
+ export interface TransitGatewayRouteTableAttachment {
3815
+ Attachment?: Attachment;
3816
+ /**
3817
+ * The ID of the peering attachment.
3818
+ */
3819
+ PeeringId?: PeeringId;
3820
+ /**
3821
+ * The ARN of the transit gateway attachment route table.
3822
+ */
3823
+ TransitGatewayRouteTableArn?: TransitGatewayRouteTableArn;
3824
+ }
3468
3825
  export type TunnelProtocol = "GRE"|string;
3469
3826
  export interface UntagResourceRequest {
3470
3827
  /**
@@ -1140,7 +1140,11 @@ declare namespace Redshift {
1140
1140
  /**
1141
1141
  * The identifier of the snapshot the account is authorized to restore.
1142
1142
  */
1143
- SnapshotIdentifier: String;
1143
+ SnapshotIdentifier?: String;
1144
+ /**
1145
+ * The Amazon Resource Name (ARN) of the snapshot to authorize access to.
1146
+ */
1147
+ SnapshotArn?: String;
1144
1148
  /**
1145
1149
  * The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
1146
1150
  */
@@ -1866,7 +1870,7 @@ declare namespace Redshift {
1866
1870
  */
1867
1871
  HsmConfigurationIdentifier?: String;
1868
1872
  /**
1869
- * The Elastic IP (EIP) address for the cluster. Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.
1873
+ * The Elastic IP (EIP) address for the cluster. You don't have to specify the EIP for a publicly accessible cluster with AvailabilityZoneRelocation turned on. Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.
1870
1874
  */
1871
1875
  ElasticIp?: String;
1872
1876
  /**
@@ -2570,6 +2574,10 @@ declare namespace Redshift {
2570
2574
  * The snapshot identifier of the snapshot about which to return information.
2571
2575
  */
2572
2576
  SnapshotIdentifier?: String;
2577
+ /**
2578
+ * The Amazon Resource Name (ARN) of the snapshot associated with the message to describe cluster snapshots.
2579
+ */
2580
+ SnapshotArn?: String;
2573
2581
  /**
2574
2582
  * The type of snapshots for which you are requesting information. By default, snapshots of all types are returned. Valid Values: automated | manual
2575
2583
  */
@@ -2953,6 +2961,10 @@ declare namespace Redshift {
2953
2961
  * The identifier of the snapshot to evaluate for possible node configurations.
2954
2962
  */
2955
2963
  SnapshotIdentifier?: String;
2964
+ /**
2965
+ * The Amazon Resource Name (ARN) of the snapshot associated with the message to describe node configuration.
2966
+ */
2967
+ SnapshotArn?: String;
2956
2968
  /**
2957
2969
  * The Amazon Web Services account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.
2958
2970
  */
@@ -4810,7 +4822,11 @@ declare namespace Redshift {
4810
4822
  /**
4811
4823
  * The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive. Example: my-snapshot-id
4812
4824
  */
4813
- SnapshotIdentifier: String;
4825
+ SnapshotIdentifier?: String;
4826
+ /**
4827
+ * The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster.
4828
+ */
4829
+ SnapshotArn?: String;
4814
4830
  /**
4815
4831
  * The name of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
4816
4832
  */
@@ -4848,7 +4864,7 @@ declare namespace Redshift {
4848
4864
  */
4849
4865
  HsmConfigurationIdentifier?: String;
4850
4866
  /**
4851
- * The elastic IP (EIP) address for the cluster.
4867
+ * The elastic IP (EIP) address for the cluster. You don't have to specify the EIP for a publicly accessible cluster with AvailabilityZoneRelocation turned on.
4852
4868
  */
4853
4869
  ElasticIp?: String;
4854
4870
  /**
@@ -5069,7 +5085,11 @@ declare namespace Redshift {
5069
5085
  /**
5070
5086
  * The identifier of the snapshot that the account can no longer access.
5071
5087
  */
5072
- SnapshotIdentifier: String;
5088
+ SnapshotIdentifier?: String;
5089
+ /**
5090
+ * The Amazon Resource Name (ARN) of the snapshot associated with the message to revoke access.
5091
+ */
5092
+ SnapshotArn?: String;
5073
5093
  /**
5074
5094
  * The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
5075
5095
  */
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1171.0',
86
+ VERSION: '2.1173.0',
87
87
 
88
88
  /**
89
89
  * @api private