aws-sdk 2.902.0 → 2.906.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 +23 -1
- package/README.md +1 -1
- package/apis/config-2014-11-12.paginators.json +196 -2
- package/apis/connect-2017-08-08.min.json +8 -2
- package/apis/eks-2017-11-01.min.json +39 -11
- package/apis/iotwireless-2020-11-22.min.json +46 -17
- package/apis/kinesisanalyticsv2-2018-05-23.min.json +64 -1
- package/apis/lakeformation-2017-03-31.min.json +465 -95
- package/apis/mediaconvert-2017-08-29.min.json +187 -107
- package/apis/metadata.json +8 -0
- package/apis/ssm-2014-11-06.min.json +461 -344
- package/apis/ssm-2014-11-06.paginators.json +6 -0
- package/apis/ssm-contacts-2021-05-03.examples.json +5 -0
- package/apis/ssm-contacts-2021-05-03.min.json +833 -0
- package/apis/ssm-contacts-2021-05-03.paginators.json +40 -0
- package/apis/ssm-incidents-2018-05-10.examples.json +5 -0
- package/apis/ssm-incidents-2018-05-10.min.json +1311 -0
- package/apis/ssm-incidents-2018-05-10.paginators.json +40 -0
- package/apis/ssm-incidents-2018-05-10.waiters2.json +53 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/codeartifact.d.ts +23 -23
- package/clients/connect.d.ts +36 -28
- package/clients/ec2.d.ts +3 -3
- package/clients/ecs.d.ts +8 -8
- package/clients/eks.d.ts +47 -7
- package/clients/iotwireless.d.ts +11 -0
- package/clients/kinesisanalyticsv2.d.ts +77 -8
- package/clients/lakeformation.d.ts +428 -4
- package/clients/lookoutmetrics.d.ts +16 -16
- package/clients/mediaconvert.d.ts +98 -3
- package/clients/s3control.d.ts +72 -72
- package/clients/ssm.d.ts +181 -3
- package/clients/ssmcontacts.d.ts +1079 -0
- package/clients/ssmcontacts.js +18 -0
- package/clients/ssmincidents.d.ts +1382 -0
- package/clients/ssmincidents.js +19 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +94 -13
- package/dist/aws-sdk.js +682 -351
- package/dist/aws-sdk.min.js +68 -68
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/lib/http/node.js +6 -2
- package/package.json +1 -1
- package/scripts/changelog/change-creator.js +1 -1
package/clients/ecs.d.ts
CHANGED
|
@@ -766,7 +766,7 @@ declare namespace ECS {
|
|
|
766
766
|
export type ContainerCondition = "START"|"COMPLETE"|"SUCCESS"|"HEALTHY"|string;
|
|
767
767
|
export interface ContainerDefinition {
|
|
768
768
|
/**
|
|
769
|
-
* The name of a container. If you are linking multiple containers together in a task definition, the name of one container can be entered in the links of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. This parameter maps to name in the Create a container section of the Docker Remote API and the --name option to docker run.
|
|
769
|
+
* The name of a container. If you are linking multiple containers together in a task definition, the name of one container can be entered in the links of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to name in the Create a container section of the Docker Remote API and the --name option to docker run.
|
|
770
770
|
*/
|
|
771
771
|
name?: String;
|
|
772
772
|
/**
|
|
@@ -790,7 +790,7 @@ declare namespace ECS {
|
|
|
790
790
|
*/
|
|
791
791
|
memoryReservation?: BoxedInteger;
|
|
792
792
|
/**
|
|
793
|
-
* The links parameter allows containers to communicate with each other without the need for port mappings. This parameter is only supported if the network mode of a task definition is bridge. The name:internalName construct is analogous to name:alias in Docker links. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. For more information about linking Docker containers, go to Legacy container links in the Docker documentation. This parameter maps to Links in the Create a container section of the Docker Remote API and the --link option to docker run. This parameter is not supported for Windows containers. Containers that are collocated on a single container instance may be able to communicate with each other without requiring links or host port mappings. Network isolation is achieved on the container instance using security groups and VPC settings.
|
|
793
|
+
* The links parameter allows containers to communicate with each other without the need for port mappings. This parameter is only supported if the network mode of a task definition is bridge. The name:internalName construct is analogous to name:alias in Docker links. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. For more information about linking Docker containers, go to Legacy container links in the Docker documentation. This parameter maps to Links in the Create a container section of the Docker Remote API and the --link option to docker run. This parameter is not supported for Windows containers. Containers that are collocated on a single container instance may be able to communicate with each other without requiring links or host port mappings. Network isolation is achieved on the container instance using security groups and VPC settings.
|
|
794
794
|
*/
|
|
795
795
|
links?: StringList;
|
|
796
796
|
/**
|
|
@@ -1097,7 +1097,7 @@ declare namespace ECS {
|
|
|
1097
1097
|
}
|
|
1098
1098
|
export interface CreateClusterRequest {
|
|
1099
1099
|
/**
|
|
1100
|
-
* The name of your cluster. If you do not specify a name for your cluster, you create a cluster named default. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed.
|
|
1100
|
+
* The name of your cluster. If you do not specify a name for your cluster, you create a cluster named default. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
|
|
1101
1101
|
*/
|
|
1102
1102
|
clusterName?: String;
|
|
1103
1103
|
/**
|
|
@@ -1133,7 +1133,7 @@ declare namespace ECS {
|
|
|
1133
1133
|
*/
|
|
1134
1134
|
cluster?: String;
|
|
1135
1135
|
/**
|
|
1136
|
-
* The name of your service. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. Service names must be unique within a cluster, but you can have similarly named services in multiple clusters within a Region or across multiple Regions.
|
|
1136
|
+
* The name of your service. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. Service names must be unique within a cluster, but you can have similarly named services in multiple clusters within a Region or across multiple Regions.
|
|
1137
1137
|
*/
|
|
1138
1138
|
serviceName: String;
|
|
1139
1139
|
/**
|
|
@@ -1870,7 +1870,7 @@ declare namespace ECS {
|
|
|
1870
1870
|
*/
|
|
1871
1871
|
containerName?: String;
|
|
1872
1872
|
/**
|
|
1873
|
-
* Whether or not the execute command session is running in interactive mode.
|
|
1873
|
+
* Whether or not the execute command session is running in interactive mode. Amazon ECS only supports initiating interactive sessions, so you must specify true for this value.
|
|
1874
1874
|
*/
|
|
1875
1875
|
interactive?: Boolean;
|
|
1876
1876
|
/**
|
|
@@ -2670,7 +2670,7 @@ declare namespace ECS {
|
|
|
2670
2670
|
}
|
|
2671
2671
|
export interface RegisterTaskDefinitionRequest {
|
|
2672
2672
|
/**
|
|
2673
|
-
* You must specify a family for a task definition, which allows you to track multiple versions of the same task definition. The family is used as a name for your task definition. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed.
|
|
2673
|
+
* You must specify a family for a task definition, which allows you to track multiple versions of the same task definition. The family is used as a name for your task definition. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
|
|
2674
2674
|
*/
|
|
2675
2675
|
family: String;
|
|
2676
2676
|
/**
|
|
@@ -2901,7 +2901,7 @@ declare namespace ECS {
|
|
|
2901
2901
|
*/
|
|
2902
2902
|
serviceArn?: String;
|
|
2903
2903
|
/**
|
|
2904
|
-
* The name of your service. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. Service names must be unique within a cluster, but you can have similarly named services in multiple clusters within a Region or across multiple Regions.
|
|
2904
|
+
* The name of your service. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. Service names must be unique within a cluster, but you can have similarly named services in multiple clusters within a Region or across multiple Regions.
|
|
2905
2905
|
*/
|
|
2906
2906
|
serviceName?: String;
|
|
2907
2907
|
/**
|
|
@@ -3952,7 +3952,7 @@ declare namespace ECS {
|
|
|
3952
3952
|
}
|
|
3953
3953
|
export interface Volume {
|
|
3954
3954
|
/**
|
|
3955
|
-
* The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.
|
|
3955
|
+
* The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.
|
|
3956
3956
|
*/
|
|
3957
3957
|
name?: String;
|
|
3958
3958
|
/**
|
package/clients/eks.d.ts
CHANGED
|
@@ -237,11 +237,11 @@ declare class EKS extends Service {
|
|
|
237
237
|
*/
|
|
238
238
|
updateAddon(callback?: (err: AWSError, data: EKS.Types.UpdateAddonResponse) => void): Request<EKS.Types.UpdateAddonResponse, AWSError>;
|
|
239
239
|
/**
|
|
240
|
-
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation. You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing. You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .
|
|
240
|
+
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation. You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing. You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide . You can't update the subnets or security group IDs for an existing cluster. Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.
|
|
241
241
|
*/
|
|
242
242
|
updateClusterConfig(params: EKS.Types.UpdateClusterConfigRequest, callback?: (err: AWSError, data: EKS.Types.UpdateClusterConfigResponse) => void): Request<EKS.Types.UpdateClusterConfigResponse, AWSError>;
|
|
243
243
|
/**
|
|
244
|
-
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation. You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing. You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .
|
|
244
|
+
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation. You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing. You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide . You can't update the subnets or security group IDs for an existing cluster. Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.
|
|
245
245
|
*/
|
|
246
246
|
updateClusterConfig(callback?: (err: AWSError, data: EKS.Types.UpdateClusterConfigResponse) => void): Request<EKS.Types.UpdateClusterConfigResponse, AWSError>;
|
|
247
247
|
/**
|
|
@@ -357,7 +357,7 @@ declare namespace EKS {
|
|
|
357
357
|
*/
|
|
358
358
|
serviceAccountRoleArn?: String;
|
|
359
359
|
/**
|
|
360
|
-
* The metadata that you apply to the
|
|
360
|
+
* The metadata that you apply to the add-on to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Add-on tags do not propagate to any other resources associated with the cluster.
|
|
361
361
|
*/
|
|
362
362
|
tags?: TagMap;
|
|
363
363
|
}
|
|
@@ -688,7 +688,7 @@ declare namespace EKS {
|
|
|
688
688
|
*/
|
|
689
689
|
diskSize?: BoxedInteger;
|
|
690
690
|
/**
|
|
691
|
-
* The subnets to use for the Auto Scaling group that is created for your node group.
|
|
691
|
+
* The subnets to use for the Auto Scaling group that is created for your node group. If you specify launchTemplate, then don't specify SubnetId in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.
|
|
692
692
|
*/
|
|
693
693
|
subnets: StringList;
|
|
694
694
|
/**
|
|
@@ -711,6 +711,10 @@ declare namespace EKS {
|
|
|
711
711
|
* The Kubernetes labels to be applied to the nodes in the node group when they are created.
|
|
712
712
|
*/
|
|
713
713
|
labels?: labelsMap;
|
|
714
|
+
/**
|
|
715
|
+
* The Kubernetes taints to be applied to the nodes in the node group.
|
|
716
|
+
*/
|
|
717
|
+
taints?: taintsList;
|
|
714
718
|
/**
|
|
715
719
|
* The metadata to apply to the node group to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Node group tags do not propagate to any other resources associated with the node group, such as the Amazon EC2 instances or subnets.
|
|
716
720
|
*/
|
|
@@ -948,7 +952,7 @@ declare namespace EKS {
|
|
|
948
952
|
*/
|
|
949
953
|
resources?: StringList;
|
|
950
954
|
/**
|
|
951
|
-
* AWS Key Management Service (AWS KMS)
|
|
955
|
+
* AWS Key Management Service (AWS KMS) key. Either the ARN or the alias can be used.
|
|
952
956
|
*/
|
|
953
957
|
provider?: Provider;
|
|
954
958
|
}
|
|
@@ -1334,6 +1338,10 @@ declare namespace EKS {
|
|
|
1334
1338
|
* The Kubernetes labels applied to the nodes in the node group. Only labels that are applied with the Amazon EKS API are shown here. There may be other Kubernetes labels applied to the nodes in this group.
|
|
1335
1339
|
*/
|
|
1336
1340
|
labels?: labelsMap;
|
|
1341
|
+
/**
|
|
1342
|
+
* The Kubernetes taints to be applied to the nodes in the node group when they are created. Effect is one of NoSchedule, PreferNoSchedule, or NoExecute. Kubernetes taints can be used together with tolerations to control how workloads are scheduled to your nodes.
|
|
1343
|
+
*/
|
|
1344
|
+
taints?: taintsList;
|
|
1337
1345
|
/**
|
|
1338
1346
|
* The resources associated with the node group, such as Auto Scaling groups and security groups for remote access.
|
|
1339
1347
|
*/
|
|
@@ -1479,7 +1487,7 @@ declare namespace EKS {
|
|
|
1479
1487
|
}
|
|
1480
1488
|
export interface Provider {
|
|
1481
1489
|
/**
|
|
1482
|
-
* Amazon Resource Name (ARN) or alias of the
|
|
1490
|
+
* Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric, created in the same region as the cluster, and if the KMS key was created in a different account, the user must have access to the KMS key. For more information, see Allowing Users in Other Accounts to Use a KMS key in the AWS Key Management Service Developer Guide.
|
|
1483
1491
|
*/
|
|
1484
1492
|
keyArn?: String;
|
|
1485
1493
|
}
|
|
@@ -1513,6 +1521,21 @@ declare namespace EKS {
|
|
|
1513
1521
|
export interface TagResourceResponse {
|
|
1514
1522
|
}
|
|
1515
1523
|
export type TagValue = string;
|
|
1524
|
+
export interface Taint {
|
|
1525
|
+
/**
|
|
1526
|
+
* The key of the taint.
|
|
1527
|
+
*/
|
|
1528
|
+
key?: taintKey;
|
|
1529
|
+
/**
|
|
1530
|
+
* The value of the taint.
|
|
1531
|
+
*/
|
|
1532
|
+
value?: taintValue;
|
|
1533
|
+
/**
|
|
1534
|
+
* The effect of the taint.
|
|
1535
|
+
*/
|
|
1536
|
+
effect?: TaintEffect;
|
|
1537
|
+
}
|
|
1538
|
+
export type TaintEffect = "NO_SCHEDULE"|"NO_EXECUTE"|"PREFER_NO_SCHEDULE"|string;
|
|
1516
1539
|
export type Timestamp = Date;
|
|
1517
1540
|
export interface UntagResourceRequest {
|
|
1518
1541
|
/**
|
|
@@ -1642,6 +1665,10 @@ declare namespace EKS {
|
|
|
1642
1665
|
* The Kubernetes labels to be applied to the nodes in the node group after the update.
|
|
1643
1666
|
*/
|
|
1644
1667
|
labels?: UpdateLabelsPayload;
|
|
1668
|
+
/**
|
|
1669
|
+
* The Kubernetes taints to be applied to the nodes in the node group after the update.
|
|
1670
|
+
*/
|
|
1671
|
+
taints?: UpdateTaintsPayload;
|
|
1645
1672
|
/**
|
|
1646
1673
|
* The scaling configuration details for the Auto Scaling group after the update.
|
|
1647
1674
|
*/
|
|
@@ -1697,9 +1724,19 @@ declare namespace EKS {
|
|
|
1697
1724
|
*/
|
|
1698
1725
|
value?: String;
|
|
1699
1726
|
}
|
|
1700
|
-
export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|string;
|
|
1727
|
+
export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|string;
|
|
1701
1728
|
export type UpdateParams = UpdateParam[];
|
|
1702
1729
|
export type UpdateStatus = "InProgress"|"Failed"|"Cancelled"|"Successful"|string;
|
|
1730
|
+
export interface UpdateTaintsPayload {
|
|
1731
|
+
/**
|
|
1732
|
+
* Kubernetes taints to be added or updated.
|
|
1733
|
+
*/
|
|
1734
|
+
addOrUpdateTaints?: taintsList;
|
|
1735
|
+
/**
|
|
1736
|
+
* Kubernetes taints to be removed.
|
|
1737
|
+
*/
|
|
1738
|
+
removeTaints?: taintsList;
|
|
1739
|
+
}
|
|
1703
1740
|
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|string;
|
|
1704
1741
|
export interface VpcConfigRequest {
|
|
1705
1742
|
/**
|
|
@@ -1762,6 +1799,9 @@ declare namespace EKS {
|
|
|
1762
1799
|
export type requiredClaimsKey = string;
|
|
1763
1800
|
export type requiredClaimsMap = {[key: string]: requiredClaimsValue};
|
|
1764
1801
|
export type requiredClaimsValue = string;
|
|
1802
|
+
export type taintKey = string;
|
|
1803
|
+
export type taintValue = string;
|
|
1804
|
+
export type taintsList = Taint[];
|
|
1765
1805
|
/**
|
|
1766
1806
|
* 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.
|
|
1767
1807
|
*/
|
package/clients/iotwireless.d.ts
CHANGED
|
@@ -1255,6 +1255,8 @@ declare namespace IoTWireless {
|
|
|
1255
1255
|
export type Integer = number;
|
|
1256
1256
|
export type IotCertificateId = string;
|
|
1257
1257
|
export type JoinEui = string;
|
|
1258
|
+
export type JoinEuiFilters = JoinEuiRange[];
|
|
1259
|
+
export type JoinEuiRange = JoinEui[];
|
|
1258
1260
|
export interface ListDestinationsRequest {
|
|
1259
1261
|
/**
|
|
1260
1262
|
* The maximum number of results to return in this operation.
|
|
@@ -1570,6 +1572,9 @@ declare namespace IoTWireless {
|
|
|
1570
1572
|
* The frequency band (RFRegion) value.
|
|
1571
1573
|
*/
|
|
1572
1574
|
RfRegion?: RfRegion;
|
|
1575
|
+
JoinEuiFilters?: JoinEuiFilters;
|
|
1576
|
+
NetIdFilters?: NetIdFilters;
|
|
1577
|
+
SubBands?: SubBands;
|
|
1573
1578
|
}
|
|
1574
1579
|
export interface LoRaWANGatewayCurrentVersion {
|
|
1575
1580
|
/**
|
|
@@ -1748,6 +1753,8 @@ declare namespace IoTWireless {
|
|
|
1748
1753
|
export type MessageType = "CUSTOM_COMMAND_ID_NOTIFY"|"CUSTOM_COMMAND_ID_GET"|"CUSTOM_COMMAND_ID_SET"|"CUSTOM_COMMAND_ID_RESP"|string;
|
|
1749
1754
|
export type MinGwDiversity = number;
|
|
1750
1755
|
export type Model = string;
|
|
1756
|
+
export type NetId = string;
|
|
1757
|
+
export type NetIdFilters = NetId[];
|
|
1751
1758
|
export type NextToken = string;
|
|
1752
1759
|
export type NwkGeoLoc = boolean;
|
|
1753
1760
|
export type NwkKey = string;
|
|
@@ -1962,6 +1969,8 @@ declare namespace IoTWireless {
|
|
|
1962
1969
|
}
|
|
1963
1970
|
export type SigningAlg = "Ed25519"|"P256r1"|string;
|
|
1964
1971
|
export type Station = string;
|
|
1972
|
+
export type SubBand = number;
|
|
1973
|
+
export type SubBands = SubBand[];
|
|
1965
1974
|
export type Supports32BitFCnt = boolean;
|
|
1966
1975
|
export type SupportsClassB = boolean;
|
|
1967
1976
|
export type SupportsClassC = boolean;
|
|
@@ -2102,6 +2111,8 @@ declare namespace IoTWireless {
|
|
|
2102
2111
|
* A new description of the resource.
|
|
2103
2112
|
*/
|
|
2104
2113
|
Description?: Description;
|
|
2114
|
+
JoinEuiFilters?: JoinEuiFilters;
|
|
2115
|
+
NetIdFilters?: NetIdFilters;
|
|
2105
2116
|
}
|
|
2106
2117
|
export interface UpdateWirelessGatewayResponse {
|
|
2107
2118
|
}
|
|
@@ -155,6 +155,14 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
155
155
|
* Returns information about a snapshot of application state data.
|
|
156
156
|
*/
|
|
157
157
|
describeApplicationSnapshot(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationSnapshotResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationSnapshotResponse, AWSError>;
|
|
158
|
+
/**
|
|
159
|
+
* Provides a detailed description of a specified version of the application. To see a list of all the versions of an application, invoke the ListApplicationVersions operation. This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
|
|
160
|
+
*/
|
|
161
|
+
describeApplicationVersion(params: KinesisAnalyticsV2.Types.DescribeApplicationVersionRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationVersionResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationVersionResponse, AWSError>;
|
|
162
|
+
/**
|
|
163
|
+
* Provides a detailed description of a specified version of the application. To see a list of all the versions of an application, invoke the ListApplicationVersions operation. This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
|
|
164
|
+
*/
|
|
165
|
+
describeApplicationVersion(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationVersionResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationVersionResponse, AWSError>;
|
|
158
166
|
/**
|
|
159
167
|
* Infers a schema for a SQL-based Kinesis Data Analytics application by evaluating sample records on the specified streaming source (Kinesis data stream or Kinesis Data Firehose delivery stream) or Amazon S3 object. In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema. You can use the inferred schema when configuring a streaming source for your application. When you create an application using the Kinesis Data Analytics console, the console uses this operation to infer a schema and show it in the console user interface.
|
|
160
168
|
*/
|
|
@@ -171,6 +179,14 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
171
179
|
* Lists information about the current application snapshots.
|
|
172
180
|
*/
|
|
173
181
|
listApplicationSnapshots(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationSnapshotsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationSnapshotsResponse, AWSError>;
|
|
182
|
+
/**
|
|
183
|
+
* Lists all the versions for the specified application, including versions that were rolled back. The response also includes a summary of the configuration associated with each version. To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation. This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
|
|
184
|
+
*/
|
|
185
|
+
listApplicationVersions(params: KinesisAnalyticsV2.Types.ListApplicationVersionsRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationVersionsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationVersionsResponse, AWSError>;
|
|
186
|
+
/**
|
|
187
|
+
* Lists all the versions for the specified application, including versions that were rolled back. The response also includes a summary of the configuration associated with each version. To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation. This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
|
|
188
|
+
*/
|
|
189
|
+
listApplicationVersions(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationVersionsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationVersionsResponse, AWSError>;
|
|
174
190
|
/**
|
|
175
191
|
* Returns a list of Kinesis Data Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status. If you want detailed information about a specific application, use DescribeApplication.
|
|
176
192
|
*/
|
|
@@ -236,11 +252,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
236
252
|
*/
|
|
237
253
|
updateApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UpdateApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.UpdateApplicationResponse, AWSError>;
|
|
238
254
|
/**
|
|
239
|
-
* Updates the configuration for the
|
|
255
|
+
* Updates the maintenance configuration of the Kinesis Data Analytics application. You can invoke this operation on an application that is in one of the two following states: READY or RUNNING. If you invoke it when the application is in a state other than these two states, it throws a ResourceInUseException. The service makes use of the updated configuration the next time it schedules maintenance for the application. If you invoke this operation after the service schedules maintenance, the service will apply the configuration update the next time it schedules maintenance for the application. This means that you might not see the maintenance configuration update applied to the maintenance process that follows a successful invocation of this operation, but to the following maintenance process instead. To see the current maintenance configuration of your application, invoke the DescribeApplication operation. For information about application maintenance, see Kinesis Data Analytics for Apache Flink Maintenance. This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
|
|
240
256
|
*/
|
|
241
257
|
updateApplicationMaintenanceConfiguration(params: KinesisAnalyticsV2.Types.UpdateApplicationMaintenanceConfigurationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UpdateApplicationMaintenanceConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.UpdateApplicationMaintenanceConfigurationResponse, AWSError>;
|
|
242
258
|
/**
|
|
243
|
-
* Updates the configuration for the
|
|
259
|
+
* Updates the maintenance configuration of the Kinesis Data Analytics application. You can invoke this operation on an application that is in one of the two following states: READY or RUNNING. If you invoke it when the application is in a state other than these two states, it throws a ResourceInUseException. The service makes use of the updated configuration the next time it schedules maintenance for the application. If you invoke this operation after the service schedules maintenance, the service will apply the configuration update the next time it schedules maintenance for the application. This means that you might not see the maintenance configuration update applied to the maintenance process that follows a successful invocation of this operation, but to the following maintenance process instead. To see the current maintenance configuration of your application, invoke the DescribeApplication operation. For information about application maintenance, see Kinesis Data Analytics for Apache Flink Maintenance. This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
|
|
244
260
|
*/
|
|
245
261
|
updateApplicationMaintenanceConfiguration(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UpdateApplicationMaintenanceConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.UpdateApplicationMaintenanceConfigurationResponse, AWSError>;
|
|
246
262
|
}
|
|
@@ -588,7 +604,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
588
604
|
*/
|
|
589
605
|
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescriptions;
|
|
590
606
|
/**
|
|
591
|
-
*
|
|
607
|
+
* The details of the maintenance configuration for the application.
|
|
592
608
|
*/
|
|
593
609
|
ApplicationMaintenanceConfigurationDescription?: ApplicationMaintenanceConfigurationDescription;
|
|
594
610
|
/**
|
|
@@ -603,20 +619,24 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
603
619
|
* A value you use to implement strong concurrency for application updates.
|
|
604
620
|
*/
|
|
605
621
|
ConditionalToken?: ConditionalToken;
|
|
622
|
+
/**
|
|
623
|
+
* The version to which you want to roll back the application.
|
|
624
|
+
*/
|
|
625
|
+
ApplicationVersionRolledBackTo?: ApplicationVersionId;
|
|
606
626
|
}
|
|
607
627
|
export interface ApplicationMaintenanceConfigurationDescription {
|
|
608
628
|
/**
|
|
609
|
-
* The start time for the
|
|
629
|
+
* The start time for the maintenance window.
|
|
610
630
|
*/
|
|
611
631
|
ApplicationMaintenanceWindowStartTime: ApplicationMaintenanceWindowStartTime;
|
|
612
632
|
/**
|
|
613
|
-
* The end time for the
|
|
633
|
+
* The end time for the maintenance window.
|
|
614
634
|
*/
|
|
615
635
|
ApplicationMaintenanceWindowEndTime: ApplicationMaintenanceWindowEndTime;
|
|
616
636
|
}
|
|
617
637
|
export interface ApplicationMaintenanceConfigurationUpdate {
|
|
618
638
|
/**
|
|
619
|
-
* The updated start time for the
|
|
639
|
+
* The updated start time for the maintenance window.
|
|
620
640
|
*/
|
|
621
641
|
ApplicationMaintenanceWindowStartTimeUpdate: ApplicationMaintenanceWindowStartTime;
|
|
622
642
|
}
|
|
@@ -652,7 +672,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
652
672
|
*/
|
|
653
673
|
SnapshotsEnabledUpdate: BooleanObject;
|
|
654
674
|
}
|
|
655
|
-
export type ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|"MAINTENANCE"|"ROLLING_BACK"|string;
|
|
675
|
+
export type ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|"MAINTENANCE"|"ROLLING_BACK"|"ROLLED_BACK"|string;
|
|
656
676
|
export type ApplicationSummaries = ApplicationSummary[];
|
|
657
677
|
export interface ApplicationSummary {
|
|
658
678
|
/**
|
|
@@ -677,6 +697,17 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
677
697
|
RuntimeEnvironment: RuntimeEnvironment;
|
|
678
698
|
}
|
|
679
699
|
export type ApplicationVersionId = number;
|
|
700
|
+
export type ApplicationVersionSummaries = ApplicationVersionSummary[];
|
|
701
|
+
export interface ApplicationVersionSummary {
|
|
702
|
+
/**
|
|
703
|
+
* The ID of the application version. Kinesis Data Analytics updates the ApplicationVersionId each time you update the application.
|
|
704
|
+
*/
|
|
705
|
+
ApplicationVersionId: ApplicationVersionId;
|
|
706
|
+
/**
|
|
707
|
+
* The status of the application.
|
|
708
|
+
*/
|
|
709
|
+
ApplicationStatus: ApplicationStatus;
|
|
710
|
+
}
|
|
680
711
|
export type AuthorizedUrl = string;
|
|
681
712
|
export type BooleanObject = boolean;
|
|
682
713
|
export type BucketARN = string;
|
|
@@ -1089,6 +1120,19 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1089
1120
|
*/
|
|
1090
1121
|
SnapshotDetails: SnapshotDetails;
|
|
1091
1122
|
}
|
|
1123
|
+
export interface DescribeApplicationVersionRequest {
|
|
1124
|
+
/**
|
|
1125
|
+
* The name of the application for which you want to get the version description.
|
|
1126
|
+
*/
|
|
1127
|
+
ApplicationName: ApplicationName;
|
|
1128
|
+
/**
|
|
1129
|
+
* The ID of the application version for which you want to get the description.
|
|
1130
|
+
*/
|
|
1131
|
+
ApplicationVersionId: ApplicationVersionId;
|
|
1132
|
+
}
|
|
1133
|
+
export interface DescribeApplicationVersionResponse {
|
|
1134
|
+
ApplicationVersionDetail?: ApplicationDetail;
|
|
1135
|
+
}
|
|
1092
1136
|
export interface DestinationSchema {
|
|
1093
1137
|
/**
|
|
1094
1138
|
* Specifies the format of the records on the output stream.
|
|
@@ -1523,6 +1567,31 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1523
1567
|
*/
|
|
1524
1568
|
NextToken?: NextToken;
|
|
1525
1569
|
}
|
|
1570
|
+
export type ListApplicationVersionsInputLimit = number;
|
|
1571
|
+
export interface ListApplicationVersionsRequest {
|
|
1572
|
+
/**
|
|
1573
|
+
* The name of the application for which you want to list all versions.
|
|
1574
|
+
*/
|
|
1575
|
+
ApplicationName: ApplicationName;
|
|
1576
|
+
/**
|
|
1577
|
+
* The maximum number of versions to list in this invocation of the operation.
|
|
1578
|
+
*/
|
|
1579
|
+
Limit?: ListApplicationVersionsInputLimit;
|
|
1580
|
+
/**
|
|
1581
|
+
* If a previous invocation of this operation returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see Using the AWS Command Line Interface's Pagination Options.
|
|
1582
|
+
*/
|
|
1583
|
+
NextToken?: NextToken;
|
|
1584
|
+
}
|
|
1585
|
+
export interface ListApplicationVersionsResponse {
|
|
1586
|
+
/**
|
|
1587
|
+
* A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back. To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
|
|
1588
|
+
*/
|
|
1589
|
+
ApplicationVersionSummaries?: ApplicationVersionSummaries;
|
|
1590
|
+
/**
|
|
1591
|
+
* The pagination token for the next set of results, or null if there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see Using the AWS Command Line Interface's Pagination Options.
|
|
1592
|
+
*/
|
|
1593
|
+
NextToken?: NextToken;
|
|
1594
|
+
}
|
|
1526
1595
|
export type ListApplicationsInputLimit = number;
|
|
1527
1596
|
export interface ListApplicationsRequest {
|
|
1528
1597
|
/**
|
|
@@ -2151,7 +2220,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
2151
2220
|
}
|
|
2152
2221
|
export interface UpdateApplicationMaintenanceConfigurationRequest {
|
|
2153
2222
|
/**
|
|
2154
|
-
* The name of the application for which you want to update the maintenance
|
|
2223
|
+
* The name of the application for which you want to update the maintenance configuration.
|
|
2155
2224
|
*/
|
|
2156
2225
|
ApplicationName: ApplicationName;
|
|
2157
2226
|
/**
|