aws-sdk 2.1392.0 → 2.1393.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 +8 -1
- package/README.md +1 -1
- package/apis/customer-profiles-2020-08-15.min.json +252 -52
- package/apis/customer-profiles-2020-08-15.paginators.json +6 -0
- package/apis/emr-containers-2020-10-01.min.json +31 -18
- package/apis/logs-2014-03-28.min.json +99 -16
- package/clients/cloudformation.d.ts +24 -24
- package/clients/cloudwatchlogs.d.ts +132 -18
- package/clients/customerprofiles.d.ts +201 -0
- package/clients/directconnect.d.ts +6 -6
- package/clients/emrcontainers.d.ts +16 -0
- package/clients/iotdeviceadvisor.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +102 -19
- package/dist/aws-sdk.min.js +39 -39
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -496,11 +496,11 @@ declare class DirectConnect extends Service {
|
|
496
496
|
*/
|
497
497
|
updateLag(callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
|
498
498
|
/**
|
499
|
-
* Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual
|
499
|
+
* Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
|
500
500
|
*/
|
501
501
|
updateVirtualInterfaceAttributes(params: DirectConnect.Types.UpdateVirtualInterfaceAttributesRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
|
502
502
|
/**
|
503
|
-
* Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual
|
503
|
+
* Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
|
504
504
|
*/
|
505
505
|
updateVirtualInterfaceAttributes(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
|
506
506
|
}
|
@@ -881,7 +881,7 @@ declare namespace DirectConnect {
|
|
881
881
|
*/
|
882
882
|
awsDevice?: AwsDevice;
|
883
883
|
/**
|
884
|
-
* Indicates whether jumbo frames
|
884
|
+
* Indicates whether jumbo frames are supported.
|
885
885
|
*/
|
886
886
|
jumboFrameCapable?: JumboFrameCapable;
|
887
887
|
/**
|
@@ -1739,7 +1739,7 @@ declare namespace DirectConnect {
|
|
1739
1739
|
*/
|
1740
1740
|
awsDevice?: AwsDevice;
|
1741
1741
|
/**
|
1742
|
-
* Indicates whether jumbo frames
|
1742
|
+
* Indicates whether jumbo frames are supported.
|
1743
1743
|
*/
|
1744
1744
|
jumboFrameCapable?: JumboFrameCapable;
|
1745
1745
|
/**
|
@@ -1832,7 +1832,7 @@ declare namespace DirectConnect {
|
|
1832
1832
|
*/
|
1833
1833
|
allowsHostedConnections?: BooleanFlag;
|
1834
1834
|
/**
|
1835
|
-
* Indicates whether jumbo frames
|
1835
|
+
* Indicates whether jumbo frames are supported.
|
1836
1836
|
*/
|
1837
1837
|
jumboFrameCapable?: JumboFrameCapable;
|
1838
1838
|
/**
|
@@ -2554,7 +2554,7 @@ declare namespace DirectConnect {
|
|
2554
2554
|
*/
|
2555
2555
|
mtu?: MTU;
|
2556
2556
|
/**
|
2557
|
-
* Indicates whether jumbo frames
|
2557
|
+
* Indicates whether jumbo frames are supported.
|
2558
2558
|
*/
|
2559
2559
|
jumboFrameCapable?: JumboFrameCapable;
|
2560
2560
|
/**
|
@@ -248,6 +248,16 @@ declare namespace EMRcontainers {
|
|
248
248
|
*/
|
249
249
|
eksInfo?: EksInfo;
|
250
250
|
}
|
251
|
+
export interface ContainerLogRotationConfiguration {
|
252
|
+
/**
|
253
|
+
* The file size at which to rotate logs. Minimum of 2KB, Maximum of 2GB.
|
254
|
+
*/
|
255
|
+
rotationSize: RotationSize;
|
256
|
+
/**
|
257
|
+
* The number of files to keep in container after rotation.
|
258
|
+
*/
|
259
|
+
maxFilesToKeep: MaxFilesToKeep;
|
260
|
+
}
|
251
261
|
export interface ContainerProvider {
|
252
262
|
/**
|
253
263
|
* The type of the container provider. Amazon EKS is the only supported type as of now.
|
@@ -950,6 +960,7 @@ declare namespace EMRcontainers {
|
|
950
960
|
}
|
951
961
|
export type LogContext = string;
|
952
962
|
export type LogGroupName = string;
|
963
|
+
export type MaxFilesToKeep = number;
|
953
964
|
export interface MonitoringConfiguration {
|
954
965
|
/**
|
955
966
|
* Monitoring configurations for the persistent application UI.
|
@@ -963,6 +974,10 @@ declare namespace EMRcontainers {
|
|
963
974
|
* Amazon S3 configuration for monitoring log publishing.
|
964
975
|
*/
|
965
976
|
s3MonitoringConfiguration?: S3MonitoringConfiguration;
|
977
|
+
/**
|
978
|
+
* Enable or disable container log rotation.
|
979
|
+
*/
|
980
|
+
containerLogRotationConfiguration?: ContainerLogRotationConfiguration;
|
966
981
|
}
|
967
982
|
export type NextToken = string;
|
968
983
|
export interface ParametricCloudWatchMonitoringConfiguration {
|
@@ -1024,6 +1039,7 @@ declare namespace EMRcontainers {
|
|
1024
1039
|
*/
|
1025
1040
|
currentAttemptCount: JavaInteger;
|
1026
1041
|
}
|
1042
|
+
export type RotationSize = string;
|
1027
1043
|
export type RsiArn = string;
|
1028
1044
|
export interface S3MonitoringConfiguration {
|
1029
1045
|
/**
|
@@ -475,7 +475,7 @@ declare namespace IotDeviceAdvisor {
|
|
475
475
|
*/
|
476
476
|
isLongDurationTest?: IsLongDurationTestBoolean;
|
477
477
|
/**
|
478
|
-
* Gets the test suite root group. This is a required parameter.
|
478
|
+
* Gets the test suite root group. This is a required parameter. For updating or creating the latest qualification suite, if intendedForQualification is set to true, rootGroup can be an empty string. If intendedForQualification is false, rootGroup cannot be an empty string. If rootGroup is empty, and intendedForQualification is set to true, all the qualification tests are included, and the configuration is default. For a qualification suite, the minimum length is 0, and the maximum is 2048. For a non-qualification suite, the minimum length is 1, and the maximum is 2048.
|
479
479
|
*/
|
480
480
|
rootGroup: RootGroup;
|
481
481
|
/**
|
@@ -656,7 +656,7 @@ declare namespace IotDeviceAdvisor {
|
|
656
656
|
*/
|
657
657
|
failure?: Failure;
|
658
658
|
/**
|
659
|
-
*
|
659
|
+
* Provides test case scenario system messages if any.
|
660
660
|
*/
|
661
661
|
systemMessage?: SystemMessage;
|
662
662
|
}
|