aws-sdk 2.1418.0 → 2.1419.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/CHANGELOG.md +12 -1
- package/README.md +1 -1
- package/apis/codecatalyst-2022-09-28.min.json +294 -24
- package/apis/connectcases-2022-10-03.min.json +35 -25
- package/apis/route53resolver-2018-04-01.min.json +201 -62
- package/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +32 -32
- package/apis/sagemaker-2017-07-24.min.json +205 -158
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/apis/securitylake-2018-05-10.min.json +139 -34
- package/apis/transcribe-2017-10-26.min.json +30 -6
- package/clients/codecatalyst.d.ts +264 -7
- package/clients/connectcases.d.ts +15 -4
- package/clients/lexmodelsv2.d.ts +11 -11
- package/clients/route53resolver.d.ts +220 -7
- package/clients/sagemaker.d.ts +88 -10
- package/clients/sagemakerfeaturestoreruntime.d.ts +13 -13
- package/clients/savingsplans.d.ts +1 -1
- package/clients/securitylake.d.ts +93 -11
- package/clients/transcribeservice.d.ts +21 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -67,6 +67,14 @@ declare class Route53Resolver extends Service {
|
|
67
67
|
* Creates an empty DNS Firewall rule group for filtering DNS network traffic in a VPC. You can add rules to the new rule group by calling CreateFirewallRule.
|
68
68
|
*/
|
69
69
|
createFirewallRuleGroup(callback?: (err: AWSError, data: Route53Resolver.Types.CreateFirewallRuleGroupResponse) => void): Request<Route53Resolver.Types.CreateFirewallRuleGroupResponse, AWSError>;
|
70
|
+
/**
|
71
|
+
* Creates an Route 53 Resolver on an Outpost.
|
72
|
+
*/
|
73
|
+
createOutpostResolver(params: Route53Resolver.Types.CreateOutpostResolverRequest, callback?: (err: AWSError, data: Route53Resolver.Types.CreateOutpostResolverResponse) => void): Request<Route53Resolver.Types.CreateOutpostResolverResponse, AWSError>;
|
74
|
+
/**
|
75
|
+
* Creates an Route 53 Resolver on an Outpost.
|
76
|
+
*/
|
77
|
+
createOutpostResolver(callback?: (err: AWSError, data: Route53Resolver.Types.CreateOutpostResolverResponse) => void): Request<Route53Resolver.Types.CreateOutpostResolverResponse, AWSError>;
|
70
78
|
/**
|
71
79
|
* Creates a Resolver endpoint. There are two types of Resolver endpoints, inbound and outbound: An inbound Resolver endpoint forwards DNS queries to the DNS service for a VPC from your network. An outbound Resolver endpoint forwards DNS queries from the DNS service for a VPC to your network.
|
72
80
|
*/
|
@@ -115,6 +123,14 @@ declare class Route53Resolver extends Service {
|
|
115
123
|
* Deletes the specified firewall rule group.
|
116
124
|
*/
|
117
125
|
deleteFirewallRuleGroup(callback?: (err: AWSError, data: Route53Resolver.Types.DeleteFirewallRuleGroupResponse) => void): Request<Route53Resolver.Types.DeleteFirewallRuleGroupResponse, AWSError>;
|
126
|
+
/**
|
127
|
+
* Deletes a Resolver on the Outpost.
|
128
|
+
*/
|
129
|
+
deleteOutpostResolver(params: Route53Resolver.Types.DeleteOutpostResolverRequest, callback?: (err: AWSError, data: Route53Resolver.Types.DeleteOutpostResolverResponse) => void): Request<Route53Resolver.Types.DeleteOutpostResolverResponse, AWSError>;
|
130
|
+
/**
|
131
|
+
* Deletes a Resolver on the Outpost.
|
132
|
+
*/
|
133
|
+
deleteOutpostResolver(callback?: (err: AWSError, data: Route53Resolver.Types.DeleteOutpostResolverResponse) => void): Request<Route53Resolver.Types.DeleteOutpostResolverResponse, AWSError>;
|
118
134
|
/**
|
119
135
|
* Deletes a Resolver endpoint. The effect of deleting a Resolver endpoint depends on whether it's an inbound or an outbound Resolver endpoint: Inbound: DNS queries from your network are no longer routed to the DNS service for the specified VPC. Outbound: DNS queries from a VPC are no longer routed to your network.
|
120
136
|
*/
|
@@ -211,6 +227,14 @@ declare class Route53Resolver extends Service {
|
|
211
227
|
* Returns the Identity and Access Management (Amazon Web Services IAM) policy for sharing the specified rule group. You can use the policy to share the rule group using Resource Access Manager (RAM).
|
212
228
|
*/
|
213
229
|
getFirewallRuleGroupPolicy(callback?: (err: AWSError, data: Route53Resolver.Types.GetFirewallRuleGroupPolicyResponse) => void): Request<Route53Resolver.Types.GetFirewallRuleGroupPolicyResponse, AWSError>;
|
230
|
+
/**
|
231
|
+
* Gets information about a specified Resolver on the Outpost, such as its instance count and type, name, and the current status of the Resolver.
|
232
|
+
*/
|
233
|
+
getOutpostResolver(params: Route53Resolver.Types.GetOutpostResolverRequest, callback?: (err: AWSError, data: Route53Resolver.Types.GetOutpostResolverResponse) => void): Request<Route53Resolver.Types.GetOutpostResolverResponse, AWSError>;
|
234
|
+
/**
|
235
|
+
* Gets information about a specified Resolver on the Outpost, such as its instance count and type, name, and the current status of the Resolver.
|
236
|
+
*/
|
237
|
+
getOutpostResolver(callback?: (err: AWSError, data: Route53Resolver.Types.GetOutpostResolverResponse) => void): Request<Route53Resolver.Types.GetOutpostResolverResponse, AWSError>;
|
214
238
|
/**
|
215
239
|
* Retrieves the behavior configuration of Route 53 Resolver behavior for a single VPC from Amazon Virtual Private Cloud.
|
216
240
|
*/
|
@@ -339,6 +363,14 @@ declare class Route53Resolver extends Service {
|
|
339
363
|
* Retrieves the firewall rules that you have defined for the specified firewall rule group. DNS Firewall uses the rules in a rule group to filter DNS network traffic for a VPC. A single call might return only a partial list of the rules. For information, see MaxResults.
|
340
364
|
*/
|
341
365
|
listFirewallRules(callback?: (err: AWSError, data: Route53Resolver.Types.ListFirewallRulesResponse) => void): Request<Route53Resolver.Types.ListFirewallRulesResponse, AWSError>;
|
366
|
+
/**
|
367
|
+
* Lists all the Resolvers on Outposts that were created using the current Amazon Web Services account.
|
368
|
+
*/
|
369
|
+
listOutpostResolvers(params: Route53Resolver.Types.ListOutpostResolversRequest, callback?: (err: AWSError, data: Route53Resolver.Types.ListOutpostResolversResponse) => void): Request<Route53Resolver.Types.ListOutpostResolversResponse, AWSError>;
|
370
|
+
/**
|
371
|
+
* Lists all the Resolvers on Outposts that were created using the current Amazon Web Services account.
|
372
|
+
*/
|
373
|
+
listOutpostResolvers(callback?: (err: AWSError, data: Route53Resolver.Types.ListOutpostResolversResponse) => void): Request<Route53Resolver.Types.ListOutpostResolversResponse, AWSError>;
|
342
374
|
/**
|
343
375
|
* Retrieves the Resolver configurations that you have defined. Route 53 Resolver uses the configurations to manage DNS resolution behavior for your VPCs.
|
344
376
|
*/
|
@@ -483,6 +515,14 @@ declare class Route53Resolver extends Service {
|
|
483
515
|
* Changes the association of a FirewallRuleGroup with a VPC. The association enables DNS filtering for the VPC.
|
484
516
|
*/
|
485
517
|
updateFirewallRuleGroupAssociation(callback?: (err: AWSError, data: Route53Resolver.Types.UpdateFirewallRuleGroupAssociationResponse) => void): Request<Route53Resolver.Types.UpdateFirewallRuleGroupAssociationResponse, AWSError>;
|
518
|
+
/**
|
519
|
+
* You can use UpdateOutpostResolver to update the instance count, type, or name of a Resolver on an Outpost.
|
520
|
+
*/
|
521
|
+
updateOutpostResolver(params: Route53Resolver.Types.UpdateOutpostResolverRequest, callback?: (err: AWSError, data: Route53Resolver.Types.UpdateOutpostResolverResponse) => void): Request<Route53Resolver.Types.UpdateOutpostResolverResponse, AWSError>;
|
522
|
+
/**
|
523
|
+
* You can use UpdateOutpostResolver to update the instance count, type, or name of a Resolver on an Outpost.
|
524
|
+
*/
|
525
|
+
updateOutpostResolver(callback?: (err: AWSError, data: Route53Resolver.Types.UpdateOutpostResolverResponse) => void): Request<Route53Resolver.Types.UpdateOutpostResolverResponse, AWSError>;
|
486
526
|
/**
|
487
527
|
* Updates the behavior configuration of Route 53 Resolver behavior for a single VPC from Amazon Virtual Private Cloud.
|
488
528
|
*/
|
@@ -703,6 +743,38 @@ declare namespace Route53Resolver {
|
|
703
743
|
*/
|
704
744
|
FirewallRule?: FirewallRule;
|
705
745
|
}
|
746
|
+
export interface CreateOutpostResolverRequest {
|
747
|
+
/**
|
748
|
+
* A unique string that identifies the request and that allows failed requests to be retried without the risk of running the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
|
749
|
+
*/
|
750
|
+
CreatorRequestId: CreatorRequestId;
|
751
|
+
/**
|
752
|
+
* A friendly name that lets you easily find a configuration in the Resolver dashboard in the Route 53 console.
|
753
|
+
*/
|
754
|
+
Name: OutpostResolverName;
|
755
|
+
/**
|
756
|
+
* Number of Amazon EC2 instances for the Resolver on Outpost. The default and minimal value is 4.
|
757
|
+
*/
|
758
|
+
InstanceCount?: InstanceCount;
|
759
|
+
/**
|
760
|
+
* The Amazon EC2 instance type. If you specify this, you must also specify a value for the OutpostArn.
|
761
|
+
*/
|
762
|
+
PreferredInstanceType: OutpostInstanceType;
|
763
|
+
/**
|
764
|
+
* The Amazon Resource Name (ARN) of the Outpost. If you specify this, you must also specify a value for the PreferredInstanceType.
|
765
|
+
*/
|
766
|
+
OutpostArn: OutpostArn;
|
767
|
+
/**
|
768
|
+
* A string that helps identify the Route 53 Resolvers on Outpost.
|
769
|
+
*/
|
770
|
+
Tags?: TagList;
|
771
|
+
}
|
772
|
+
export interface CreateOutpostResolverResponse {
|
773
|
+
/**
|
774
|
+
* Information about the CreateOutpostResolver request, including the status of the request.
|
775
|
+
*/
|
776
|
+
OutpostResolver?: OutpostResolver;
|
777
|
+
}
|
706
778
|
export interface CreateResolverEndpointRequest {
|
707
779
|
/**
|
708
780
|
* A unique string that identifies the request and that allows failed requests to be retried without the risk of running the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
|
@@ -729,9 +801,17 @@ declare namespace Route53Resolver {
|
|
729
801
|
*/
|
730
802
|
Tags?: TagList;
|
731
803
|
/**
|
732
|
-
* For the endpoint type you can choose either IPv4, IPv6
|
804
|
+
* For the endpoint type you can choose either IPv4, IPv6, or dual-stack. A dual-stack endpoint means that it will resolve via both IPv4 and IPv6. This endpoint type is applied to all IP addresses.
|
733
805
|
*/
|
734
806
|
ResolverEndpointType?: ResolverEndpointType;
|
807
|
+
/**
|
808
|
+
* The Amazon Resource Name (ARN) of the Outpost. If you specify this, you must also specify a value for the PreferredInstanceType.
|
809
|
+
*/
|
810
|
+
OutpostArn?: OutpostArn;
|
811
|
+
/**
|
812
|
+
* The instance type. If you specify this, you must also specify a value for the OutpostArn.
|
813
|
+
*/
|
814
|
+
PreferredInstanceType?: OutpostInstanceType;
|
735
815
|
}
|
736
816
|
export interface CreateResolverEndpointResponse {
|
737
817
|
/**
|
@@ -781,7 +861,7 @@ declare namespace Route53Resolver {
|
|
781
861
|
*/
|
782
862
|
DomainName: DomainName;
|
783
863
|
/**
|
784
|
-
* The IPs that you want Resolver to forward DNS queries to. You can specify
|
864
|
+
* The IPs that you want Resolver to forward DNS queries to. You can specify either Ipv4 or Ipv6 addresses but not both in the same rule. Separate IP addresses with a space. TargetIps is available only when the value of Rule type is FORWARD.
|
785
865
|
*/
|
786
866
|
TargetIps?: TargetList;
|
787
867
|
/**
|
@@ -840,6 +920,18 @@ declare namespace Route53Resolver {
|
|
840
920
|
*/
|
841
921
|
FirewallRule?: FirewallRule;
|
842
922
|
}
|
923
|
+
export interface DeleteOutpostResolverRequest {
|
924
|
+
/**
|
925
|
+
* A unique string that identifies the Resolver on the Outpost.
|
926
|
+
*/
|
927
|
+
Id: ResourceId;
|
928
|
+
}
|
929
|
+
export interface DeleteOutpostResolverResponse {
|
930
|
+
/**
|
931
|
+
* Information about the DeleteOutpostResolver request, including the status of the request.
|
932
|
+
*/
|
933
|
+
OutpostResolver?: OutpostResolver;
|
934
|
+
}
|
843
935
|
export interface DeleteResolverEndpointRequest {
|
844
936
|
/**
|
845
937
|
* The ID of the Resolver endpoint that you want to delete.
|
@@ -1285,6 +1377,18 @@ declare namespace Route53Resolver {
|
|
1285
1377
|
*/
|
1286
1378
|
FirewallRuleGroup?: FirewallRuleGroup;
|
1287
1379
|
}
|
1380
|
+
export interface GetOutpostResolverRequest {
|
1381
|
+
/**
|
1382
|
+
* The ID of the Resolver on the Outpost.
|
1383
|
+
*/
|
1384
|
+
Id: ResourceId;
|
1385
|
+
}
|
1386
|
+
export interface GetOutpostResolverResponse {
|
1387
|
+
/**
|
1388
|
+
* Information about the GetOutpostResolver request, including the status of the request.
|
1389
|
+
*/
|
1390
|
+
OutpostResolver?: OutpostResolver;
|
1391
|
+
}
|
1288
1392
|
export interface GetResolverConfigRequest {
|
1289
1393
|
/**
|
1290
1394
|
* Resource ID of the Amazon VPC that you want to get information about.
|
@@ -1425,6 +1529,7 @@ declare namespace Route53Resolver {
|
|
1425
1529
|
*/
|
1426
1530
|
StatusMessage?: StatusMessage;
|
1427
1531
|
}
|
1532
|
+
export type InstanceCount = number;
|
1428
1533
|
export type Ip = string;
|
1429
1534
|
export type IpAddressCount = number;
|
1430
1535
|
export interface IpAddressRequest {
|
@@ -1475,7 +1580,7 @@ declare namespace Route53Resolver {
|
|
1475
1580
|
*/
|
1476
1581
|
ModificationTime?: Rfc3339TimeString;
|
1477
1582
|
}
|
1478
|
-
export type IpAddressStatus = "CREATING"|"FAILED_CREATION"|"ATTACHING"|"ATTACHED"|"REMAP_DETACHING"|"REMAP_ATTACHING"|"DETACHING"|"FAILED_RESOURCE_GONE"|"DELETING"|"DELETE_FAILED_FAS_EXPIRED"|"UPDATING"|string;
|
1583
|
+
export type IpAddressStatus = "CREATING"|"FAILED_CREATION"|"ATTACHING"|"ATTACHED"|"REMAP_DETACHING"|"REMAP_ATTACHING"|"DETACHING"|"FAILED_RESOURCE_GONE"|"DELETING"|"DELETE_FAILED_FAS_EXPIRED"|"UPDATING"|"UPDATE_FAILED"|string;
|
1479
1584
|
export interface IpAddressUpdate {
|
1480
1585
|
/**
|
1481
1586
|
* Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.
|
@@ -1651,6 +1756,30 @@ declare namespace Route53Resolver {
|
|
1651
1756
|
*/
|
1652
1757
|
FirewallRules?: FirewallRules;
|
1653
1758
|
}
|
1759
|
+
export interface ListOutpostResolversRequest {
|
1760
|
+
/**
|
1761
|
+
* The Amazon Resource Name (ARN) of the Outpost.
|
1762
|
+
*/
|
1763
|
+
OutpostArn?: OutpostArn;
|
1764
|
+
/**
|
1765
|
+
* The maximum number of Resolvers on the Outpost that you want to return in the response to a ListOutpostResolver request. If you don't specify a value for MaxResults, the request returns up to 100 Resolvers.
|
1766
|
+
*/
|
1767
|
+
MaxResults?: MaxResults;
|
1768
|
+
/**
|
1769
|
+
* For the first ListOutpostResolver request, omit this value.
|
1770
|
+
*/
|
1771
|
+
NextToken?: NextToken;
|
1772
|
+
}
|
1773
|
+
export interface ListOutpostResolversResponse {
|
1774
|
+
/**
|
1775
|
+
* The Resolvers on Outposts that were created by using the current Amazon Web Services account, and that match the specified filters, if any.
|
1776
|
+
*/
|
1777
|
+
OutpostResolvers?: OutpostResolverList;
|
1778
|
+
/**
|
1779
|
+
* If more than MaxResults Resolvers match the specified criteria, you can submit another ListOutpostResolver request to get the next group of results. In the next request, specify the value of NextToken from the previous response.
|
1780
|
+
*/
|
1781
|
+
NextToken?: NextToken;
|
1782
|
+
}
|
1654
1783
|
export type ListResolverConfigsMaxResult = number;
|
1655
1784
|
export interface ListResolverConfigsRequest {
|
1656
1785
|
/**
|
@@ -1916,6 +2045,58 @@ declare namespace Route53Resolver {
|
|
1916
2045
|
export type MutationProtectionStatus = "ENABLED"|"DISABLED"|string;
|
1917
2046
|
export type Name = string;
|
1918
2047
|
export type NextToken = string;
|
2048
|
+
export type OutpostArn = string;
|
2049
|
+
export type OutpostInstanceType = string;
|
2050
|
+
export interface OutpostResolver {
|
2051
|
+
/**
|
2052
|
+
* The ARN (Amazon Resource Name) for the Resolver on an Outpost.
|
2053
|
+
*/
|
2054
|
+
Arn?: Arn;
|
2055
|
+
/**
|
2056
|
+
* The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
|
2057
|
+
*/
|
2058
|
+
CreationTime?: Rfc3339TimeString;
|
2059
|
+
/**
|
2060
|
+
* The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).
|
2061
|
+
*/
|
2062
|
+
ModificationTime?: Rfc3339TimeString;
|
2063
|
+
/**
|
2064
|
+
* A unique string that identifies the request that created the Resolver endpoint. The CreatorRequestId allows failed requests to be retried without the risk of running the operation twice.
|
2065
|
+
*/
|
2066
|
+
CreatorRequestId?: CreatorRequestId;
|
2067
|
+
/**
|
2068
|
+
* The ID of the Resolver on Outpost.
|
2069
|
+
*/
|
2070
|
+
Id?: ResourceId;
|
2071
|
+
/**
|
2072
|
+
* Amazon EC2 instance count for the Resolver on the Outpost.
|
2073
|
+
*/
|
2074
|
+
InstanceCount?: InstanceCount;
|
2075
|
+
/**
|
2076
|
+
* The Amazon EC2 instance type.
|
2077
|
+
*/
|
2078
|
+
PreferredInstanceType?: OutpostInstanceType;
|
2079
|
+
/**
|
2080
|
+
* Name of the Resolver.
|
2081
|
+
*/
|
2082
|
+
Name?: OutpostResolverName;
|
2083
|
+
/**
|
2084
|
+
* Status of the Resolver.
|
2085
|
+
*/
|
2086
|
+
Status?: OutpostResolverStatus;
|
2087
|
+
/**
|
2088
|
+
* A detailed description of the Resolver.
|
2089
|
+
*/
|
2090
|
+
StatusMessage?: OutpostResolverStatusMessage;
|
2091
|
+
/**
|
2092
|
+
* The ARN (Amazon Resource Name) for the Outpost.
|
2093
|
+
*/
|
2094
|
+
OutpostArn?: OutpostArn;
|
2095
|
+
}
|
2096
|
+
export type OutpostResolverList = OutpostResolver[];
|
2097
|
+
export type OutpostResolverName = string;
|
2098
|
+
export type OutpostResolverStatus = "CREATING"|"OPERATIONAL"|"UPDATING"|"DELETING"|"ACTION_NEEDED"|"FAILED_CREATION"|"FAILED_DELETION"|string;
|
2099
|
+
export type OutpostResolverStatusMessage = string;
|
1919
2100
|
export type Port = number;
|
1920
2101
|
export type Priority = number;
|
1921
2102
|
export interface PutFirewallRuleGroupPolicyRequest {
|
@@ -1940,7 +2121,7 @@ declare namespace Route53Resolver {
|
|
1940
2121
|
*/
|
1941
2122
|
Arn: Arn;
|
1942
2123
|
/**
|
1943
|
-
* An Identity and Access Management policy statement that lists the query logging configurations that you want to share with another Amazon Web Services account and the operations that you want the account to be able to perform. You can specify the following operations in the Actions section of the statement: route53resolver:AssociateResolverQueryLogConfig route53resolver:DisassociateResolverQueryLogConfig route53resolver:
|
2124
|
+
* An Identity and Access Management policy statement that lists the query logging configurations that you want to share with another Amazon Web Services account and the operations that you want the account to be able to perform. You can specify the following operations in the Actions section of the statement: route53resolver:AssociateResolverQueryLogConfig route53resolver:DisassociateResolverQueryLogConfig route53resolver:ListResolverQueryLogConfigs In the Resource section of the statement, you specify the ARNs for the query logging configurations that you want to share with the account that you specified in Arn.
|
1944
2125
|
*/
|
1945
2126
|
ResolverQueryLogConfigPolicy: ResolverQueryLogConfigPolicy;
|
1946
2127
|
}
|
@@ -2059,6 +2240,14 @@ declare namespace Route53Resolver {
|
|
2059
2240
|
* The Resolver endpoint IP address type.
|
2060
2241
|
*/
|
2061
2242
|
ResolverEndpointType?: ResolverEndpointType;
|
2243
|
+
/**
|
2244
|
+
* The ARN (Amazon Resource Name) for the Outpost.
|
2245
|
+
*/
|
2246
|
+
OutpostArn?: OutpostArn;
|
2247
|
+
/**
|
2248
|
+
* The Amazon EC2 instance type.
|
2249
|
+
*/
|
2250
|
+
PreferredInstanceType?: OutpostInstanceType;
|
2062
2251
|
}
|
2063
2252
|
export type ResolverEndpointDirection = "INBOUND"|"OUTBOUND"|string;
|
2064
2253
|
export type ResolverEndpointStatus = "CREATING"|"OPERATIONAL"|"UPDATING"|"AUTO_RECOVERING"|"ACTION_NEEDED"|"DELETING"|string;
|
@@ -2178,7 +2367,7 @@ declare namespace Route53Resolver {
|
|
2178
2367
|
*/
|
2179
2368
|
Name?: Name;
|
2180
2369
|
/**
|
2181
|
-
* An array that contains the IP addresses and ports that an outbound endpoint forwards DNS queries to. Typically, these are the IP addresses of DNS resolvers on your network.
|
2370
|
+
* An array that contains the IP addresses and ports that an outbound endpoint forwards DNS queries to. Typically, these are the IP addresses of DNS resolvers on your network.
|
2182
2371
|
*/
|
2183
2372
|
TargetIps?: TargetList;
|
2184
2373
|
/**
|
@@ -2438,6 +2627,30 @@ declare namespace Route53Resolver {
|
|
2438
2627
|
Ipv6: Ipv6;
|
2439
2628
|
}
|
2440
2629
|
export type UpdateIpAddresses = UpdateIpAddress[];
|
2630
|
+
export interface UpdateOutpostResolverRequest {
|
2631
|
+
/**
|
2632
|
+
* A unique string that identifies Resolver on an Outpost.
|
2633
|
+
*/
|
2634
|
+
Id: ResourceId;
|
2635
|
+
/**
|
2636
|
+
* Name of the Resolver on the Outpost.
|
2637
|
+
*/
|
2638
|
+
Name?: OutpostResolverName;
|
2639
|
+
/**
|
2640
|
+
* The Amazon EC2 instance count for a Resolver on the Outpost.
|
2641
|
+
*/
|
2642
|
+
InstanceCount?: InstanceCount;
|
2643
|
+
/**
|
2644
|
+
* Amazon EC2 instance type.
|
2645
|
+
*/
|
2646
|
+
PreferredInstanceType?: OutpostInstanceType;
|
2647
|
+
}
|
2648
|
+
export interface UpdateOutpostResolverResponse {
|
2649
|
+
/**
|
2650
|
+
* The response to an UpdateOutpostResolver request.
|
2651
|
+
*/
|
2652
|
+
OutpostResolver?: OutpostResolver;
|
2653
|
+
}
|
2441
2654
|
export interface UpdateResolverConfigRequest {
|
2442
2655
|
/**
|
2443
2656
|
* Resource ID of the Amazon VPC that you want to update the Resolver configuration for.
|
@@ -2480,11 +2693,11 @@ declare namespace Route53Resolver {
|
|
2480
2693
|
*/
|
2481
2694
|
Name?: Name;
|
2482
2695
|
/**
|
2483
|
-
* Specifies the endpoint type for what type of IP address the endpoint uses to forward DNS queries.
|
2696
|
+
* Specifies the endpoint type for what type of IP address the endpoint uses to forward DNS queries. Updating to IPV6 type isn't currently supported.
|
2484
2697
|
*/
|
2485
2698
|
ResolverEndpointType?: ResolverEndpointType;
|
2486
2699
|
/**
|
2487
|
-
*
|
2700
|
+
* Specifies the IPv6 address when you update the Resolver endpoint from IPv4 to dual-stack. If you don't specify an IPv6 address, one will be automatically chosen from your subnet.
|
2488
2701
|
*/
|
2489
2702
|
UpdateIpAddresses?: UpdateIpAddresses;
|
2490
2703
|
}
|
package/clients/sagemaker.d.ts
CHANGED
@@ -1844,6 +1844,14 @@ declare class SageMaker extends Service {
|
|
1844
1844
|
* Gets a list of the projects in an Amazon Web Services account.
|
1845
1845
|
*/
|
1846
1846
|
listProjects(callback?: (err: AWSError, data: SageMaker.Types.ListProjectsOutput) => void): Request<SageMaker.Types.ListProjectsOutput, AWSError>;
|
1847
|
+
/**
|
1848
|
+
* Lists Amazon SageMaker Catalogs based on given filters and orders. The maximum number of ResourceCatalogs viewable is 1000.
|
1849
|
+
*/
|
1850
|
+
listResourceCatalogs(params: SageMaker.Types.ListResourceCatalogsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListResourceCatalogsResponse) => void): Request<SageMaker.Types.ListResourceCatalogsResponse, AWSError>;
|
1851
|
+
/**
|
1852
|
+
* Lists Amazon SageMaker Catalogs based on given filters and orders. The maximum number of ResourceCatalogs viewable is 1000.
|
1853
|
+
*/
|
1854
|
+
listResourceCatalogs(callback?: (err: AWSError, data: SageMaker.Types.ListResourceCatalogsResponse) => void): Request<SageMaker.Types.ListResourceCatalogsResponse, AWSError>;
|
1847
1855
|
/**
|
1848
1856
|
* Lists spaces.
|
1849
1857
|
*/
|
@@ -2253,11 +2261,11 @@ declare class SageMaker extends Service {
|
|
2253
2261
|
*/
|
2254
2262
|
updateExperiment(callback?: (err: AWSError, data: SageMaker.Types.UpdateExperimentResponse) => void): Request<SageMaker.Types.UpdateExperimentResponse, AWSError>;
|
2255
2263
|
/**
|
2256
|
-
* Updates the feature group.
|
2264
|
+
* Updates the feature group by either adding features or updating the online store configuration. Use one of the following request parameters at a time while using the UpdateFeatureGroup API. You can add features for your feature group using the FeatureAdditions request parameter. Features cannot be removed from a feature group. You can update the online store configuration by using the OnlineStoreConfig request parameter. If a TtlDuration is specified, the default TtlDuration applies for all records added to the feature group after the feature group is updated. If a record level TtlDuration exists from using the PutRecord API, the record level TtlDuration applies to that record instead of the default TtlDuration.
|
2257
2265
|
*/
|
2258
2266
|
updateFeatureGroup(params: SageMaker.Types.UpdateFeatureGroupRequest, callback?: (err: AWSError, data: SageMaker.Types.UpdateFeatureGroupResponse) => void): Request<SageMaker.Types.UpdateFeatureGroupResponse, AWSError>;
|
2259
2267
|
/**
|
2260
|
-
* Updates the feature group.
|
2268
|
+
* Updates the feature group by either adding features or updating the online store configuration. Use one of the following request parameters at a time while using the UpdateFeatureGroup API. You can add features for your feature group using the FeatureAdditions request parameter. Features cannot be removed from a feature group. You can update the online store configuration by using the OnlineStoreConfig request parameter. If a TtlDuration is specified, the default TtlDuration applies for all records added to the feature group after the feature group is updated. If a record level TtlDuration exists from using the PutRecord API, the record level TtlDuration applies to that record instead of the default TtlDuration.
|
2261
2269
|
*/
|
2262
2270
|
updateFeatureGroup(callback?: (err: AWSError, data: SageMaker.Types.UpdateFeatureGroupResponse) => void): Request<SageMaker.Types.UpdateFeatureGroupResponse, AWSError>;
|
2263
2271
|
/**
|
@@ -6175,6 +6183,7 @@ declare namespace SageMaker {
|
|
6175
6183
|
WorkteamArn?: WorkteamArn;
|
6176
6184
|
}
|
6177
6185
|
export type CreationTime = Date;
|
6186
|
+
export type CrossAccountFilterOption = "SameAccount"|"CrossAccount"|string;
|
6178
6187
|
export type CsvContentType = string;
|
6179
6188
|
export type CsvContentTypes = CsvContentType[];
|
6180
6189
|
export interface CustomImage {
|
@@ -8021,9 +8030,9 @@ declare namespace SageMaker {
|
|
8021
8030
|
}
|
8022
8031
|
export interface DescribeFeatureGroupRequest {
|
8023
8032
|
/**
|
8024
|
-
* The name of the FeatureGroup you want described.
|
8033
|
+
* The name or Amazon Resource Name (ARN) of the FeatureGroup you want described.
|
8025
8034
|
*/
|
8026
|
-
FeatureGroupName:
|
8035
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
8027
8036
|
/**
|
8028
8037
|
* A token to resume pagination of the list of Features (FeatureDefinitions). 2,500 Features are returned by default.
|
8029
8038
|
*/
|
@@ -8101,9 +8110,9 @@ declare namespace SageMaker {
|
|
8101
8110
|
}
|
8102
8111
|
export interface DescribeFeatureMetadataRequest {
|
8103
8112
|
/**
|
8104
|
-
* The name of the feature group containing the feature.
|
8113
|
+
* The name or Amazon Resource Name (ARN) of the feature group containing the feature.
|
8105
8114
|
*/
|
8106
|
-
FeatureGroupName:
|
8115
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
8107
8116
|
/**
|
8108
8117
|
* The name of the feature.
|
8109
8118
|
*/
|
@@ -11189,6 +11198,7 @@ declare namespace SageMaker {
|
|
11189
11198
|
export type FeatureGroupMaxResults = number;
|
11190
11199
|
export type FeatureGroupName = string;
|
11191
11200
|
export type FeatureGroupNameContains = string;
|
11201
|
+
export type FeatureGroupNameOrArn = string;
|
11192
11202
|
export type FeatureGroupSortBy = "Name"|"FeatureGroupStatus"|"OfflineStoreStatus"|"CreationTime"|string;
|
11193
11203
|
export type FeatureGroupSortOrder = "Ascending"|"Descending"|string;
|
11194
11204
|
export type FeatureGroupStatus = "Creating"|"Created"|"CreateFailed"|"Deleting"|"DeleteFailed"|string;
|
@@ -15573,6 +15583,46 @@ declare namespace SageMaker {
|
|
15573
15583
|
*/
|
15574
15584
|
NextToken?: NextToken;
|
15575
15585
|
}
|
15586
|
+
export interface ListResourceCatalogsRequest {
|
15587
|
+
/**
|
15588
|
+
* A string that partially matches one or more ResourceCatalogs names. Filters ResourceCatalog by name.
|
15589
|
+
*/
|
15590
|
+
NameContains?: ResourceCatalogName;
|
15591
|
+
/**
|
15592
|
+
* Use this parameter to search for ResourceCatalogs created after a specific date and time.
|
15593
|
+
*/
|
15594
|
+
CreationTimeAfter?: Timestamp;
|
15595
|
+
/**
|
15596
|
+
* Use this parameter to search for ResourceCatalogs created before a specific date and time.
|
15597
|
+
*/
|
15598
|
+
CreationTimeBefore?: Timestamp;
|
15599
|
+
/**
|
15600
|
+
* The order in which the resource catalogs are listed.
|
15601
|
+
*/
|
15602
|
+
SortOrder?: ResourceCatalogSortOrder;
|
15603
|
+
/**
|
15604
|
+
* The value on which the resource catalog list is sorted.
|
15605
|
+
*/
|
15606
|
+
SortBy?: ResourceCatalogSortBy;
|
15607
|
+
/**
|
15608
|
+
* The maximum number of results returned by ListResourceCatalogs.
|
15609
|
+
*/
|
15610
|
+
MaxResults?: MaxResults;
|
15611
|
+
/**
|
15612
|
+
* A token to resume pagination of ListResourceCatalogs results.
|
15613
|
+
*/
|
15614
|
+
NextToken?: NextToken;
|
15615
|
+
}
|
15616
|
+
export interface ListResourceCatalogsResponse {
|
15617
|
+
/**
|
15618
|
+
* A list of the requested ResourceCatalogs.
|
15619
|
+
*/
|
15620
|
+
ResourceCatalogs?: ResourceCatalogList;
|
15621
|
+
/**
|
15622
|
+
* A token to resume pagination of ListResourceCatalogs results.
|
15623
|
+
*/
|
15624
|
+
NextToken?: NextToken;
|
15625
|
+
}
|
15576
15626
|
export interface ListSpacesRequest {
|
15577
15627
|
/**
|
15578
15628
|
* If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
|
@@ -19529,6 +19579,30 @@ declare namespace SageMaker {
|
|
19529
19579
|
CompletionCriteria?: AutoMLJobCompletionCriteria;
|
19530
19580
|
}
|
19531
19581
|
export type ResourceArn = string;
|
19582
|
+
export interface ResourceCatalog {
|
19583
|
+
/**
|
19584
|
+
* The Amazon Resource Name (ARN) of the ResourceCatalog.
|
19585
|
+
*/
|
19586
|
+
ResourceCatalogArn: ResourceCatalogArn;
|
19587
|
+
/**
|
19588
|
+
* The name of the ResourceCatalog.
|
19589
|
+
*/
|
19590
|
+
ResourceCatalogName: ResourceCatalogName;
|
19591
|
+
/**
|
19592
|
+
* A free form description of the ResourceCatalog.
|
19593
|
+
*/
|
19594
|
+
Description: ResourceCatalogDescription;
|
19595
|
+
/**
|
19596
|
+
* The time the ResourceCatalog was created.
|
19597
|
+
*/
|
19598
|
+
CreationTime: Timestamp;
|
19599
|
+
}
|
19600
|
+
export type ResourceCatalogArn = string;
|
19601
|
+
export type ResourceCatalogDescription = string;
|
19602
|
+
export type ResourceCatalogList = ResourceCatalog[];
|
19603
|
+
export type ResourceCatalogName = string;
|
19604
|
+
export type ResourceCatalogSortBy = "CreationTime"|string;
|
19605
|
+
export type ResourceCatalogSortOrder = "Ascending"|"Descending"|string;
|
19532
19606
|
export interface ResourceConfig {
|
19533
19607
|
/**
|
19534
19608
|
* The ML compute instance type. SageMaker Training on Amazon Elastic Compute Cloud (EC2) P4de instances is in preview release starting December 9th, 2022. Amazon EC2 P4de instances (currently in preview) are powered by 8 NVIDIA A100 GPUs with 80GB high-performance HBM2e GPU memory, which accelerate the speed of training ML models that need to be trained on large datasets of high-resolution data. In this preview release, Amazon SageMaker supports ML training jobs on P4de instances (ml.p4de.24xlarge) to reduce model training time. The ml.p4de.24xlarge instances are available in the following Amazon Web Services Regions. US East (N. Virginia) (us-east-1) US West (Oregon) (us-west-2) To request quota limit increase and start using P4de instances, contact the SageMaker Training service team through your account team.
|
@@ -19810,6 +19884,10 @@ declare namespace SageMaker {
|
|
19810
19884
|
* The maximum number of results to return.
|
19811
19885
|
*/
|
19812
19886
|
MaxResults?: MaxResults;
|
19887
|
+
/**
|
19888
|
+
* A cross account filter option. When the value is "CrossAccount" the search results will only include resources made discoverable to you from other accounts. When the value is "SameAccount" or null the search results will only include resources from your account. Default is null. For more information on searching for resources made discoverable to your account, see Search discoverable resources in the SageMaker Developer Guide. The maximum number of ResourceCatalogs viewable is 1000.
|
19889
|
+
*/
|
19890
|
+
CrossAccountFilterOption?: CrossAccountFilterOption;
|
19813
19891
|
}
|
19814
19892
|
export interface SearchResponse {
|
19815
19893
|
/**
|
@@ -21694,9 +21772,9 @@ declare namespace SageMaker {
|
|
21694
21772
|
}
|
21695
21773
|
export interface UpdateFeatureGroupRequest {
|
21696
21774
|
/**
|
21697
|
-
* The name of the feature group that you're updating.
|
21775
|
+
* The name or Amazon Resource Name (ARN) of the feature group that you're updating.
|
21698
21776
|
*/
|
21699
|
-
FeatureGroupName:
|
21777
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
21700
21778
|
/**
|
21701
21779
|
* Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.
|
21702
21780
|
*/
|
@@ -21714,9 +21792,9 @@ declare namespace SageMaker {
|
|
21714
21792
|
}
|
21715
21793
|
export interface UpdateFeatureMetadataRequest {
|
21716
21794
|
/**
|
21717
|
-
* The name of the feature group containing the feature that you're updating.
|
21795
|
+
* The name or Amazon Resource Name (ARN) of the feature group containing the feature that you're updating.
|
21718
21796
|
*/
|
21719
|
-
FeatureGroupName:
|
21797
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
21720
21798
|
/**
|
21721
21799
|
* The name of the feature that you're updating.
|
21722
21800
|
*/
|
@@ -36,11 +36,11 @@ declare class SageMakerFeatureStoreRuntime extends Service {
|
|
36
36
|
*/
|
37
37
|
getRecord(callback?: (err: AWSError, data: SageMakerFeatureStoreRuntime.Types.GetRecordResponse) => void): Request<SageMakerFeatureStoreRuntime.Types.GetRecordResponse, AWSError>;
|
38
38
|
/**
|
39
|
-
*
|
39
|
+
* The PutRecord API is used to ingest a list of Records into your feature group. If a new record’s EventTime is greater, the new record is written to both the OnlineStore and OfflineStore. Otherwise, the record is a historic record and it is written only to the OfflineStore. You can specify the ingestion to be applied to the OnlineStore, OfflineStore, or both by using the TargetStores request parameter. You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time, ExpiresAt = EventTime + TtlDuration, by specifying the TtlDuration parameter. A record level TtlDuration is set when specifying the TtlDuration parameter using the PutRecord API call. If the input TtlDuration is null or unspecified, TtlDuration is set to the default feature group level TtlDuration. A record level TtlDuration supersedes the group level TtlDuration.
|
40
40
|
*/
|
41
41
|
putRecord(params: SageMakerFeatureStoreRuntime.Types.PutRecordRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
42
42
|
/**
|
43
|
-
*
|
43
|
+
* The PutRecord API is used to ingest a list of Records into your feature group. If a new record’s EventTime is greater, the new record is written to both the OnlineStore and OfflineStore. Otherwise, the record is a historic record and it is written only to the OfflineStore. You can specify the ingestion to be applied to the OnlineStore, OfflineStore, or both by using the TargetStores request parameter. You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time, ExpiresAt = EventTime + TtlDuration, by specifying the TtlDuration parameter. A record level TtlDuration is set when specifying the TtlDuration parameter using the PutRecord API call. If the input TtlDuration is null or unspecified, TtlDuration is set to the default feature group level TtlDuration. A record level TtlDuration supersedes the group level TtlDuration.
|
44
44
|
*/
|
45
45
|
putRecord(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
46
46
|
}
|
@@ -66,9 +66,9 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
66
66
|
export type BatchGetRecordErrors = BatchGetRecordError[];
|
67
67
|
export interface BatchGetRecordIdentifier {
|
68
68
|
/**
|
69
|
-
*
|
69
|
+
* The name or Amazon Resource Name (ARN) of the FeatureGroup containing the records you are retrieving in a batch.
|
70
70
|
*/
|
71
|
-
FeatureGroupName:
|
71
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
72
72
|
/**
|
73
73
|
* The value for a list of record identifiers in string format.
|
74
74
|
*/
|
@@ -81,7 +81,7 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
81
81
|
export type BatchGetRecordIdentifiers = BatchGetRecordIdentifier[];
|
82
82
|
export interface BatchGetRecordRequest {
|
83
83
|
/**
|
84
|
-
* A list
|
84
|
+
* A list containing the name or Amazon Resource Name (ARN) of the FeatureGroup, the list of names of Features to be retrieved, and the corresponding RecordIdentifier values as strings.
|
85
85
|
*/
|
86
86
|
Identifiers: BatchGetRecordIdentifiers;
|
87
87
|
/**
|
@@ -124,9 +124,9 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
124
124
|
export type BatchGetRecordResultDetails = BatchGetRecordResultDetail[];
|
125
125
|
export interface DeleteRecordRequest {
|
126
126
|
/**
|
127
|
-
* The name of the feature group to delete the record from.
|
127
|
+
* The name or Amazon Resource Name (ARN) of the feature group to delete the record from.
|
128
128
|
*/
|
129
|
-
FeatureGroupName:
|
129
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
130
130
|
/**
|
131
131
|
* The value for the RecordIdentifier that uniquely identifies the record, in string format.
|
132
132
|
*/
|
@@ -147,7 +147,7 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
147
147
|
export type DeletionMode = "SoftDelete"|"HardDelete"|string;
|
148
148
|
export type ExpirationTimeResponse = "Enabled"|"Disabled"|string;
|
149
149
|
export type ExpiresAt = string;
|
150
|
-
export type
|
150
|
+
export type FeatureGroupNameOrArn = string;
|
151
151
|
export type FeatureName = string;
|
152
152
|
export type FeatureNames = FeatureName[];
|
153
153
|
export interface FeatureValue {
|
@@ -162,9 +162,9 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
162
162
|
}
|
163
163
|
export interface GetRecordRequest {
|
164
164
|
/**
|
165
|
-
* The name of the feature group from which you want to retrieve a record.
|
165
|
+
* The name or Amazon Resource Name (ARN) of the feature group from which you want to retrieve a record.
|
166
166
|
*/
|
167
|
-
FeatureGroupName:
|
167
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
168
168
|
/**
|
169
169
|
* The value that corresponds to RecordIdentifier type and uniquely identifies the record in the FeatureGroup.
|
170
170
|
*/
|
@@ -174,7 +174,7 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
174
174
|
*/
|
175
175
|
FeatureNames?: FeatureNames;
|
176
176
|
/**
|
177
|
-
* Parameter to request ExpiresAt in response. If Enabled,
|
177
|
+
* Parameter to request ExpiresAt in response. If Enabled, GetRecord will return the value of ExpiresAt, if it is not null. If Disabled and null, GetRecord will return null.
|
178
178
|
*/
|
179
179
|
ExpirationTimeResponse?: ExpirationTimeResponse;
|
180
180
|
}
|
@@ -191,9 +191,9 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
191
191
|
export type Message = string;
|
192
192
|
export interface PutRecordRequest {
|
193
193
|
/**
|
194
|
-
* The name of the feature group that you want to insert the record into.
|
194
|
+
* The name or Amazon Resource Name (ARN) of the feature group that you want to insert the record into.
|
195
195
|
*/
|
196
|
-
FeatureGroupName:
|
196
|
+
FeatureGroupName: FeatureGroupNameOrArn;
|
197
197
|
/**
|
198
198
|
* List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following: Use GetRecord to retrieve the latest record. Update the record returned from GetRecord. Use PutRecord to update feature values.
|
199
199
|
*/
|
@@ -158,7 +158,7 @@ declare namespace SavingsPlans {
|
|
158
158
|
*/
|
159
159
|
searchResults?: SavingsPlanRateList;
|
160
160
|
/**
|
161
|
-
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
|
161
|
+
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
|
162
162
|
*/
|
163
163
|
nextToken?: PaginationToken;
|
164
164
|
}
|