aws-sdk 2.1622.0 → 2.1623.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.
@@ -624,7 +624,7 @@ declare namespace CodeBuild {
624
624
  */
625
625
  logs?: LogsLocation;
626
626
  /**
627
- * How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out this build if it does not get marked as completed.
627
+ * How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out this build if it does not get marked as completed.
628
628
  */
629
629
  timeoutInMinutes?: WrapperInt;
630
630
  /**
@@ -936,6 +936,7 @@ declare namespace CodeBuild {
936
936
  */
937
937
  secondaryArtifacts?: ResolvedSecondaryArtifacts;
938
938
  }
939
+ export type BuildTimeOut = number;
939
940
  export type Builds = Build[];
940
941
  export type BuildsNotDeleted = BuildNotDeleted[];
941
942
  export type CacheMode = "LOCAL_DOCKER_LAYER_CACHE"|"LOCAL_SOURCE_CACHE"|"LOCAL_CUSTOM_CACHE"|string;
@@ -1112,9 +1113,9 @@ declare namespace CodeBuild {
1112
1113
  */
1113
1114
  serviceRole: NonEmptyString;
1114
1115
  /**
1115
- * How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before it times out any build that has not been marked as completed. The default is 60 minutes.
1116
+ * How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before it times out any build that has not been marked as completed. The default is 60 minutes.
1116
1117
  */
1117
- timeoutInMinutes?: TimeOut;
1118
+ timeoutInMinutes?: BuildTimeOut;
1118
1119
  /**
1119
1120
  * The number of minutes a build is allowed to be queued before it times out.
1120
1121
  */
@@ -2038,9 +2039,9 @@ declare namespace CodeBuild {
2038
2039
  */
2039
2040
  serviceRole?: NonEmptyString;
2040
2041
  /**
2041
- * How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.
2042
+ * How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.
2042
2043
  */
2043
- timeoutInMinutes?: TimeOut;
2044
+ timeoutInMinutes?: BuildTimeOut;
2044
2045
  /**
2045
2046
  * The number of minutes a build is allowed to be queued before it times out.
2046
2047
  */
@@ -2727,7 +2728,7 @@ declare namespace CodeBuild {
2727
2728
  /**
2728
2729
  * Overrides the build timeout specified in the batch build project.
2729
2730
  */
2730
- buildTimeoutInMinutesOverride?: TimeOut;
2731
+ buildTimeoutInMinutesOverride?: BuildTimeOut;
2731
2732
  /**
2732
2733
  * The number of minutes a batch build is allowed to be queued before it times out.
2733
2734
  */
@@ -2861,9 +2862,9 @@ declare namespace CodeBuild {
2861
2862
  */
2862
2863
  privilegedModeOverride?: WrapperBoolean;
2863
2864
  /**
2864
- * The number of build timeout minutes, from 5 to 480 (8 hours), that overrides, for this build only, the latest setting already defined in the build project.
2865
+ * The number of build timeout minutes, from 5 to 2160 (36 hours), that overrides, for this build only, the latest setting already defined in the build project.
2865
2866
  */
2866
- timeoutInMinutesOverride?: TimeOut;
2867
+ timeoutInMinutesOverride?: BuildTimeOut;
2867
2868
  /**
2868
2869
  * The number of minutes a build is allowed to be queued before it times out.
2869
2870
  */
@@ -3097,9 +3098,9 @@ declare namespace CodeBuild {
3097
3098
  */
3098
3099
  serviceRole?: NonEmptyString;
3099
3100
  /**
3100
- * The replacement value in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed.
3101
+ * The replacement value in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed.
3101
3102
  */
3102
- timeoutInMinutes?: TimeOut;
3103
+ timeoutInMinutes?: BuildTimeOut;
3103
3104
  /**
3104
3105
  * The number of minutes a build is allowed to be queued before it times out.
3105
3106
  */
@@ -729,7 +729,7 @@ declare namespace ELBv2 {
729
729
  */
730
730
  Type?: LoadBalancerTypeEnum;
731
731
  /**
732
- * The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
732
+ * Note: Internal load balancers must use the ipv4 IP address type. [Application Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses), dualstack (for IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (for IPv6 only public addresses, with private IPv4 and IPv6 addresses). [Network Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
733
733
  */
734
734
  IpAddressType?: IpAddressType;
735
735
  /**
@@ -1366,7 +1366,7 @@ declare namespace ELBv2 {
1366
1366
  export type IPv6Address = string;
1367
1367
  export type IgnoreClientCertificateExpiry = boolean;
1368
1368
  export type IpAddress = string;
1369
- export type IpAddressType = "ipv4"|"dualstack"|string;
1369
+ export type IpAddressType = "ipv4"|"dualstack"|"dualstack-without-public-ipv4"|string;
1370
1370
  export type IsDefault = boolean;
1371
1371
  export interface Limit {
1372
1372
  /**
@@ -1468,7 +1468,7 @@ declare namespace ELBv2 {
1468
1468
  */
1469
1469
  SecurityGroups?: SecurityGroups;
1470
1470
  /**
1471
- * The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
1471
+ * [Application Load Balancers] The type of IP addresses used for public or private connections by the subnets attached to your load balancer. The possible values are ipv4 (for only IPv4 addresses), dualstack (for IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (for IPv6 only public addresses, with private IPv4 and IPv6 addresses). [Network Load Balancers and Gateway Load Balancers] The type of IP addresses used for public or private connections by the subnets attached to your load balancer. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
1472
1472
  */
1473
1473
  IpAddressType?: IpAddressType;
1474
1474
  /**
@@ -1943,7 +1943,7 @@ declare namespace ELBv2 {
1943
1943
  */
1944
1944
  LoadBalancerArn: LoadBalancerArn;
1945
1945
  /**
1946
- * The IP address type. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener.
1946
+ * Note: Internal load balancers must use the ipv4 IP address type. [Application Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses), dualstack (for IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (for IPv6 only public addresses, with private IPv4 and IPv6 addresses). [Network Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
1947
1947
  */
1948
1948
  IpAddressType: IpAddressType;
1949
1949
  }
@@ -2003,7 +2003,7 @@ declare namespace ELBv2 {
2003
2003
  */
2004
2004
  SubnetMappings?: SubnetMappings;
2005
2005
  /**
2006
- * [Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
2006
+ * [Application Load Balancers] The IP address type. The possible values are ipv4 (for only IPv4 addresses), dualstack (for IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (for IPv6 only public addresses, with private IPv4 and IPv6 addresses). [Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
2007
2007
  */
2008
2008
  IpAddressType?: IpAddressType;
2009
2009
  }
@@ -2013,7 +2013,7 @@ declare namespace ELBv2 {
2013
2013
  */
2014
2014
  AvailabilityZones?: AvailabilityZones;
2015
2015
  /**
2016
- * [Network Load Balancers] The IP address type. [Gateway Load Balancers] The IP address type.
2016
+ * [Application Load Balancers] The IP address type. [Network Load Balancers] The IP address type. [Gateway Load Balancers] The IP address type.
2017
2017
  */
2018
2018
  IpAddressType?: IpAddressType;
2019
2019
  }
@@ -180,6 +180,14 @@ declare class LakeFormation extends Service {
180
180
  * Returns a data cells filter.
181
181
  */
182
182
  getDataCellsFilter(callback?: (err: AWSError, data: LakeFormation.Types.GetDataCellsFilterResponse) => void): Request<LakeFormation.Types.GetDataCellsFilterResponse, AWSError>;
183
+ /**
184
+ * Returns the identity of the invoking principal.
185
+ */
186
+ getDataLakePrincipal(params: LakeFormation.Types.GetDataLakePrincipalRequest, callback?: (err: AWSError, data: LakeFormation.Types.GetDataLakePrincipalResponse) => void): Request<LakeFormation.Types.GetDataLakePrincipalResponse, AWSError>;
187
+ /**
188
+ * Returns the identity of the invoking principal.
189
+ */
190
+ getDataLakePrincipal(callback?: (err: AWSError, data: LakeFormation.Types.GetDataLakePrincipalResponse) => void): Request<LakeFormation.Types.GetDataLakePrincipalResponse, AWSError>;
183
191
  /**
184
192
  * Retrieves the list of the data lake administrators of a Lake Formation-managed data lake.
185
193
  */
@@ -1068,6 +1076,14 @@ declare namespace LakeFormation {
1068
1076
  */
1069
1077
  DataCellsFilter?: DataCellsFilter;
1070
1078
  }
1079
+ export interface GetDataLakePrincipalRequest {
1080
+ }
1081
+ export interface GetDataLakePrincipalResponse {
1082
+ /**
1083
+ * A unique identifier of the invoking principal.
1084
+ */
1085
+ Identity?: IdentityString;
1086
+ }
1071
1087
  export interface GetDataLakeSettingsRequest {
1072
1088
  /**
1073
1089
  * The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
@@ -1418,6 +1434,7 @@ declare namespace LakeFormation {
1418
1434
  export type IAMSAMLProviderArn = string;
1419
1435
  export type Identifier = string;
1420
1436
  export type IdentityCenterInstanceArn = string;
1437
+ export type IdentityString = string;
1421
1438
  export type Integer = number;
1422
1439
  export type KeyString = string;
1423
1440
  export interface LFTag {
@@ -1263,7 +1263,7 @@ declare namespace Transfer {
1263
1263
  */
1264
1264
  CertificateId?: CertificateId;
1265
1265
  /**
1266
- * Specifies whether this certificate is used for signing or encryption.
1266
+ * Specifies how this certificate is used. It can be used in the following ways: SIGNING: For signing AS2 messages ENCRYPTION: For encrypting AS2 messages TLS: For securing AS2 communications sent over HTTPS
1267
1267
  */
1268
1268
  Usage?: CertificateUsageType;
1269
1269
  /**
@@ -1492,7 +1492,7 @@ declare namespace Transfer {
1492
1492
  */
1493
1493
  ProtocolDetails?: ProtocolDetails;
1494
1494
  /**
1495
- * Specifies the domain of the storage system that is used for file transfers.
1495
+ * Specifies the domain of the storage system that is used for file transfers. There are two domains available: Amazon Simple Storage Service (Amazon S3) and Amazon Elastic File System (Amazon EFS). The default value is S3.
1496
1496
  */
1497
1497
  Domain?: Domain;
1498
1498
  /**
@@ -1778,7 +1778,7 @@ declare namespace Transfer {
1778
1778
  export type IdentityProviderType = "SERVICE_MANAGED"|"API_GATEWAY"|"AWS_DIRECTORY_SERVICE"|"AWS_LAMBDA"|string;
1779
1779
  export interface ImportCertificateRequest {
1780
1780
  /**
1781
- * Specifies whether this certificate is used for signing or encryption.
1781
+ * Specifies how this certificate is used. It can be used in the following ways: SIGNING: For signing AS2 messages ENCRYPTION: For encrypting AS2 messages TLS: For securing AS2 communications sent over HTTPS
1782
1782
  */
1783
1783
  Usage: CertificateUsageType;
1784
1784
  /**
@@ -2230,7 +2230,7 @@ declare namespace Transfer {
2230
2230
  */
2231
2231
  CertificateId?: CertificateId;
2232
2232
  /**
2233
- * Specifies whether this certificate is used for signing or encryption.
2233
+ * Specifies how this certificate is used. It can be used in the following ways: SIGNING: For signing AS2 messages ENCRYPTION: For encrypting AS2 messages TLS: For securing AS2 communications sent over HTTPS
2234
2234
  */
2235
2235
  Usage?: CertificateUsageType;
2236
2236
  /**
@@ -2341,7 +2341,7 @@ declare namespace Transfer {
2341
2341
  */
2342
2342
  Arn: Arn;
2343
2343
  /**
2344
- * Specifies the domain of the storage system that is used for file transfers.
2344
+ * Specifies the domain of the storage system that is used for file transfers. There are two domains available: Amazon Simple Storage Service (Amazon S3) and Amazon Elastic File System (Amazon EFS). The default value is S3.
2345
2345
  */
2346
2346
  Domain?: Domain;
2347
2347
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1622.0',
86
+ VERSION: '2.1623.0',
87
87
 
88
88
  /**
89
89
  * @api private