aws-sdk 2.1638.0 → 2.1639.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/README.md +1 -1
- package/apis/accessanalyzer-2019-11-01.examples.json +196 -0
- package/apis/accessanalyzer-2019-11-01.min.json +254 -111
- package/apis/accessanalyzer-2019-11-01.paginators.json +6 -0
- package/apis/guardduty-2017-11-28.min.json +429 -124
- package/apis/metadata.json +4 -0
- package/apis/networkmanager-2019-07-05.min.json +277 -175
- package/apis/pca-connector-scep-2018-05-10.examples.json +5 -0
- package/apis/pca-connector-scep-2018-05-10.min.json +456 -0
- package/apis/pca-connector-scep-2018-05-10.paginators.json +16 -0
- package/apis/pca-connector-scep-2018-05-10.waiters2.json +5 -0
- package/apis/sagemaker-2017-07-24.min.json +302 -288
- package/clients/accessanalyzer.d.ts +162 -3
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/guardduty.d.ts +277 -5
- package/clients/networkmanager.d.ts +155 -11
- package/clients/pcaconnectorscep.d.ts +486 -0
- package/clients/pcaconnectorscep.js +19 -0
- package/clients/sagemaker.d.ts +24 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +53 -9
- package/dist/aws-sdk.js +7 -3
- package/dist/aws-sdk.min.js +21 -21
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -862,6 +862,10 @@ declare namespace NetworkManager {
|
|
862
862
|
* The name of the segment attachment.
|
863
863
|
*/
|
864
864
|
SegmentName?: ConstrainedString;
|
865
|
+
/**
|
866
|
+
* The name of the network function group.
|
867
|
+
*/
|
868
|
+
NetworkFunctionGroupName?: NetworkFunctionGroupName;
|
865
869
|
/**
|
866
870
|
* The tags associated with the attachment.
|
867
871
|
*/
|
@@ -870,6 +874,10 @@ declare namespace NetworkManager {
|
|
870
874
|
* The attachment to move from one segment to another.
|
871
875
|
*/
|
872
876
|
ProposedSegmentChange?: ProposedSegmentChange;
|
877
|
+
/**
|
878
|
+
* Describes a proposed change to a network function group associated with the attachment.
|
879
|
+
*/
|
880
|
+
ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange;
|
873
881
|
/**
|
874
882
|
* The timestamp when the attachment was created.
|
875
883
|
*/
|
@@ -903,7 +911,7 @@ declare namespace NetworkManager {
|
|
903
911
|
export type ChangeAction = "ADD"|"MODIFY"|"REMOVE"|string;
|
904
912
|
export type ChangeSetState = "PENDING_GENERATION"|"FAILED_GENERATION"|"READY_TO_EXECUTE"|"EXECUTING"|"EXECUTION_SUCCEEDED"|"OUT_OF_DATE"|string;
|
905
913
|
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;
|
914
|
+
export type ChangeType = "CORE_NETWORK_SEGMENT"|"NETWORK_FUNCTION_GROUP"|"CORE_NETWORK_EDGE"|"ATTACHMENT_MAPPING"|"ATTACHMENT_ROUTE_PROPAGATION"|"ATTACHMENT_ROUTE_STATIC"|"CORE_NETWORK_CONFIGURATION"|"SEGMENTS_CONFIGURATION"|"SEGMENT_ACTIONS_CONFIGURATION"|"ATTACHMENT_POLICIES_CONFIGURATION"|string;
|
907
915
|
export type ClientToken = string;
|
908
916
|
export interface ConnectAttachment {
|
909
917
|
/**
|
@@ -959,7 +967,7 @@ declare namespace NetworkManager {
|
|
959
967
|
*/
|
960
968
|
Tags?: TagList;
|
961
969
|
/**
|
962
|
-
* The subnet ARN for the Connect peer.
|
970
|
+
* The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.
|
963
971
|
*/
|
964
972
|
SubnetArn?: SubnetArn;
|
965
973
|
}
|
@@ -1164,6 +1172,10 @@ declare namespace NetworkManager {
|
|
1164
1172
|
* The segments within a core network.
|
1165
1173
|
*/
|
1166
1174
|
Segments?: CoreNetworkSegmentList;
|
1175
|
+
/**
|
1176
|
+
* The network function groups associated with a core network.
|
1177
|
+
*/
|
1178
|
+
NetworkFunctionGroups?: CoreNetworkNetworkFunctionGroupList;
|
1167
1179
|
/**
|
1168
1180
|
* The edges within a core network.
|
1169
1181
|
*/
|
@@ -1236,6 +1248,10 @@ declare namespace NetworkManager {
|
|
1236
1248
|
* The segment name if the change event is associated with a segment.
|
1237
1249
|
*/
|
1238
1250
|
SegmentName?: ConstrainedString;
|
1251
|
+
/**
|
1252
|
+
* The changed network function group name.
|
1253
|
+
*/
|
1254
|
+
NetworkFunctionGroupName?: ConstrainedString;
|
1239
1255
|
/**
|
1240
1256
|
* The ID of the attachment if the change event is associated with an attachment.
|
1241
1257
|
*/
|
@@ -1251,6 +1267,10 @@ declare namespace NetworkManager {
|
|
1251
1267
|
* The names of the segments in a core network.
|
1252
1268
|
*/
|
1253
1269
|
SegmentName?: ConstrainedString;
|
1270
|
+
/**
|
1271
|
+
* The network function group name if the change event is associated with a network function group.
|
1272
|
+
*/
|
1273
|
+
NetworkFunctionGroupName?: ConstrainedString;
|
1254
1274
|
/**
|
1255
1275
|
* The Regions where edges are located in a core network.
|
1256
1276
|
*/
|
@@ -1275,6 +1295,10 @@ declare namespace NetworkManager {
|
|
1275
1295
|
* The shared segments for a core network change value.
|
1276
1296
|
*/
|
1277
1297
|
SharedSegments?: ConstrainedStringList;
|
1298
|
+
/**
|
1299
|
+
* Describes the service insertion action.
|
1300
|
+
*/
|
1301
|
+
ServiceInsertionActions?: ServiceInsertionActionList;
|
1278
1302
|
}
|
1279
1303
|
export interface CoreNetworkEdge {
|
1280
1304
|
/**
|
@@ -1292,6 +1316,35 @@ declare namespace NetworkManager {
|
|
1292
1316
|
}
|
1293
1317
|
export type CoreNetworkEdgeList = CoreNetworkEdge[];
|
1294
1318
|
export type CoreNetworkId = string;
|
1319
|
+
export interface CoreNetworkNetworkFunctionGroup {
|
1320
|
+
/**
|
1321
|
+
* The name of the network function group.
|
1322
|
+
*/
|
1323
|
+
Name?: ConstrainedString;
|
1324
|
+
/**
|
1325
|
+
* The core network edge locations.
|
1326
|
+
*/
|
1327
|
+
EdgeLocations?: ExternalRegionCodeList;
|
1328
|
+
/**
|
1329
|
+
* The segments associated with the network function group.
|
1330
|
+
*/
|
1331
|
+
Segments?: ServiceInsertionSegments;
|
1332
|
+
}
|
1333
|
+
export interface CoreNetworkNetworkFunctionGroupIdentifier {
|
1334
|
+
/**
|
1335
|
+
* The ID of the core network.
|
1336
|
+
*/
|
1337
|
+
CoreNetworkId?: CoreNetworkId;
|
1338
|
+
/**
|
1339
|
+
* The network function group name.
|
1340
|
+
*/
|
1341
|
+
NetworkFunctionGroupName?: ConstrainedString;
|
1342
|
+
/**
|
1343
|
+
* The location for the core network edge.
|
1344
|
+
*/
|
1345
|
+
EdgeLocation?: ExternalRegionCode;
|
1346
|
+
}
|
1347
|
+
export type CoreNetworkNetworkFunctionGroupList = CoreNetworkNetworkFunctionGroup[];
|
1295
1348
|
export interface CoreNetworkPolicy {
|
1296
1349
|
/**
|
1297
1350
|
* The ID of a core network.
|
@@ -1469,7 +1522,7 @@ declare namespace NetworkManager {
|
|
1469
1522
|
*/
|
1470
1523
|
ConnectAttachmentId: AttachmentId;
|
1471
1524
|
/**
|
1472
|
-
* A Connect peer core network address.
|
1525
|
+
* A Connect peer core network address. This only applies only when the protocol is GRE.
|
1473
1526
|
*/
|
1474
1527
|
CoreNetworkAddress?: IPAddress;
|
1475
1528
|
/**
|
@@ -1477,7 +1530,7 @@ declare namespace NetworkManager {
|
|
1477
1530
|
*/
|
1478
1531
|
PeerAddress: IPAddress;
|
1479
1532
|
/**
|
1480
|
-
* The Connect peer BGP options.
|
1533
|
+
* The Connect peer BGP options. This only applies only when the protocol is GRE.
|
1481
1534
|
*/
|
1482
1535
|
BgpOptions?: BgpOptions;
|
1483
1536
|
/**
|
@@ -1493,7 +1546,7 @@ declare namespace NetworkManager {
|
|
1493
1546
|
*/
|
1494
1547
|
ClientToken?: ClientToken;
|
1495
1548
|
/**
|
1496
|
-
* The subnet ARN for the Connect peer.
|
1549
|
+
* The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.
|
1497
1550
|
*/
|
1498
1551
|
SubnetArn?: SubnetArn;
|
1499
1552
|
}
|
@@ -2141,6 +2194,18 @@ declare namespace NetworkManager {
|
|
2141
2194
|
*/
|
2142
2195
|
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation;
|
2143
2196
|
}
|
2197
|
+
export interface EdgeOverride {
|
2198
|
+
/**
|
2199
|
+
* The list of edge locations.
|
2200
|
+
*/
|
2201
|
+
EdgeSets?: EdgeSetList;
|
2202
|
+
/**
|
2203
|
+
* The edge that should be used when overriding the current edge order.
|
2204
|
+
*/
|
2205
|
+
UseEdge?: ConstrainedString;
|
2206
|
+
}
|
2207
|
+
export type EdgeSet = ConstrainedString[];
|
2208
|
+
export type EdgeSetList = EdgeSet[];
|
2144
2209
|
export interface ExecuteCoreNetworkChangeSetRequest {
|
2145
2210
|
/**
|
2146
2211
|
* The ID of a core network.
|
@@ -2469,7 +2534,7 @@ declare namespace NetworkManager {
|
|
2469
2534
|
*/
|
2470
2535
|
GlobalNetworkId: GlobalNetworkId;
|
2471
2536
|
/**
|
2472
|
-
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: connection device link site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
2537
|
+
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: attachment connect-peer connection core-network device link peering site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
2473
2538
|
*/
|
2474
2539
|
ResourceType?: ConstrainedString;
|
2475
2540
|
/**
|
@@ -2513,7 +2578,7 @@ declare namespace NetworkManager {
|
|
2513
2578
|
*/
|
2514
2579
|
AccountId?: AWSAccountId;
|
2515
2580
|
/**
|
2516
|
-
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: connection device link site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
2581
|
+
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: attachment connect-peer connection core-network device link peering site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
2517
2582
|
*/
|
2518
2583
|
ResourceType?: ConstrainedString;
|
2519
2584
|
/**
|
@@ -2561,7 +2626,7 @@ declare namespace NetworkManager {
|
|
2561
2626
|
*/
|
2562
2627
|
AccountId?: AWSAccountId;
|
2563
2628
|
/**
|
2564
|
-
* The resource type. The following are the supported resource types for Direct Connect: dxcon
|
2629
|
+
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: attachment connect-peer connection core-network device link peering site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
2565
2630
|
*/
|
2566
2631
|
ResourceType?: ConstrainedString;
|
2567
2632
|
/**
|
@@ -2673,7 +2738,7 @@ declare namespace NetworkManager {
|
|
2673
2738
|
*/
|
2674
2739
|
AccountId?: AWSAccountId;
|
2675
2740
|
/**
|
2676
|
-
* The resource type. The following are the supported resource types
|
2741
|
+
* The resource type. The following are the supported resource types: connect-peer transit-gateway-connect-peer vpn-connection
|
2677
2742
|
*/
|
2678
2743
|
ResourceType?: ConstrainedString;
|
2679
2744
|
/**
|
@@ -3155,6 +3220,14 @@ declare namespace NetworkManager {
|
|
3155
3220
|
}
|
3156
3221
|
export type Long = number;
|
3157
3222
|
export type MaxResults = number;
|
3223
|
+
export interface NetworkFunctionGroup {
|
3224
|
+
/**
|
3225
|
+
* The name of the network function group.
|
3226
|
+
*/
|
3227
|
+
Name?: ConstrainedString;
|
3228
|
+
}
|
3229
|
+
export type NetworkFunctionGroupList = NetworkFunctionGroup[];
|
3230
|
+
export type NetworkFunctionGroupName = string;
|
3158
3231
|
export interface NetworkResource {
|
3159
3232
|
/**
|
3160
3233
|
* The ARN of the gateway.
|
@@ -3173,7 +3246,7 @@ declare namespace NetworkManager {
|
|
3173
3246
|
*/
|
3174
3247
|
AccountId?: AWSAccountId;
|
3175
3248
|
/**
|
3176
|
-
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: connection device link site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
3249
|
+
* The resource type. The following are the supported resource types for Direct Connect: dxcon dx-gateway dx-vif The following are the supported resource types for Network Manager: attachment connect-peer connection core-network device link peering site The following are the supported resource types for Amazon VPC: customer-gateway transit-gateway transit-gateway-attachment transit-gateway-connect-peer transit-gateway-route-table vpn-connection
|
3177
3250
|
*/
|
3178
3251
|
ResourceType?: ConstrainedString;
|
3179
3252
|
/**
|
@@ -3275,6 +3348,10 @@ declare namespace NetworkManager {
|
|
3275
3348
|
* The name of the segment.
|
3276
3349
|
*/
|
3277
3350
|
SegmentName?: ConstrainedString;
|
3351
|
+
/**
|
3352
|
+
* The network function group name associated with the destination.
|
3353
|
+
*/
|
3354
|
+
NetworkFunctionGroupName?: ConstrainedString;
|
3278
3355
|
/**
|
3279
3356
|
* The edge location for the network destination.
|
3280
3357
|
*/
|
@@ -3411,6 +3488,20 @@ declare namespace NetworkManager {
|
|
3411
3488
|
export type PeeringList = Peering[];
|
3412
3489
|
export type PeeringState = "CREATING"|"FAILED"|"AVAILABLE"|"DELETING"|string;
|
3413
3490
|
export type PeeringType = "TRANSIT_GATEWAY"|string;
|
3491
|
+
export interface ProposedNetworkFunctionGroupChange {
|
3492
|
+
/**
|
3493
|
+
* The list of proposed changes to the key-value tags associated with the network function group.
|
3494
|
+
*/
|
3495
|
+
Tags?: TagList;
|
3496
|
+
/**
|
3497
|
+
* The proposed new attachment policy rule number for the network function group.
|
3498
|
+
*/
|
3499
|
+
AttachmentPolicyRuleNumber?: Integer;
|
3500
|
+
/**
|
3501
|
+
* The proposed name change for the network function group name.
|
3502
|
+
*/
|
3503
|
+
NetworkFunctionGroupName?: ConstrainedString;
|
3504
|
+
}
|
3414
3505
|
export interface ProposedSegmentChange {
|
3415
3506
|
/**
|
3416
3507
|
* The list of key-value tags that changed for the segment.
|
@@ -3633,12 +3724,47 @@ declare namespace NetworkManager {
|
|
3633
3724
|
* The segment edge in a core network.
|
3634
3725
|
*/
|
3635
3726
|
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
3727
|
+
/**
|
3728
|
+
* The route table identifier associated with the network function group.
|
3729
|
+
*/
|
3730
|
+
CoreNetworkNetworkFunctionGroup?: CoreNetworkNetworkFunctionGroupIdentifier;
|
3636
3731
|
}
|
3637
|
-
export type RouteTableType = "TRANSIT_GATEWAY_ROUTE_TABLE"|"CORE_NETWORK_SEGMENT"|string;
|
3732
|
+
export type RouteTableType = "TRANSIT_GATEWAY_ROUTE_TABLE"|"CORE_NETWORK_SEGMENT"|"NETWORK_FUNCTION_GROUP"|string;
|
3638
3733
|
export type RouteType = "PROPAGATED"|"STATIC"|string;
|
3639
3734
|
export type RouteTypeList = RouteType[];
|
3640
3735
|
export type SLRDeploymentStatus = string;
|
3736
|
+
export type SegmentActionServiceInsertion = "send-via"|"send-to"|string;
|
3737
|
+
export type SendViaMode = "dual-hop"|"single-hop"|string;
|
3641
3738
|
export type ServerSideString = string;
|
3739
|
+
export interface ServiceInsertionAction {
|
3740
|
+
/**
|
3741
|
+
* The action the service insertion takes for traffic. send-via sends east-west traffic between attachments. send-to sends north-south traffic to the security appliance, and then from that to either the Internet or to an on-premesis location.
|
3742
|
+
*/
|
3743
|
+
Action?: SegmentActionServiceInsertion;
|
3744
|
+
/**
|
3745
|
+
* Describes the mode packets take for the send-via action. This is not used when the action is send-to. dual-hop packets traverse attachments in both the source to the destination core network edges. This mode requires that an inspection attachment must be present in all Regions of the service insertion-enabled segments. For single-hop, packets traverse a single intermediate inserted attachment. You can use EdgeOverride to specify a specific edge to use.
|
3746
|
+
*/
|
3747
|
+
Mode?: SendViaMode;
|
3748
|
+
/**
|
3749
|
+
* The list of destination segments if the service insertion action is send-via.
|
3750
|
+
*/
|
3751
|
+
WhenSentTo?: WhenSentTo;
|
3752
|
+
/**
|
3753
|
+
* The list of network function groups and any edge overrides for the chosen service insertion action. Used for both send-to or send-via.
|
3754
|
+
*/
|
3755
|
+
Via?: Via;
|
3756
|
+
}
|
3757
|
+
export type ServiceInsertionActionList = ServiceInsertionAction[];
|
3758
|
+
export interface ServiceInsertionSegments {
|
3759
|
+
/**
|
3760
|
+
* The list of segments associated with the send-via action.
|
3761
|
+
*/
|
3762
|
+
SendVia?: ConstrainedStringList;
|
3763
|
+
/**
|
3764
|
+
* The list of segments associated with the send-to action.
|
3765
|
+
*/
|
3766
|
+
SendTo?: ConstrainedStringList;
|
3767
|
+
}
|
3642
3768
|
export interface Site {
|
3643
3769
|
/**
|
3644
3770
|
* The ID of the site.
|
@@ -4061,6 +4187,16 @@ declare namespace NetworkManager {
|
|
4061
4187
|
*/
|
4062
4188
|
VpcAttachment?: VpcAttachment;
|
4063
4189
|
}
|
4190
|
+
export interface Via {
|
4191
|
+
/**
|
4192
|
+
* The list of network function groups associated with the service insertion action.
|
4193
|
+
*/
|
4194
|
+
NetworkFunctionGroups?: NetworkFunctionGroupList;
|
4195
|
+
/**
|
4196
|
+
* Describes any edge overrides. An edge override is a specific edge to be used for traffic.
|
4197
|
+
*/
|
4198
|
+
WithEdgeOverrides?: WithEdgeOverridesList;
|
4199
|
+
}
|
4064
4200
|
export type VpcArn = string;
|
4065
4201
|
export interface VpcAttachment {
|
4066
4202
|
/**
|
@@ -4087,6 +4223,14 @@ declare namespace NetworkManager {
|
|
4087
4223
|
ApplianceModeSupport?: Boolean;
|
4088
4224
|
}
|
4089
4225
|
export type VpnConnectionArn = string;
|
4226
|
+
export interface WhenSentTo {
|
4227
|
+
/**
|
4228
|
+
* The list of destination segments when the service insertion action is send-to.
|
4229
|
+
*/
|
4230
|
+
WhenSentToSegmentsList?: WhenSentToSegmentsList;
|
4231
|
+
}
|
4232
|
+
export type WhenSentToSegmentsList = ConstrainedString[];
|
4233
|
+
export type WithEdgeOverridesList = EdgeOverride[];
|
4090
4234
|
/**
|
4091
4235
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
4092
4236
|
*/
|