cdk-lambda-subminute 2.0.438 → 2.0.439
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/.jsii +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +46 -35
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +182 -19
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +165 -93
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +586 -188
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +235 -129
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/datasync.d.ts +67 -42
- package/node_modules/aws-sdk/clients/ec2.d.ts +9 -1
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +205 -0
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +64 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +592 -88
- package/node_modules/aws-sdk/clients/ssm.d.ts +186 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +843 -320
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -372,6 +372,14 @@ declare class SSM extends Service {
|
|
372
372
|
* Retrieves information about the patches on the specified managed node and their state relative to the patch baseline being used for the node.
|
373
373
|
*/
|
374
374
|
describeInstancePatches(callback?: (err: AWSError, data: SSM.Types.DescribeInstancePatchesResult) => void): Request<SSM.Types.DescribeInstancePatchesResult, AWSError>;
|
375
|
+
/**
|
376
|
+
* An API operation used by the Systems Manager console to display information about Systems Manager managed nodes.
|
377
|
+
*/
|
378
|
+
describeInstanceProperties(params: SSM.Types.DescribeInstancePropertiesRequest, callback?: (err: AWSError, data: SSM.Types.DescribeInstancePropertiesResult) => void): Request<SSM.Types.DescribeInstancePropertiesResult, AWSError>;
|
379
|
+
/**
|
380
|
+
* An API operation used by the Systems Manager console to display information about Systems Manager managed nodes.
|
381
|
+
*/
|
382
|
+
describeInstanceProperties(callback?: (err: AWSError, data: SSM.Types.DescribeInstancePropertiesResult) => void): Request<SSM.Types.DescribeInstancePropertiesResult, AWSError>;
|
375
383
|
/**
|
376
384
|
* Describes a specific delete inventory operation.
|
377
385
|
*/
|
@@ -1245,6 +1253,7 @@ declare namespace SSM {
|
|
1245
1253
|
export type AllowedPattern = string;
|
1246
1254
|
export type ApplyOnlyAtCronInterval = boolean;
|
1247
1255
|
export type ApproveAfterDays = number;
|
1256
|
+
export type Architecture = string;
|
1248
1257
|
export interface AssociateOpsItemRelatedItemRequest {
|
1249
1258
|
/**
|
1250
1259
|
* The ID of the OpsItem to which you want to associate a resource as a related item.
|
@@ -2735,7 +2744,7 @@ declare namespace SSM {
|
|
2735
2744
|
*/
|
2736
2745
|
Attachments?: AttachmentsSourceList;
|
2737
2746
|
/**
|
2738
|
-
* A name for the SSM document. You can't use the following strings as document name prefixes. These are reserved by Amazon Web Services for use as document name prefixes: aws amazon amzn
|
2747
|
+
* A name for the SSM document. You can't use the following strings as document name prefixes. These are reserved by Amazon Web Services for use as document name prefixes: aws amazon amzn AWSEC2 AWSConfigRemediation AWSSupport
|
2739
2748
|
*/
|
2740
2749
|
Name: DocumentName;
|
2741
2750
|
/**
|
@@ -2779,7 +2788,7 @@ declare namespace SSM {
|
|
2779
2788
|
*/
|
2780
2789
|
Description?: MaintenanceWindowDescription;
|
2781
2790
|
/**
|
2782
|
-
* The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become active. StartDate allows you to delay activation of the maintenance window until the specified future date.
|
2791
|
+
* The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become active. StartDate allows you to delay activation of the maintenance window until the specified future date. When using a rate schedule, if you provide a start date that occurs in the past, the current date and time are used as the start date.
|
2783
2792
|
*/
|
2784
2793
|
StartDate?: MaintenanceWindowStringDateTime;
|
2785
2794
|
/**
|
@@ -3678,6 +3687,35 @@ declare namespace SSM {
|
|
3678
3687
|
*/
|
3679
3688
|
NextToken?: NextToken;
|
3680
3689
|
}
|
3690
|
+
export type DescribeInstancePropertiesMaxResults = number;
|
3691
|
+
export interface DescribeInstancePropertiesRequest {
|
3692
|
+
/**
|
3693
|
+
* An array of instance property filters.
|
3694
|
+
*/
|
3695
|
+
InstancePropertyFilterList?: InstancePropertyFilterList;
|
3696
|
+
/**
|
3697
|
+
* The request filters to use with the operator.
|
3698
|
+
*/
|
3699
|
+
FiltersWithOperator?: InstancePropertyStringFilterList;
|
3700
|
+
/**
|
3701
|
+
* The maximum number of items to return for the call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
|
3702
|
+
*/
|
3703
|
+
MaxResults?: DescribeInstancePropertiesMaxResults;
|
3704
|
+
/**
|
3705
|
+
* The token provided by a previous request to use to return the next set of properties.
|
3706
|
+
*/
|
3707
|
+
NextToken?: NextToken;
|
3708
|
+
}
|
3709
|
+
export interface DescribeInstancePropertiesResult {
|
3710
|
+
/**
|
3711
|
+
* Properties for the managed instances.
|
3712
|
+
*/
|
3713
|
+
InstanceProperties?: InstanceProperties;
|
3714
|
+
/**
|
3715
|
+
* The token for the next set of properties to return. Use this token to get the next set of results.
|
3716
|
+
*/
|
3717
|
+
NextToken?: NextToken;
|
3718
|
+
}
|
3681
3719
|
export interface DescribeInventoryDeletionsRequest {
|
3682
3720
|
/**
|
3683
3721
|
* Specify the delete inventory ID for which you want information. This ID was returned by the DeleteInventory operation.
|
@@ -5397,7 +5435,7 @@ declare namespace SSM {
|
|
5397
5435
|
}
|
5398
5436
|
export interface GetParametersRequest {
|
5399
5437
|
/**
|
5400
|
-
* The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you from another account, you must use the full ARNs. To query by parameter label, use "Name": "name:label". To query by parameter version, use "Name": "name:version". For
|
5438
|
+
* The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you from another account, you must use the full ARNs. To query by parameter label, use "Name": "name:label". To query by parameter version, use "Name": "name:version". The results for GetParameters requests are listed in alphabetical order in query responses. For information about shared parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.
|
5401
5439
|
*/
|
5402
5440
|
Names: ParameterNameList;
|
5403
5441
|
/**
|
@@ -5773,6 +5811,7 @@ declare namespace SSM {
|
|
5773
5811
|
}
|
5774
5812
|
export type InstanceInformationStringFilterKey = string;
|
5775
5813
|
export type InstanceInformationStringFilterList = InstanceInformationStringFilter[];
|
5814
|
+
export type InstanceName = string;
|
5776
5815
|
export interface InstancePatchState {
|
5777
5816
|
/**
|
5778
5817
|
* The ID of the managed node the high-level patch compliance information was collected for.
|
@@ -5884,7 +5923,145 @@ declare namespace SSM {
|
|
5884
5923
|
export type InstancePatchStateList = InstancePatchState[];
|
5885
5924
|
export type InstancePatchStateOperatorType = "Equal"|"NotEqual"|"LessThan"|"GreaterThan"|string;
|
5886
5925
|
export type InstancePatchStatesList = InstancePatchState[];
|
5926
|
+
export type InstanceProperties = InstanceProperty[];
|
5927
|
+
export interface InstanceProperty {
|
5928
|
+
/**
|
5929
|
+
* The value of the EC2 Name tag associated with the node. If a Name tag hasn't been applied to the node, this value is blank.
|
5930
|
+
*/
|
5931
|
+
Name?: InstanceName;
|
5932
|
+
/**
|
5933
|
+
* The ID of the managed node.
|
5934
|
+
*/
|
5935
|
+
InstanceId?: InstanceId;
|
5936
|
+
/**
|
5937
|
+
* The instance type of the managed node. For example, t3.large.
|
5938
|
+
*/
|
5939
|
+
InstanceType?: InstanceType;
|
5940
|
+
/**
|
5941
|
+
* The instance profile attached to the node. If an instance profile isn't attached to the node, this value is blank.
|
5942
|
+
*/
|
5943
|
+
InstanceRole?: InstanceRole;
|
5944
|
+
/**
|
5945
|
+
* The name of the key pair associated with the node. If a key pair isnt't associated with the node, this value is blank.
|
5946
|
+
*/
|
5947
|
+
KeyName?: KeyName;
|
5948
|
+
/**
|
5949
|
+
* The current state of the node.
|
5950
|
+
*/
|
5951
|
+
InstanceState?: InstanceState;
|
5952
|
+
/**
|
5953
|
+
* The CPU architecture of the node. For example, x86_64.
|
5954
|
+
*/
|
5955
|
+
Architecture?: Architecture;
|
5956
|
+
/**
|
5957
|
+
* The public IPv4 address assigned to the node. If a public IPv4 address isn't assigned to the node, this value is blank.
|
5958
|
+
*/
|
5959
|
+
IPAddress?: IPAddress;
|
5960
|
+
/**
|
5961
|
+
* The timestamp for when the node was launched.
|
5962
|
+
*/
|
5963
|
+
LaunchTime?: DateTime;
|
5964
|
+
/**
|
5965
|
+
* Connection status of the SSM Agent on the managed node.
|
5966
|
+
*/
|
5967
|
+
PingStatus?: PingStatus;
|
5968
|
+
/**
|
5969
|
+
* The date and time when the SSM Agent last pinged the Systems Manager service.
|
5970
|
+
*/
|
5971
|
+
LastPingDateTime?: DateTime;
|
5972
|
+
/**
|
5973
|
+
* The version of SSM Agent running on your managed node.
|
5974
|
+
*/
|
5975
|
+
AgentVersion?: Version;
|
5976
|
+
/**
|
5977
|
+
* The operating system platform type of the managed node. For example, Windows.
|
5978
|
+
*/
|
5979
|
+
PlatformType?: PlatformType;
|
5980
|
+
/**
|
5981
|
+
* The name of the operating system platform running on your managed node.
|
5982
|
+
*/
|
5983
|
+
PlatformName?: PlatformName;
|
5984
|
+
/**
|
5985
|
+
* The version of the OS platform running on your managed node.
|
5986
|
+
*/
|
5987
|
+
PlatformVersion?: PlatformVersion;
|
5988
|
+
/**
|
5989
|
+
* The activation ID created by Systems Manager when the server or virtual machine (VM) was registered
|
5990
|
+
*/
|
5991
|
+
ActivationId?: ActivationId;
|
5992
|
+
/**
|
5993
|
+
* The IAM role used in the hybrid activation to register the node with Systems Manager.
|
5994
|
+
*/
|
5995
|
+
IamRole?: IamRole;
|
5996
|
+
/**
|
5997
|
+
* The date the node was registered with Systems Manager.
|
5998
|
+
*/
|
5999
|
+
RegistrationDate?: DateTime;
|
6000
|
+
/**
|
6001
|
+
* The type of managed node.
|
6002
|
+
*/
|
6003
|
+
ResourceType?: String;
|
6004
|
+
/**
|
6005
|
+
* The fully qualified host name of the managed node.
|
6006
|
+
*/
|
6007
|
+
ComputerName?: ComputerName;
|
6008
|
+
/**
|
6009
|
+
* The status of the State Manager association applied to the managed node.
|
6010
|
+
*/
|
6011
|
+
AssociationStatus?: StatusName;
|
6012
|
+
/**
|
6013
|
+
* The date the association was last run.
|
6014
|
+
*/
|
6015
|
+
LastAssociationExecutionDate?: DateTime;
|
6016
|
+
/**
|
6017
|
+
* The last date the association was successfully run.
|
6018
|
+
*/
|
6019
|
+
LastSuccessfulAssociationExecutionDate?: DateTime;
|
6020
|
+
AssociationOverview?: InstanceAggregatedAssociationOverview;
|
6021
|
+
/**
|
6022
|
+
* The ID of the source resource.
|
6023
|
+
*/
|
6024
|
+
SourceId?: SourceId;
|
6025
|
+
/**
|
6026
|
+
* The type of the source resource.
|
6027
|
+
*/
|
6028
|
+
SourceType?: SourceType;
|
6029
|
+
}
|
6030
|
+
export interface InstancePropertyFilter {
|
6031
|
+
/**
|
6032
|
+
* The name of the filter.
|
6033
|
+
*/
|
6034
|
+
key: InstancePropertyFilterKey;
|
6035
|
+
/**
|
6036
|
+
* The filter values.
|
6037
|
+
*/
|
6038
|
+
valueSet: InstancePropertyFilterValueSet;
|
6039
|
+
}
|
6040
|
+
export type InstancePropertyFilterKey = "InstanceIds"|"AgentVersion"|"PingStatus"|"PlatformTypes"|"DocumentName"|"ActivationIds"|"IamRole"|"ResourceType"|"AssociationStatus"|string;
|
6041
|
+
export type InstancePropertyFilterList = InstancePropertyFilter[];
|
6042
|
+
export type InstancePropertyFilterOperator = "Equal"|"NotEqual"|"BeginWith"|"LessThan"|"GreaterThan"|string;
|
6043
|
+
export type InstancePropertyFilterValue = string;
|
6044
|
+
export type InstancePropertyFilterValueSet = InstancePropertyFilterValue[];
|
6045
|
+
export interface InstancePropertyStringFilter {
|
6046
|
+
/**
|
6047
|
+
* The filter key name to describe your managed nodes.
|
6048
|
+
*/
|
6049
|
+
Key: InstancePropertyStringFilterKey;
|
6050
|
+
/**
|
6051
|
+
* The filter key name to describe your managed nodes.
|
6052
|
+
*/
|
6053
|
+
Values: InstancePropertyFilterValueSet;
|
6054
|
+
/**
|
6055
|
+
* The operator used by the filter call.
|
6056
|
+
*/
|
6057
|
+
Operator?: InstancePropertyFilterOperator;
|
6058
|
+
}
|
6059
|
+
export type InstancePropertyStringFilterKey = string;
|
6060
|
+
export type InstancePropertyStringFilterList = InstancePropertyStringFilter[];
|
6061
|
+
export type InstanceRole = string;
|
6062
|
+
export type InstanceState = string;
|
5887
6063
|
export type InstanceTagName = string;
|
6064
|
+
export type InstanceType = string;
|
5888
6065
|
export type InstancesCount = number;
|
5889
6066
|
export type Integer = number;
|
5890
6067
|
export interface InventoryAggregator {
|
@@ -6106,6 +6283,7 @@ declare namespace SSM {
|
|
6106
6283
|
export type InvocationTraceOutput = string;
|
6107
6284
|
export type IsSubTypeSchema = boolean;
|
6108
6285
|
export type KeyList = TagKey[];
|
6286
|
+
export type KeyName = string;
|
6109
6287
|
export interface LabelParameterVersionRequest {
|
6110
6288
|
/**
|
6111
6289
|
* The parameter name on which you want to attach one or more labels. You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
|
@@ -8115,8 +8293,10 @@ declare namespace SSM {
|
|
8115
8293
|
export type PatchVendor = string;
|
8116
8294
|
export type PatchVersion = string;
|
8117
8295
|
export type PingStatus = "Online"|"ConnectionLost"|"Inactive"|string;
|
8296
|
+
export type PlatformName = string;
|
8118
8297
|
export type PlatformType = "Windows"|"Linux"|"MacOS"|string;
|
8119
8298
|
export type PlatformTypeList = PlatformType[];
|
8299
|
+
export type PlatformVersion = string;
|
8120
8300
|
export type Policy = string;
|
8121
8301
|
export type PolicyHash = string;
|
8122
8302
|
export type PolicyId = string;
|
@@ -8361,7 +8541,7 @@ declare namespace SSM {
|
|
8361
8541
|
*/
|
8362
8542
|
TaskArn: MaintenanceWindowTaskArn;
|
8363
8543
|
/**
|
8364
|
-
* The Amazon Resource Name (ARN) of the IAM service role for Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses
|
8544
|
+
* The Amazon Resource Name (ARN) of the IAM service role for Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses a service-linked role in your account. If no appropriate service-linked role for Systems Manager exists in your account, it is created when you run RegisterTaskWithMaintenanceWindow. However, for an improved security posture, we strongly recommend creating a custom policy and custom service role for running your maintenance window tasks. The policy can be crafted to provide only the permissions needed for your particular maintenance window tasks. For more information, see Setting up maintenance windows in the in the Amazon Web Services Systems Manager User Guide.
|
8365
8545
|
*/
|
8366
8546
|
ServiceRoleArn?: ServiceRole;
|
8367
8547
|
/**
|
@@ -9628,7 +9808,7 @@ declare namespace SSM {
|
|
9628
9808
|
*/
|
9629
9809
|
Description?: MaintenanceWindowDescription;
|
9630
9810
|
/**
|
9631
|
-
* The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become active. StartDate allows you to delay activation of the maintenance window until the specified future date.
|
9811
|
+
* The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become active. StartDate allows you to delay activation of the maintenance window until the specified future date. When using a rate schedule, if you provide a start date that occurs in the past, the current date and time are used as the start date.
|
9632
9812
|
*/
|
9633
9813
|
StartDate?: MaintenanceWindowStringDateTime;
|
9634
9814
|
/**
|
@@ -9792,7 +9972,7 @@ declare namespace SSM {
|
|
9792
9972
|
*/
|
9793
9973
|
TaskArn?: MaintenanceWindowTaskArn;
|
9794
9974
|
/**
|
9795
|
-
* The Amazon Resource Name (ARN) of the IAM service role for Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses
|
9975
|
+
* The Amazon Resource Name (ARN) of the IAM service role for Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses a service-linked role in your account. If no appropriate service-linked role for Systems Manager exists in your account, it is created when you run RegisterTaskWithMaintenanceWindow. However, for an improved security posture, we strongly recommend creating a custom policy and custom service role for running your maintenance window tasks. The policy can be crafted to provide only the permissions needed for your particular maintenance window tasks. For more information, see Setting up maintenance windows in the in the Amazon Web Services Systems Manager User Guide.
|
9796
9976
|
*/
|
9797
9977
|
ServiceRoleArn?: ServiceRole;
|
9798
9978
|
/**
|