cdk-lambda-subminute 2.0.277 → 2.0.279
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/.gitattributes +0 -1
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/codepipeline-2015-07-09.min.json +146 -55
- package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +26 -25
- package/node_modules/aws-sdk/apis/migrationhub-config-2019-06-30.min.json +15 -0
- package/node_modules/aws-sdk/apis/migrationhubstrategy-2020-02-19.min.json +43 -8
- package/node_modules/aws-sdk/apis/migrationhubstrategy-2020-02-19.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/opensearchserverless-2021-11-01.min.json +296 -45
- package/node_modules/aws-sdk/apis/opensearchserverless-2021-11-01.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/codepipeline.d.ts +108 -1
- package/node_modules/aws-sdk/clients/connectcases.d.ts +5 -5
- package/node_modules/aws-sdk/clients/ec2.d.ts +3 -3
- package/node_modules/aws-sdk/clients/eks.d.ts +3 -3
- package/node_modules/aws-sdk/clients/groundstation.d.ts +5 -0
- package/node_modules/aws-sdk/clients/iam.d.ts +4 -4
- package/node_modules/aws-sdk/clients/migrationhubconfig.d.ts +16 -0
- package/node_modules/aws-sdk/clients/migrationhubstrategy.d.ts +57 -1
- package/node_modules/aws-sdk/clients/opensearchserverless.d.ts +349 -3
- 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 +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +149 -58
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +86 -86
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -1322,6 +1322,35 @@ declare namespace CodePipeline {
|
|
1322
1322
|
*/
|
1323
1323
|
jobDetails?: ThirdPartyJobDetails;
|
1324
1324
|
}
|
1325
|
+
export interface GitConfiguration {
|
1326
|
+
/**
|
1327
|
+
* The name of the pipeline source action where the trigger configuration, such as Git tags, is specified. The trigger configuration will start the pipeline upon the specified change only. You can only specify one trigger configuration per source action.
|
1328
|
+
*/
|
1329
|
+
sourceActionName: ActionName;
|
1330
|
+
/**
|
1331
|
+
* The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details. Git tags is the only supported event type.
|
1332
|
+
*/
|
1333
|
+
push?: GitPushFilterList;
|
1334
|
+
}
|
1335
|
+
export interface GitPushFilter {
|
1336
|
+
/**
|
1337
|
+
* The field that contains the details for the Git tags trigger configuration.
|
1338
|
+
*/
|
1339
|
+
tags?: GitTagFilterCriteria;
|
1340
|
+
}
|
1341
|
+
export type GitPushFilterList = GitPushFilter[];
|
1342
|
+
export interface GitTagFilterCriteria {
|
1343
|
+
/**
|
1344
|
+
* The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
|
1345
|
+
*/
|
1346
|
+
includes?: GitTagPatternList;
|
1347
|
+
/**
|
1348
|
+
* The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
|
1349
|
+
*/
|
1350
|
+
excludes?: GitTagPatternList;
|
1351
|
+
}
|
1352
|
+
export type GitTagNamePattern = string;
|
1353
|
+
export type GitTagPatternList = GitTagNamePattern[];
|
1325
1354
|
export interface InputArtifact {
|
1326
1355
|
/**
|
1327
1356
|
* The name of the artifact to be worked on (for example, "My App"). Artifacts are the files that are worked on by actions in the pipeline. See the action configuration for each action for details about artifact parameters. For example, the S3 source action input artifact is a file name (or file path), and the files are generally provided as a ZIP file. Example artifact name: SampleApp_Windows.zip The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
|
@@ -1660,6 +1689,18 @@ declare namespace CodePipeline {
|
|
1660
1689
|
* The version number of the pipeline. A new pipeline always has a version number of 1. This number is incremented when a pipeline is updated.
|
1661
1690
|
*/
|
1662
1691
|
version?: PipelineVersion;
|
1692
|
+
/**
|
1693
|
+
* CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications. V1 type pipelines have a JSON structure that contains standard pipeline, stage, and action-level parameters. V2 type pipelines have the same structure as a V1 type, along with additional parameters for release safety and trigger configuration. Including V2 parameters, such as triggers on Git tags, in the pipeline JSON when creating or updating a pipeline will result in the pipeline having the V2 type of pipeline and the associated costs. For information about pricing for CodePipeline, see Pricing. For information about which type of pipeline to choose, see What type of pipeline is right for me?.
|
1694
|
+
*/
|
1695
|
+
pipelineType?: PipelineType;
|
1696
|
+
/**
|
1697
|
+
* The trigger configuration specifying a type of event, such as Git tags, that starts the pipeline. When a trigger configuration is specified, default change detection for repository and branch commits is disabled.
|
1698
|
+
*/
|
1699
|
+
triggers?: PipelineTriggerDeclarationList;
|
1700
|
+
/**
|
1701
|
+
* A list that defines the pipeline variables for a pipeline resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9@\-_]+.
|
1702
|
+
*/
|
1703
|
+
variables?: PipelineVariableDeclarationList;
|
1663
1704
|
}
|
1664
1705
|
export interface PipelineExecution {
|
1665
1706
|
/**
|
@@ -1686,6 +1727,11 @@ declare namespace CodePipeline {
|
|
1686
1727
|
* A list of ArtifactRevision objects included in a pipeline execution.
|
1687
1728
|
*/
|
1688
1729
|
artifactRevisions?: ArtifactRevisionList;
|
1730
|
+
trigger?: ExecutionTrigger;
|
1731
|
+
/**
|
1732
|
+
* A list of pipeline variables used for the pipeline execution.
|
1733
|
+
*/
|
1734
|
+
variables?: ResolvedPipelineVariableList;
|
1689
1735
|
}
|
1690
1736
|
export type PipelineExecutionId = string;
|
1691
1737
|
export type PipelineExecutionStatus = "Cancelled"|"InProgress"|"Stopped"|"Stopping"|"Succeeded"|"Superseded"|"Failed"|string;
|
@@ -1751,6 +1797,10 @@ declare namespace CodePipeline {
|
|
1751
1797
|
* The version number of the pipeline.
|
1752
1798
|
*/
|
1753
1799
|
version?: PipelineVersion;
|
1800
|
+
/**
|
1801
|
+
* CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications. V1 type pipelines have a JSON structure that contains standard pipeline, stage, and action-level parameters. V2 type pipelines have the same structure as a V1 type, along with additional parameters for release safety and trigger configuration. Including V2 parameters, such as triggers on Git tags, in the pipeline JSON when creating or updating a pipeline will result in the pipeline having the V2 type of pipeline and the associated costs. For information about pricing for CodePipeline, see Pricing. For information about which type of pipeline to choose, see What type of pipeline is right for me?.
|
1802
|
+
*/
|
1803
|
+
pipelineType?: PipelineType;
|
1754
1804
|
/**
|
1755
1805
|
* The date and time the pipeline was created, in timestamp format.
|
1756
1806
|
*/
|
@@ -1760,6 +1810,48 @@ declare namespace CodePipeline {
|
|
1760
1810
|
*/
|
1761
1811
|
updated?: Timestamp;
|
1762
1812
|
}
|
1813
|
+
export interface PipelineTriggerDeclaration {
|
1814
|
+
/**
|
1815
|
+
* The source provider for the event, such as connections configured for a repository with Git tags, for the specified trigger configuration.
|
1816
|
+
*/
|
1817
|
+
providerType: PipelineTriggerProviderType;
|
1818
|
+
/**
|
1819
|
+
* Provides the filter criteria and the source stage for the repository event that starts the pipeline, such as Git tags.
|
1820
|
+
*/
|
1821
|
+
gitConfiguration: GitConfiguration;
|
1822
|
+
}
|
1823
|
+
export type PipelineTriggerDeclarationList = PipelineTriggerDeclaration[];
|
1824
|
+
export type PipelineTriggerProviderType = "CodeStarSourceConnection"|string;
|
1825
|
+
export type PipelineType = "V1"|"V2"|string;
|
1826
|
+
export interface PipelineVariable {
|
1827
|
+
/**
|
1828
|
+
* The name of a pipeline-level variable.
|
1829
|
+
*/
|
1830
|
+
name: PipelineVariableName;
|
1831
|
+
/**
|
1832
|
+
* The value of a pipeline-level variable.
|
1833
|
+
*/
|
1834
|
+
value: PipelineVariableValue;
|
1835
|
+
}
|
1836
|
+
export interface PipelineVariableDeclaration {
|
1837
|
+
/**
|
1838
|
+
* The name of a pipeline-level variable.
|
1839
|
+
*/
|
1840
|
+
name: PipelineVariableName;
|
1841
|
+
/**
|
1842
|
+
* The value of a pipeline-level variable.
|
1843
|
+
*/
|
1844
|
+
defaultValue?: PipelineVariableValue;
|
1845
|
+
/**
|
1846
|
+
* The description of a pipeline-level variable. It's used to add additional context about the variable, and not being used at time when pipeline executes.
|
1847
|
+
*/
|
1848
|
+
description?: PipelineVariableDescription;
|
1849
|
+
}
|
1850
|
+
export type PipelineVariableDeclarationList = PipelineVariableDeclaration[];
|
1851
|
+
export type PipelineVariableDescription = string;
|
1852
|
+
export type PipelineVariableList = PipelineVariable[];
|
1853
|
+
export type PipelineVariableName = string;
|
1854
|
+
export type PipelineVariableValue = string;
|
1763
1855
|
export type PipelineVersion = number;
|
1764
1856
|
export type PolicyStatementsTemplate = string;
|
1765
1857
|
export interface PollForJobsInput {
|
@@ -1951,6 +2043,17 @@ declare namespace CodePipeline {
|
|
1951
2043
|
export interface RegisterWebhookWithThirdPartyOutput {
|
1952
2044
|
}
|
1953
2045
|
export type ResolvedActionConfigurationMap = {[key: string]: String};
|
2046
|
+
export interface ResolvedPipelineVariable {
|
2047
|
+
/**
|
2048
|
+
* The name of a pipeline-level variable.
|
2049
|
+
*/
|
2050
|
+
name?: String;
|
2051
|
+
/**
|
2052
|
+
* The resolved value of a pipeline-level variable.
|
2053
|
+
*/
|
2054
|
+
resolvedValue?: String;
|
2055
|
+
}
|
2056
|
+
export type ResolvedPipelineVariableList = ResolvedPipelineVariable[];
|
1954
2057
|
export type ResourceArn = string;
|
1955
2058
|
export interface RetryStageExecutionInput {
|
1956
2059
|
/**
|
@@ -2087,6 +2190,10 @@ declare namespace CodePipeline {
|
|
2087
2190
|
* The name of the pipeline to start.
|
2088
2191
|
*/
|
2089
2192
|
name: PipelineName;
|
2193
|
+
/**
|
2194
|
+
* A list that overrides pipeline variables for a pipeline execution that's being started. Variable names must match [A-Za-z0-9@\-_]+, and the values can be anything except an empty string.
|
2195
|
+
*/
|
2196
|
+
variables?: PipelineVariableList;
|
2090
2197
|
/**
|
2091
2198
|
* The system-generated unique ID used to identify a unique execution request.
|
2092
2199
|
*/
|
@@ -2237,7 +2344,7 @@ declare namespace CodePipeline {
|
|
2237
2344
|
disabledReason?: DisabledReason;
|
2238
2345
|
}
|
2239
2346
|
export type TriggerDetail = string;
|
2240
|
-
export type TriggerType = "CreatePipeline"|"StartPipelineExecution"|"PollForSourceChanges"|"Webhook"|"CloudWatchEvent"|"PutActionRevision"|string;
|
2347
|
+
export type TriggerType = "CreatePipeline"|"StartPipelineExecution"|"PollForSourceChanges"|"Webhook"|"CloudWatchEvent"|"PutActionRevision"|"WebhookV2"|string;
|
2241
2348
|
export interface UntagResourceInput {
|
2242
2349
|
/**
|
2243
2350
|
* The Amazon Resource Name (ARN) of the resource to remove tags from.
|
@@ -28,11 +28,11 @@ declare class ConnectCases extends Service {
|
|
28
28
|
*/
|
29
29
|
batchPutFieldOptions(callback?: (err: AWSError, data: ConnectCases.Types.BatchPutFieldOptionsResponse) => void): Request<ConnectCases.Types.BatchPutFieldOptionsResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types.
|
31
|
+
* Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types. The following fields are required when creating a case: <ul> <li> <p> <code>customer_id</code> - You must provide the full customer profile ARN in this format: <code>arn:aws:profile:your_AWS_Region:your_AWS_account ID:domains/your_profiles_domain_name/profiles/profile_ID</code> </p> </li> <li> <p> <code>title</code> </p> </li> </ul>
|
32
32
|
*/
|
33
33
|
createCase(params: ConnectCases.Types.CreateCaseRequest, callback?: (err: AWSError, data: ConnectCases.Types.CreateCaseResponse) => void): Request<ConnectCases.Types.CreateCaseResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types.
|
35
|
+
* Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types. The following fields are required when creating a case: <ul> <li> <p> <code>customer_id</code> - You must provide the full customer profile ARN in this format: <code>arn:aws:profile:your_AWS_Region:your_AWS_account ID:domains/your_profiles_domain_name/profiles/profile_ID</code> </p> </li> <li> <p> <code>title</code> </p> </li> </ul>
|
36
36
|
*/
|
37
37
|
createCase(callback?: (err: AWSError, data: ConnectCases.Types.CreateCaseResponse) => void): Request<ConnectCases.Types.CreateCaseResponse, AWSError>;
|
38
38
|
/**
|
@@ -180,11 +180,11 @@ declare class ConnectCases extends Service {
|
|
180
180
|
*/
|
181
181
|
listTemplates(callback?: (err: AWSError, data: ConnectCases.Types.ListTemplatesResponse) => void): Request<ConnectCases.Types.ListTemplatesResponse, AWSError>;
|
182
182
|
/**
|
183
|
-
*
|
183
|
+
* Adds case event publishing configuration. For a complete list of fields you can add to the event message, see Create case fields in the Amazon Connect Administrator Guide
|
184
184
|
*/
|
185
185
|
putCaseEventConfiguration(params: ConnectCases.Types.PutCaseEventConfigurationRequest, callback?: (err: AWSError, data: ConnectCases.Types.PutCaseEventConfigurationResponse) => void): Request<ConnectCases.Types.PutCaseEventConfigurationResponse, AWSError>;
|
186
186
|
/**
|
187
|
-
*
|
187
|
+
* Adds case event publishing configuration. For a complete list of fields you can add to the event message, see Create case fields in the Amazon Connect Administrator Guide
|
188
188
|
*/
|
189
189
|
putCaseEventConfiguration(callback?: (err: AWSError, data: ConnectCases.Types.PutCaseEventConfigurationResponse) => void): Request<ConnectCases.Types.PutCaseEventConfigurationResponse, AWSError>;
|
190
190
|
/**
|
@@ -1444,7 +1444,7 @@ declare namespace ConnectCases {
|
|
1444
1444
|
}
|
1445
1445
|
export interface UpdateLayoutRequest {
|
1446
1446
|
/**
|
1447
|
-
* Information about which fields will be present in the layout, the order of the fields
|
1447
|
+
* Information about which fields will be present in the layout, the order of the fields.
|
1448
1448
|
*/
|
1449
1449
|
content?: LayoutContent;
|
1450
1450
|
/**
|
@@ -16431,7 +16431,7 @@ declare namespace EC2 {
|
|
16431
16431
|
}
|
16432
16432
|
export interface DescribeSpotPriceHistoryRequest {
|
16433
16433
|
/**
|
16434
|
-
* The filters. availability-zone - The Availability Zone for which prices should be returned. instance-type - The type of instance (for example, m3.medium). product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)). spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported). timestamp - The time stamp of the Spot price history, in UTC format (for example,
|
16434
|
+
* The filters. availability-zone - The Availability Zone for which prices should be returned. instance-type - The type of instance (for example, m3.medium). product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)). spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported). timestamp - The time stamp of the Spot price history, in UTC format (for example, ddd MMM dd HH:mm:ss UTC YYYY). You can use wildcards (* and ?). Greater than or less than comparison is not supported.
|
16435
16435
|
*/
|
16436
16436
|
Filters?: FilterList;
|
16437
16437
|
/**
|
@@ -21962,7 +21962,7 @@ declare namespace EC2 {
|
|
21962
21962
|
}
|
21963
21963
|
export interface HibernationOptionsRequest {
|
21964
21964
|
/**
|
21965
|
-
* Set to true to enable your instance for hibernation. Default: false
|
21965
|
+
* Set to true to enable your instance for hibernation. For Spot Instances, if you set Configured to true, either omit the InstanceInterruptionBehavior parameter (for SpotMarketOptions ), or set it to hibernate. When Configured is true: If you omit InstanceInterruptionBehavior, it defaults to hibernate. If you set InstanceInterruptionBehavior to a value other than hibernate, you'll get an error. Default: false
|
21966
21966
|
*/
|
21967
21967
|
Configured?: Boolean;
|
21968
21968
|
}
|
@@ -34779,7 +34779,7 @@ declare namespace EC2 {
|
|
34779
34779
|
*/
|
34780
34780
|
ValidUntil?: DateTime;
|
34781
34781
|
/**
|
34782
|
-
* The behavior when a Spot Instance is interrupted.
|
34782
|
+
* The behavior when a Spot Instance is interrupted. If Configured (for HibernationOptions ) is set to true, the InstanceInterruptionBehavior parameter is automatically set to hibernate. If you set it to stop or terminate, you'll get an error. If Configured (for HibernationOptions ) is set to false or null, the InstanceInterruptionBehavior parameter is automatically set to terminate. You can also set it to stop or hibernate. For more information, see Interruption behavior in the Amazon EC2 User Guide.
|
34783
34783
|
*/
|
34784
34784
|
InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
|
34785
34785
|
}
|
@@ -648,7 +648,7 @@ declare namespace EKS {
|
|
648
648
|
*/
|
649
649
|
resourceIds?: StringList;
|
650
650
|
}
|
651
|
-
export type ClusterIssueCode = "AccessDenied"|"ClusterUnreachable"|"ConfigurationConflict"|"InternalFailure"|"ResourceLimitExceeded"|"ResourceNotFound"|string;
|
651
|
+
export type ClusterIssueCode = "AccessDenied"|"ClusterUnreachable"|"ConfigurationConflict"|"InternalFailure"|"ResourceLimitExceeded"|"ResourceNotFound"|"IamRoleNotFound"|"VpcNotFound"|"InsufficientFreeAddresses"|"Ec2ServiceNotSubscribed"|"Ec2SubnetNotFound"|"Ec2SecurityGroupNotFound"|"KmsGrantRevoked"|"KmsKeyNotFound"|"KmsKeyMarkedForDeletion"|"KmsKeyDisabled"|"StsRegionalEndpointDisabled"|"UnsupportedVersion"|"Other"|string;
|
652
652
|
export type ClusterIssueList = ClusterIssue[];
|
653
653
|
export type ClusterName = string;
|
654
654
|
export type ClusterStatus = "CREATING"|"ACTIVE"|"DELETING"|"FAILED"|"UPDATING"|"PENDING"|string;
|
@@ -2041,7 +2041,7 @@ declare namespace EKS {
|
|
2041
2041
|
*/
|
2042
2042
|
value?: String;
|
2043
2043
|
}
|
2044
|
-
export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|string;
|
2044
|
+
export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|"ConfigurationValues"|"SecurityGroups"|"Subnets"|string;
|
2045
2045
|
export type UpdateParams = UpdateParam[];
|
2046
2046
|
export type UpdateStatus = "InProgress"|"Failed"|"Cancelled"|"Successful"|string;
|
2047
2047
|
export interface UpdateTaintsPayload {
|
@@ -2054,7 +2054,7 @@ declare namespace EKS {
|
|
2054
2054
|
*/
|
2055
2055
|
removeTaints?: taintsList;
|
2056
2056
|
}
|
2057
|
-
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|string;
|
2057
|
+
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|string;
|
2058
2058
|
export interface VpcConfigRequest {
|
2059
2059
|
/**
|
2060
2060
|
* Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.
|
@@ -1324,12 +1324,17 @@ declare namespace GroundStation {
|
|
1324
1324
|
export type IpV4Address = string;
|
1325
1325
|
export type JsonString = string;
|
1326
1326
|
export type KeyAliasArn = string;
|
1327
|
+
export type KeyAliasName = string;
|
1327
1328
|
export type KeyArn = string;
|
1328
1329
|
export interface KmsKey {
|
1329
1330
|
/**
|
1330
1331
|
* KMS Alias Arn.
|
1331
1332
|
*/
|
1332
1333
|
kmsAliasArn?: KeyAliasArn;
|
1334
|
+
/**
|
1335
|
+
* KMS Alias Name.
|
1336
|
+
*/
|
1337
|
+
kmsAliasName?: KeyAliasName;
|
1333
1338
|
/**
|
1334
1339
|
* KMS Key Arn.
|
1335
1340
|
*/
|
@@ -413,11 +413,11 @@ declare class IAM extends Service {
|
|
413
413
|
*/
|
414
414
|
generateOrganizationsAccessReport(callback?: (err: AWSError, data: IAM.Types.GenerateOrganizationsAccessReportResponse) => void): Request<IAM.Types.GenerateOrganizationsAccessReportResponse, AWSError>;
|
415
415
|
/**
|
416
|
-
* Generates a report that includes details about when an IAM resource (user, group, role, or policy) was last used in an attempt to access Amazon Web Services services. Recent activity usually appears within four hours. IAM reports activity for at least the last 400 days, or less if your Region began supporting this feature within the last year. For more information, see Regions where data is tracked. The service last accessed data includes all attempts to access an Amazon Web Services API, not just the successful ones. This includes all attempts that were made using the Amazon Web Services Management Console, the Amazon Web Services API through any of the SDKs, or any of the command line tools. An unexpected entry in the service last accessed data does not mean that your account has been compromised, because the request might have been denied. Refer to your CloudTrail logs as the authoritative source for information about all API calls and whether they were successful or denied access. For more information, see Logging IAM events with CloudTrail in the IAM User Guide. The GenerateServiceLastAccessedDetails operation returns a JobId. Use this parameter in the following operations to retrieve the following details from your report: GetServiceLastAccessedDetails – Use this operation for users, groups, roles, or policies to list every Amazon Web Services service that the resource could access using permissions policies. For each service, the response includes information about the most recent access attempt. The JobId returned by GenerateServiceLastAccessedDetail must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail. GetServiceLastAccessedDetailsWithEntities – Use this operation for groups and policies to list information about the associated entities (users or roles) that attempted to access a specific Amazon Web Services service. To check the status of the GenerateServiceLastAccessedDetails request, use the JobId parameter in the same operations and test the JobStatus response parameter. For additional information about the permissions policies that allow an identity (user, group, or role) to access specific services, use the ListPoliciesGrantingServiceAccess operation. Service last accessed data does not use other policy types when determining whether a resource could access a service. These other policy types include resource-based policies, access control lists, Organizations policies, IAM permissions boundaries, and STS assume role policies. It only applies permissions policy logic. For more about the evaluation of policy types, see Evaluating policies in the IAM User Guide. For more information about service and action last accessed data, see Reducing permissions using service last accessed data in the IAM User Guide.
|
416
|
+
* Generates a report that includes details about when an IAM resource (user, group, role, or policy) was last used in an attempt to access Amazon Web Services services. Recent activity usually appears within four hours. IAM reports activity for at least the last 400 days, or less if your Region began supporting this feature within the last year. For more information, see Regions where data is tracked. For more information about services and actions for which action last accessed information is displayed, see IAM action last accessed information services and actions. The service last accessed data includes all attempts to access an Amazon Web Services API, not just the successful ones. This includes all attempts that were made using the Amazon Web Services Management Console, the Amazon Web Services API through any of the SDKs, or any of the command line tools. An unexpected entry in the service last accessed data does not mean that your account has been compromised, because the request might have been denied. Refer to your CloudTrail logs as the authoritative source for information about all API calls and whether they were successful or denied access. For more information, see Logging IAM events with CloudTrail in the IAM User Guide. The GenerateServiceLastAccessedDetails operation returns a JobId. Use this parameter in the following operations to retrieve the following details from your report: GetServiceLastAccessedDetails – Use this operation for users, groups, roles, or policies to list every Amazon Web Services service that the resource could access using permissions policies. For each service, the response includes information about the most recent access attempt. The JobId returned by GenerateServiceLastAccessedDetail must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail. GetServiceLastAccessedDetailsWithEntities – Use this operation for groups and policies to list information about the associated entities (users or roles) that attempted to access a specific Amazon Web Services service. To check the status of the GenerateServiceLastAccessedDetails request, use the JobId parameter in the same operations and test the JobStatus response parameter. For additional information about the permissions policies that allow an identity (user, group, or role) to access specific services, use the ListPoliciesGrantingServiceAccess operation. Service last accessed data does not use other policy types when determining whether a resource could access a service. These other policy types include resource-based policies, access control lists, Organizations policies, IAM permissions boundaries, and STS assume role policies. It only applies permissions policy logic. For more about the evaluation of policy types, see Evaluating policies in the IAM User Guide. For more information about service and action last accessed data, see Reducing permissions using service last accessed data in the IAM User Guide.
|
417
417
|
*/
|
418
418
|
generateServiceLastAccessedDetails(params: IAM.Types.GenerateServiceLastAccessedDetailsRequest, callback?: (err: AWSError, data: IAM.Types.GenerateServiceLastAccessedDetailsResponse) => void): Request<IAM.Types.GenerateServiceLastAccessedDetailsResponse, AWSError>;
|
419
419
|
/**
|
420
|
-
* Generates a report that includes details about when an IAM resource (user, group, role, or policy) was last used in an attempt to access Amazon Web Services services. Recent activity usually appears within four hours. IAM reports activity for at least the last 400 days, or less if your Region began supporting this feature within the last year. For more information, see Regions where data is tracked. The service last accessed data includes all attempts to access an Amazon Web Services API, not just the successful ones. This includes all attempts that were made using the Amazon Web Services Management Console, the Amazon Web Services API through any of the SDKs, or any of the command line tools. An unexpected entry in the service last accessed data does not mean that your account has been compromised, because the request might have been denied. Refer to your CloudTrail logs as the authoritative source for information about all API calls and whether they were successful or denied access. For more information, see Logging IAM events with CloudTrail in the IAM User Guide. The GenerateServiceLastAccessedDetails operation returns a JobId. Use this parameter in the following operations to retrieve the following details from your report: GetServiceLastAccessedDetails – Use this operation for users, groups, roles, or policies to list every Amazon Web Services service that the resource could access using permissions policies. For each service, the response includes information about the most recent access attempt. The JobId returned by GenerateServiceLastAccessedDetail must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail. GetServiceLastAccessedDetailsWithEntities – Use this operation for groups and policies to list information about the associated entities (users or roles) that attempted to access a specific Amazon Web Services service. To check the status of the GenerateServiceLastAccessedDetails request, use the JobId parameter in the same operations and test the JobStatus response parameter. For additional information about the permissions policies that allow an identity (user, group, or role) to access specific services, use the ListPoliciesGrantingServiceAccess operation. Service last accessed data does not use other policy types when determining whether a resource could access a service. These other policy types include resource-based policies, access control lists, Organizations policies, IAM permissions boundaries, and STS assume role policies. It only applies permissions policy logic. For more about the evaluation of policy types, see Evaluating policies in the IAM User Guide. For more information about service and action last accessed data, see Reducing permissions using service last accessed data in the IAM User Guide.
|
420
|
+
* Generates a report that includes details about when an IAM resource (user, group, role, or policy) was last used in an attempt to access Amazon Web Services services. Recent activity usually appears within four hours. IAM reports activity for at least the last 400 days, or less if your Region began supporting this feature within the last year. For more information, see Regions where data is tracked. For more information about services and actions for which action last accessed information is displayed, see IAM action last accessed information services and actions. The service last accessed data includes all attempts to access an Amazon Web Services API, not just the successful ones. This includes all attempts that were made using the Amazon Web Services Management Console, the Amazon Web Services API through any of the SDKs, or any of the command line tools. An unexpected entry in the service last accessed data does not mean that your account has been compromised, because the request might have been denied. Refer to your CloudTrail logs as the authoritative source for information about all API calls and whether they were successful or denied access. For more information, see Logging IAM events with CloudTrail in the IAM User Guide. The GenerateServiceLastAccessedDetails operation returns a JobId. Use this parameter in the following operations to retrieve the following details from your report: GetServiceLastAccessedDetails – Use this operation for users, groups, roles, or policies to list every Amazon Web Services service that the resource could access using permissions policies. For each service, the response includes information about the most recent access attempt. The JobId returned by GenerateServiceLastAccessedDetail must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail. GetServiceLastAccessedDetailsWithEntities – Use this operation for groups and policies to list information about the associated entities (users or roles) that attempted to access a specific Amazon Web Services service. To check the status of the GenerateServiceLastAccessedDetails request, use the JobId parameter in the same operations and test the JobStatus response parameter. For additional information about the permissions policies that allow an identity (user, group, or role) to access specific services, use the ListPoliciesGrantingServiceAccess operation. Service last accessed data does not use other policy types when determining whether a resource could access a service. These other policy types include resource-based policies, access control lists, Organizations policies, IAM permissions boundaries, and STS assume role policies. It only applies permissions policy logic. For more about the evaluation of policy types, see Evaluating policies in the IAM User Guide. For more information about service and action last accessed data, see Reducing permissions using service last accessed data in the IAM User Guide.
|
421
421
|
*/
|
422
422
|
generateServiceLastAccessedDetails(callback?: (err: AWSError, data: IAM.Types.GenerateServiceLastAccessedDetailsResponse) => void): Request<IAM.Types.GenerateServiceLastAccessedDetailsResponse, AWSError>;
|
423
423
|
/**
|
@@ -617,11 +617,11 @@ declare class IAM extends Service {
|
|
617
617
|
*/
|
618
618
|
getUserPolicy(callback?: (err: AWSError, data: IAM.Types.GetUserPolicyResponse) => void): Request<IAM.Types.GetUserPolicyResponse, AWSError>;
|
619
619
|
/**
|
620
|
-
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account.
|
620
|
+
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. If the Amazon Web Services account has no associated users, the root user returns it's own access key IDs by running this command. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
|
621
621
|
*/
|
622
622
|
listAccessKeys(params: IAM.Types.ListAccessKeysRequest, callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
|
623
623
|
/**
|
624
|
-
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account.
|
624
|
+
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. If the Amazon Web Services account has no associated users, the root user returns it's own access key IDs by running this command. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
|
625
625
|
*/
|
626
626
|
listAccessKeys(callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
|
627
627
|
/**
|
@@ -19,6 +19,14 @@ declare class MigrationHubConfig extends Service {
|
|
19
19
|
* This API sets up the home region for the calling account only.
|
20
20
|
*/
|
21
21
|
createHomeRegionControl(callback?: (err: AWSError, data: MigrationHubConfig.Types.CreateHomeRegionControlResult) => void): Request<MigrationHubConfig.Types.CreateHomeRegionControlResult, AWSError>;
|
22
|
+
/**
|
23
|
+
* This operation deletes the home region configuration for the calling account. The operation does not delete discovery or migration tracking data in the home region.
|
24
|
+
*/
|
25
|
+
deleteHomeRegionControl(params: MigrationHubConfig.Types.DeleteHomeRegionControlRequest, callback?: (err: AWSError, data: MigrationHubConfig.Types.DeleteHomeRegionControlResult) => void): Request<MigrationHubConfig.Types.DeleteHomeRegionControlResult, AWSError>;
|
26
|
+
/**
|
27
|
+
* This operation deletes the home region configuration for the calling account. The operation does not delete discovery or migration tracking data in the home region.
|
28
|
+
*/
|
29
|
+
deleteHomeRegionControl(callback?: (err: AWSError, data: MigrationHubConfig.Types.DeleteHomeRegionControlResult) => void): Request<MigrationHubConfig.Types.DeleteHomeRegionControlResult, AWSError>;
|
22
30
|
/**
|
23
31
|
* This API permits filtering on the ControlId and HomeRegion fields.
|
24
32
|
*/
|
@@ -58,6 +66,14 @@ declare namespace MigrationHubConfig {
|
|
58
66
|
*/
|
59
67
|
HomeRegionControl?: HomeRegionControl;
|
60
68
|
}
|
69
|
+
export interface DeleteHomeRegionControlRequest {
|
70
|
+
/**
|
71
|
+
* A unique identifier that's generated for each home region control. It's always a string that begins with "hrc-" followed by 12 lowercase letters and numbers.
|
72
|
+
*/
|
73
|
+
ControlId: ControlId;
|
74
|
+
}
|
75
|
+
export interface DeleteHomeRegionControlResult {
|
76
|
+
}
|
61
77
|
export type DescribeHomeRegionControlsMaxResults = number;
|
62
78
|
export interface DescribeHomeRegionControlsRequest {
|
63
79
|
/**
|
@@ -91,6 +91,14 @@ declare class MigrationHubStrategy extends Service {
|
|
91
91
|
* Retrieves recommended strategies and tools for the specified server.
|
92
92
|
*/
|
93
93
|
getServerStrategies(callback?: (err: AWSError, data: MigrationHubStrategy.Types.GetServerStrategiesResponse) => void): Request<MigrationHubStrategy.Types.GetServerStrategiesResponse, AWSError>;
|
94
|
+
/**
|
95
|
+
* Retrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.
|
96
|
+
*/
|
97
|
+
listAnalyzableServers(params: MigrationHubStrategy.Types.ListAnalyzableServersRequest, callback?: (err: AWSError, data: MigrationHubStrategy.Types.ListAnalyzableServersResponse) => void): Request<MigrationHubStrategy.Types.ListAnalyzableServersResponse, AWSError>;
|
98
|
+
/**
|
99
|
+
* Retrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.
|
100
|
+
*/
|
101
|
+
listAnalyzableServers(callback?: (err: AWSError, data: MigrationHubStrategy.Types.ListAnalyzableServersResponse) => void): Request<MigrationHubStrategy.Types.ListAnalyzableServersResponse, AWSError>;
|
94
102
|
/**
|
95
103
|
* Retrieves a list of all the application components (processes).
|
96
104
|
*/
|
@@ -192,6 +200,25 @@ declare namespace MigrationHubStrategy {
|
|
192
200
|
srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus;
|
193
201
|
}
|
194
202
|
export type AnalysisType = "SOURCE_CODE_ANALYSIS"|"DATABASE_ANALYSIS"|"RUNTIME_ANALYSIS"|"BINARY_ANALYSIS"|string;
|
203
|
+
export interface AnalyzableServerSummary {
|
204
|
+
/**
|
205
|
+
* The host name of the analyzable server.
|
206
|
+
*/
|
207
|
+
hostname?: String;
|
208
|
+
/**
|
209
|
+
* The ip address of the analyzable server.
|
210
|
+
*/
|
211
|
+
ipAddress?: String;
|
212
|
+
/**
|
213
|
+
* The data source of the analyzable server.
|
214
|
+
*/
|
215
|
+
source?: String;
|
216
|
+
/**
|
217
|
+
* The virtual machine id of the analyzable server.
|
218
|
+
*/
|
219
|
+
vmId?: String;
|
220
|
+
}
|
221
|
+
export type AnalyzableServerSummaryList = AnalyzableServerSummary[];
|
195
222
|
export interface AnalyzerNameUnion {
|
196
223
|
/**
|
197
224
|
* The binary analyzer names.
|
@@ -380,6 +407,7 @@ declare namespace MigrationHubStrategy {
|
|
380
407
|
*/
|
381
408
|
managementPreference?: ManagementPreference;
|
382
409
|
}
|
410
|
+
export type AssessmentDataSourceType = "StrategyRecommendationsApplicationDataCollector"|"ManualImport"|"ApplicationDiscoveryService"|string;
|
383
411
|
export type AssessmentStatus = "IN_PROGRESS"|"COMPLETE"|"FAILED"|"STOPPED"|string;
|
384
412
|
export type AssessmentStatusMessage = string;
|
385
413
|
export interface AssessmentSummary {
|
@@ -580,7 +608,7 @@ declare namespace MigrationHubStrategy {
|
|
580
608
|
*/
|
581
609
|
success?: Integer;
|
582
610
|
}
|
583
|
-
export type DataSourceType = "ApplicationDiscoveryService"|"MPA"|"Import"|string;
|
611
|
+
export type DataSourceType = "ApplicationDiscoveryService"|"MPA"|"Import"|"StrategyRecommendationsApplicationDataCollector"|string;
|
584
612
|
export interface DatabaseConfigDetail {
|
585
613
|
/**
|
586
614
|
* AWS Secrets Manager key that holds the credentials that you use to connect to a database.
|
@@ -906,6 +934,30 @@ declare namespace MigrationHubStrategy {
|
|
906
934
|
export type InclusionStatus = "excludeFromAssessment"|"includeInAssessment"|string;
|
907
935
|
export type Integer = number;
|
908
936
|
export type InterfaceName = string;
|
937
|
+
export interface ListAnalyzableServersRequest {
|
938
|
+
/**
|
939
|
+
* The maximum number of items to include in the response. The maximum value is 100.
|
940
|
+
*/
|
941
|
+
maxResults?: MaxResult;
|
942
|
+
/**
|
943
|
+
* The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
|
944
|
+
*/
|
945
|
+
nextToken?: NextToken;
|
946
|
+
/**
|
947
|
+
* Specifies whether to sort by ascending (ASC) or descending (DESC) order.
|
948
|
+
*/
|
949
|
+
sort?: SortOrder;
|
950
|
+
}
|
951
|
+
export interface ListAnalyzableServersResponse {
|
952
|
+
/**
|
953
|
+
* The list of analyzable servers with summary information about each server.
|
954
|
+
*/
|
955
|
+
analyzableServers?: AnalyzableServerSummaryList;
|
956
|
+
/**
|
957
|
+
* The token you use to retrieve the next set of results, or null if there are no more results.
|
958
|
+
*/
|
959
|
+
nextToken?: NextToken;
|
960
|
+
}
|
909
961
|
export type ListAntipatternSeveritySummary = AntipatternSeveritySummary[];
|
910
962
|
export type ListApplicationComponentStatusSummary = ApplicationComponentStatusSummary[];
|
911
963
|
export type ListApplicationComponentSummary = ApplicationComponentSummary[];
|
@@ -1379,6 +1431,10 @@ declare namespace MigrationHubStrategy {
|
|
1379
1431
|
export type SourceVersion = string;
|
1380
1432
|
export type SrcCodeOrDbAnalysisStatus = "ANALYSIS_TO_BE_SCHEDULED"|"ANALYSIS_STARTED"|"ANALYSIS_SUCCESS"|"ANALYSIS_FAILED"|"ANALYSIS_PARTIAL_SUCCESS"|"UNCONFIGURED"|"CONFIGURED"|string;
|
1381
1433
|
export interface StartAssessmentRequest {
|
1434
|
+
/**
|
1435
|
+
* The data source type of an assessment to be started.
|
1436
|
+
*/
|
1437
|
+
assessmentDataSourceType?: AssessmentDataSourceType;
|
1382
1438
|
/**
|
1383
1439
|
* List of criteria for assessment.
|
1384
1440
|
*/
|