@cdklabs/cdk-ssm-documents 0.0.58 → 0.0.60
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 +12 -12
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +9 -9
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackExists.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +11 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +13 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForChangeSetCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackDeleteComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackImportComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorCreateComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorExecuteComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRollbackComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackUpdateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForTypeRegistrationComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForChangeSetCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackImportComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorExecuteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRollbackComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackUpdateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForTypeRegistrationComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmExists.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmMuteRuleExists.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmMuteRuleExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForCompositeAlarmExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmMuteRuleExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForCompositeAlarmExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +8 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +17 -17
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +12 -8
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +12 -8
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceRunning.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStatusOk.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStopped.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceTerminated.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInternetGatewayExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForKeyPairExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayDeleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNetworkInterfaceAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForPasswordDataAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotCompleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSubnetAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeDeleted.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeInUse.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +44 -44
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +6 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +50 -44
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForBundleTaskComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCancelled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskDeleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForCustomerGatewayAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageUsageReportAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceRunning.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStatusOk.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStopped.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceTerminated.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForKeyPairExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayDeleted.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNetworkInterfaceAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForPasswordDataAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetDeleteComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotImported.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSpotInstanceRequestFulfilled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForStoreImageTaskComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSubnetAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSystemStatusOk.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeDeleted.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeInUse.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionDeleted.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionDeleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForBundleTaskComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCancelled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForCustomerGatewayAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCancelled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageUsageReportAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceRunning.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStatusOk.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStopped.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceTerminated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInternetGatewayExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForKeyPairExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNetworkInterfaceAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForPasswordDataAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotImported.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSpotInstanceRequestFulfilled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForStoreImageTaskComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSubnetAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSystemStatusOk.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeInUse.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/package.json +8 -8
- package/node_modules/@aws-sdk/client-iam/README.md +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +4 -4
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForInstanceProfileExists.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +55 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAM.d.ts +4 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForInstanceProfileExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForPolicyExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForRoleExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForUserExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForPolicyExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForRoleExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForUserExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/package.json +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActiveV2.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdatedV2.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActiveV2.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForPublishedVersionActive.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/package.json +8 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +622 -618
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +622 -618
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +5 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +5 -3
- package/node_modules/@aws-sdk/client-s3/package.json +12 -12
- package/node_modules/@aws-sdk/client-sns/package.json +7 -7
- package/node_modules/@aws-sdk/client-sqs/package.json +7 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ssm/package.json +8 -8
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +15 -6
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +15 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -2
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
- package/node_modules/@aws-sdk/nested-clients/package.json +7 -7
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +336 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +26 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +332 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +26 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +66 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-external/nodable_entities.d.ts +65 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -2
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +7 -3
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +5 -2
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +2 -1
- package/node_modules/@smithy/util-retry/package.json +2 -2
- package/node_modules/fast-xml-builder/CHANGELOG.md +24 -0
- package/node_modules/fast-xml-builder/README.md +53 -2
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
- package/node_modules/fast-xml-builder/package.json +3 -2
- package/node_modules/fast-xml-builder/src/fxb.d.ts +93 -3
- package/node_modules/fast-xml-builder/src/fxb.js +106 -40
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +95 -42
- package/node_modules/fast-xml-builder/src/util.js +16 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +8 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
- package/node_modules/fast-xml-parser/package.json +1 -1
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +16 -11
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +2 -2
- package/node_modules/strnum/CHANGELOG.md +3 -0
- package/node_modules/strnum/package.json +3 -2
- package/node_modules/strnum/strnum.js +12 -10
- package/node_modules/xml-naming/README.md +189 -0
- package/node_modules/xml-naming/package.json +54 -0
- package/node_modules/xml-naming/src/index.d.ts +74 -0
- package/node_modules/xml-naming/src/index.js +270 -0
- package/package.json +10 -10
|
@@ -1513,25 +1513,25 @@ export interface IAM {
|
|
|
1513
1513
|
* @param args - command input.
|
|
1514
1514
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1515
1515
|
*/
|
|
1516
|
-
waitUntilInstanceProfileExists(args: GetInstanceProfileCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult
|
|
1516
|
+
waitUntilInstanceProfileExists(args: GetInstanceProfileCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult<GetInstanceProfileCommandOutput>>;
|
|
1517
1517
|
/**
|
|
1518
1518
|
* @see {@link GetPolicyCommand}
|
|
1519
1519
|
* @param args - command input.
|
|
1520
1520
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1521
1521
|
*/
|
|
1522
|
-
waitUntilPolicyExists(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult
|
|
1522
|
+
waitUntilPolicyExists(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult<GetPolicyCommandOutput>>;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* @see {@link GetRoleCommand}
|
|
1525
1525
|
* @param args - command input.
|
|
1526
1526
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1527
1527
|
*/
|
|
1528
|
-
waitUntilRoleExists(args: GetRoleCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult
|
|
1528
|
+
waitUntilRoleExists(args: GetRoleCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult<GetRoleCommandOutput>>;
|
|
1529
1529
|
/**
|
|
1530
1530
|
* @see {@link GetUserCommand}
|
|
1531
1531
|
* @param args - command input.
|
|
1532
1532
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1533
1533
|
*/
|
|
1534
|
-
waitUntilUserExists(args: GetUserCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult
|
|
1534
|
+
waitUntilUserExists(args: GetUserCommandInput, waiterConfig: number | Omit<WaiterConfiguration<IAM>, "client">): Promise<WaiterResult<GetUserCommandOutput>>;
|
|
1535
1535
|
}
|
|
1536
1536
|
/**
|
|
1537
1537
|
* <fullname>Identity and Access Management</fullname>
|
|
@@ -1539,6 +1539,57 @@ export interface IAM {
|
|
|
1539
1539
|
* access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
|
|
1540
1540
|
* such as access keys, and permissions that control which Amazon Web Services resources users and
|
|
1541
1541
|
* applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
|
|
1542
|
+
* <p>
|
|
1543
|
+
* <b>Programmatic access to IAM</b>
|
|
1544
|
+
* </p>
|
|
1545
|
+
* <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
|
|
1546
|
+
* SDKs consist of libraries and sample code for various programming languages and platforms
|
|
1547
|
+
* (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
|
|
1548
|
+
* create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
|
|
1549
|
+
* cryptographically signing requests, managing errors, and retrying requests automatically.
|
|
1550
|
+
* For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
|
|
1551
|
+
* Amazon Web Services</a>.</p>
|
|
1552
|
+
* <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
|
|
1553
|
+
* service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
|
|
1554
|
+
* requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
|
|
1555
|
+
* POST requests for all actions. That is, the API does not require you to use GET for some
|
|
1556
|
+
* actions and POST for others. However, GET requests are subject to the limitation size of a
|
|
1557
|
+
* URL. Therefore, for operations that require larger sizes, use a POST request.</p>
|
|
1558
|
+
* <p>
|
|
1559
|
+
* <b>Signing requests</b>
|
|
1560
|
+
* </p>
|
|
1561
|
+
* <p>Requests must be signed using an access key ID and a secret access key. We strongly
|
|
1562
|
+
* recommend that you do not use your Amazon Web Services account access key ID and secret access key for
|
|
1563
|
+
* everyday work with IAM. You can use the access key ID and secret access key for an
|
|
1564
|
+
* IAM user or you can use the Security Token Service to generate temporary security credentials and use
|
|
1565
|
+
* those to sign requests.</p>
|
|
1566
|
+
* <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
|
|
1567
|
+
* existing application that uses Signature Version 2, you do not have to update it to use
|
|
1568
|
+
* Signature Version 4. However, some operations now require Signature Version 4. The
|
|
1569
|
+
* documentation for operations that require version 4 indicate this requirement.</p>
|
|
1570
|
+
* <p>
|
|
1571
|
+
* <b>Additional resources</b>
|
|
1572
|
+
* </p>
|
|
1573
|
+
* <ul>
|
|
1574
|
+
* <li>
|
|
1575
|
+
* <p>
|
|
1576
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
|
|
1577
|
+
* security credentials</a>. This topic provides general information about the types of
|
|
1578
|
+
* credentials used for accessing Amazon Web Services.</p>
|
|
1579
|
+
* </li>
|
|
1580
|
+
* <li>
|
|
1581
|
+
* <p>
|
|
1582
|
+
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
|
|
1583
|
+
* practices</a>. This topic presents a list of suggestions for using the IAM service
|
|
1584
|
+
* to help secure your Amazon Web Services resources.</p>
|
|
1585
|
+
* </li>
|
|
1586
|
+
* <li>
|
|
1587
|
+
* <p>
|
|
1588
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
|
|
1589
|
+
* Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
|
|
1590
|
+
* request using an access key ID and secret access key.</p>
|
|
1591
|
+
* </li>
|
|
1592
|
+
* </ul>
|
|
1542
1593
|
* @public
|
|
1543
1594
|
*/
|
|
1544
1595
|
export declare class IAM extends IAMClient implements IAM {
|
|
@@ -350,6 +350,57 @@ export interface IAMClientResolvedConfig extends IAMClientResolvedConfigType {
|
|
|
350
350
|
* access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
|
|
351
351
|
* such as access keys, and permissions that control which Amazon Web Services resources users and
|
|
352
352
|
* applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
|
|
353
|
+
* <p>
|
|
354
|
+
* <b>Programmatic access to IAM</b>
|
|
355
|
+
* </p>
|
|
356
|
+
* <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
|
|
357
|
+
* SDKs consist of libraries and sample code for various programming languages and platforms
|
|
358
|
+
* (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
|
|
359
|
+
* create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
|
|
360
|
+
* cryptographically signing requests, managing errors, and retrying requests automatically.
|
|
361
|
+
* For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
|
|
362
|
+
* Amazon Web Services</a>.</p>
|
|
363
|
+
* <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
|
|
364
|
+
* service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
|
|
365
|
+
* requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
|
|
366
|
+
* POST requests for all actions. That is, the API does not require you to use GET for some
|
|
367
|
+
* actions and POST for others. However, GET requests are subject to the limitation size of a
|
|
368
|
+
* URL. Therefore, for operations that require larger sizes, use a POST request.</p>
|
|
369
|
+
* <p>
|
|
370
|
+
* <b>Signing requests</b>
|
|
371
|
+
* </p>
|
|
372
|
+
* <p>Requests must be signed using an access key ID and a secret access key. We strongly
|
|
373
|
+
* recommend that you do not use your Amazon Web Services account access key ID and secret access key for
|
|
374
|
+
* everyday work with IAM. You can use the access key ID and secret access key for an
|
|
375
|
+
* IAM user or you can use the Security Token Service to generate temporary security credentials and use
|
|
376
|
+
* those to sign requests.</p>
|
|
377
|
+
* <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
|
|
378
|
+
* existing application that uses Signature Version 2, you do not have to update it to use
|
|
379
|
+
* Signature Version 4. However, some operations now require Signature Version 4. The
|
|
380
|
+
* documentation for operations that require version 4 indicate this requirement.</p>
|
|
381
|
+
* <p>
|
|
382
|
+
* <b>Additional resources</b>
|
|
383
|
+
* </p>
|
|
384
|
+
* <ul>
|
|
385
|
+
* <li>
|
|
386
|
+
* <p>
|
|
387
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
|
|
388
|
+
* security credentials</a>. This topic provides general information about the types of
|
|
389
|
+
* credentials used for accessing Amazon Web Services.</p>
|
|
390
|
+
* </li>
|
|
391
|
+
* <li>
|
|
392
|
+
* <p>
|
|
393
|
+
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
|
|
394
|
+
* practices</a>. This topic presents a list of suggestions for using the IAM service
|
|
395
|
+
* to help secure your Amazon Web Services resources.</p>
|
|
396
|
+
* </li>
|
|
397
|
+
* <li>
|
|
398
|
+
* <p>
|
|
399
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
|
|
400
|
+
* Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
|
|
401
|
+
* request using an access key ID and secret access key.</p>
|
|
402
|
+
* </li>
|
|
403
|
+
* </ul>
|
|
353
404
|
* @public
|
|
354
405
|
*/
|
|
355
406
|
export declare class IAMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IAMClientResolvedConfig> {
|
|
@@ -4,6 +4,57 @@
|
|
|
4
4
|
* access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
|
|
5
5
|
* such as access keys, and permissions that control which Amazon Web Services resources users and
|
|
6
6
|
* applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
|
|
7
|
+
* <p>
|
|
8
|
+
* <b>Programmatic access to IAM</b>
|
|
9
|
+
* </p>
|
|
10
|
+
* <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
|
|
11
|
+
* SDKs consist of libraries and sample code for various programming languages and platforms
|
|
12
|
+
* (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
|
|
13
|
+
* create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
|
|
14
|
+
* cryptographically signing requests, managing errors, and retrying requests automatically.
|
|
15
|
+
* For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
|
|
16
|
+
* Amazon Web Services</a>.</p>
|
|
17
|
+
* <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
|
|
18
|
+
* service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
|
|
19
|
+
* requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
|
|
20
|
+
* POST requests for all actions. That is, the API does not require you to use GET for some
|
|
21
|
+
* actions and POST for others. However, GET requests are subject to the limitation size of a
|
|
22
|
+
* URL. Therefore, for operations that require larger sizes, use a POST request.</p>
|
|
23
|
+
* <p>
|
|
24
|
+
* <b>Signing requests</b>
|
|
25
|
+
* </p>
|
|
26
|
+
* <p>Requests must be signed using an access key ID and a secret access key. We strongly
|
|
27
|
+
* recommend that you do not use your Amazon Web Services account access key ID and secret access key for
|
|
28
|
+
* everyday work with IAM. You can use the access key ID and secret access key for an
|
|
29
|
+
* IAM user or you can use the Security Token Service to generate temporary security credentials and use
|
|
30
|
+
* those to sign requests.</p>
|
|
31
|
+
* <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
|
|
32
|
+
* existing application that uses Signature Version 2, you do not have to update it to use
|
|
33
|
+
* Signature Version 4. However, some operations now require Signature Version 4. The
|
|
34
|
+
* documentation for operations that require version 4 indicate this requirement.</p>
|
|
35
|
+
* <p>
|
|
36
|
+
* <b>Additional resources</b>
|
|
37
|
+
* </p>
|
|
38
|
+
* <ul>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>
|
|
41
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
|
|
42
|
+
* security credentials</a>. This topic provides general information about the types of
|
|
43
|
+
* credentials used for accessing Amazon Web Services.</p>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>
|
|
47
|
+
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
|
|
48
|
+
* practices</a>. This topic presents a list of suggestions for using the IAM service
|
|
49
|
+
* to help secure your Amazon Web Services resources.</p>
|
|
50
|
+
* </li>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p>
|
|
53
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
|
|
54
|
+
* Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
|
|
55
|
+
* request using an access key ID and secret access key.</p>
|
|
56
|
+
* </li>
|
|
57
|
+
* </ul>
|
|
7
58
|
*
|
|
8
59
|
* @packageDocumentation
|
|
9
60
|
*/
|
|
@@ -1002,6 +1002,11 @@ export interface CreateOpenIDConnectProviderRequest {
|
|
|
1002
1002
|
* <p>For more information about obtaining the OIDC provider thumbprint, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html">Obtaining the
|
|
1003
1003
|
* thumbprint for an OpenID Connect provider</a> in the <i>IAM user
|
|
1004
1004
|
* Guide</i>.</p>
|
|
1005
|
+
* <note>
|
|
1006
|
+
* <p>If your OIDC provider's discovery endpoint and JWKS endpoint
|
|
1007
|
+
* (<code>jwks_uri</code>) use different certificates or hosts, include the
|
|
1008
|
+
* thumbprints for both endpoints in this list.</p>
|
|
1009
|
+
* </note>
|
|
1005
1010
|
* @public
|
|
1006
1011
|
*/
|
|
1007
1012
|
ThumbprintList?: string[] | undefined;
|
|
@@ -3365,7 +3365,7 @@ export interface IAM {
|
|
|
3365
3365
|
WaiterConfiguration<IAM>,
|
|
3366
3366
|
Exclude<keyof WaiterConfiguration<IAM>, "client">
|
|
3367
3367
|
>
|
|
3368
|
-
): Promise<WaiterResult
|
|
3368
|
+
): Promise<WaiterResult<GetInstanceProfileCommandOutput>>;
|
|
3369
3369
|
waitUntilPolicyExists(
|
|
3370
3370
|
args: GetPolicyCommandInput,
|
|
3371
3371
|
waiterConfig:
|
|
@@ -3374,7 +3374,7 @@ export interface IAM {
|
|
|
3374
3374
|
WaiterConfiguration<IAM>,
|
|
3375
3375
|
Exclude<keyof WaiterConfiguration<IAM>, "client">
|
|
3376
3376
|
>
|
|
3377
|
-
): Promise<WaiterResult
|
|
3377
|
+
): Promise<WaiterResult<GetPolicyCommandOutput>>;
|
|
3378
3378
|
waitUntilRoleExists(
|
|
3379
3379
|
args: GetRoleCommandInput,
|
|
3380
3380
|
waiterConfig:
|
|
@@ -3383,7 +3383,7 @@ export interface IAM {
|
|
|
3383
3383
|
WaiterConfiguration<IAM>,
|
|
3384
3384
|
Exclude<keyof WaiterConfiguration<IAM>, "client">
|
|
3385
3385
|
>
|
|
3386
|
-
): Promise<WaiterResult
|
|
3386
|
+
): Promise<WaiterResult<GetRoleCommandOutput>>;
|
|
3387
3387
|
waitUntilUserExists(
|
|
3388
3388
|
args: GetUserCommandInput,
|
|
3389
3389
|
waiterConfig:
|
|
@@ -3392,6 +3392,6 @@ export interface IAM {
|
|
|
3392
3392
|
WaiterConfiguration<IAM>,
|
|
3393
3393
|
Exclude<keyof WaiterConfiguration<IAM>, "client">
|
|
3394
3394
|
>
|
|
3395
|
-
): Promise<WaiterResult
|
|
3395
|
+
): Promise<WaiterResult<GetUserCommandOutput>>;
|
|
3396
3396
|
}
|
|
3397
3397
|
export declare class IAM extends IAMClient implements IAM {}
|
package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForInstanceProfileExists.d.ts
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetInstanceProfileCommandInput,
|
|
4
|
+
GetInstanceProfileCommandOutput,
|
|
5
|
+
} from "../commands/GetInstanceProfileCommand";
|
|
3
6
|
import { IAMClient } from "../IAMClient";
|
|
7
|
+
import { IAMServiceException } from "../models/IAMServiceException";
|
|
4
8
|
export declare const waitForInstanceProfileExists: (
|
|
5
9
|
params: WaiterConfiguration<IAMClient>,
|
|
6
10
|
input: GetInstanceProfileCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetInstanceProfileCommandOutput | IAMServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilInstanceProfileExists: (
|
|
9
15
|
params: WaiterConfiguration<IAMClient>,
|
|
10
16
|
input: GetInstanceProfileCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<GetInstanceProfileCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetPolicyCommandInput,
|
|
4
|
+
GetPolicyCommandOutput,
|
|
5
|
+
} from "../commands/GetPolicyCommand";
|
|
3
6
|
import { IAMClient } from "../IAMClient";
|
|
7
|
+
import { IAMServiceException } from "../models/IAMServiceException";
|
|
4
8
|
export declare const waitForPolicyExists: (
|
|
5
9
|
params: WaiterConfiguration<IAMClient>,
|
|
6
10
|
input: GetPolicyCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetPolicyCommandOutput | IAMServiceException>>;
|
|
8
12
|
export declare const waitUntilPolicyExists: (
|
|
9
13
|
params: WaiterConfiguration<IAMClient>,
|
|
10
14
|
input: GetPolicyCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetPolicyCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetRoleCommandInput,
|
|
4
|
+
GetRoleCommandOutput,
|
|
5
|
+
} from "../commands/GetRoleCommand";
|
|
3
6
|
import { IAMClient } from "../IAMClient";
|
|
7
|
+
import { IAMServiceException } from "../models/IAMServiceException";
|
|
4
8
|
export declare const waitForRoleExists: (
|
|
5
9
|
params: WaiterConfiguration<IAMClient>,
|
|
6
10
|
input: GetRoleCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetRoleCommandOutput | IAMServiceException>>;
|
|
8
12
|
export declare const waitUntilRoleExists: (
|
|
9
13
|
params: WaiterConfiguration<IAMClient>,
|
|
10
14
|
input: GetRoleCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetRoleCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetUserCommandInput,
|
|
4
|
+
GetUserCommandOutput,
|
|
5
|
+
} from "../commands/GetUserCommand";
|
|
3
6
|
import { IAMClient } from "../IAMClient";
|
|
7
|
+
import { IAMServiceException } from "../models/IAMServiceException";
|
|
4
8
|
export declare const waitForUserExists: (
|
|
5
9
|
params: WaiterConfiguration<IAMClient>,
|
|
6
10
|
input: GetUserCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetUserCommandOutput | IAMServiceException>>;
|
|
8
12
|
export declare const waitUntilUserExists: (
|
|
9
13
|
params: WaiterConfiguration<IAMClient>,
|
|
10
14
|
input: GetUserCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetUserCommandOutput>>;
|
package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetInstanceProfileCommandInput } from "../commands/GetInstanceProfileCommand";
|
|
2
|
+
import { type GetInstanceProfileCommandInput, type GetInstanceProfileCommandOutput } from "../commands/GetInstanceProfileCommand";
|
|
3
3
|
import type { IAMClient } from "../IAMClient";
|
|
4
|
+
import type { IAMServiceException } from "../models/IAMServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilInstanceProfileExists instead. waitForInstanceProfileExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForInstanceProfileExists: (params: WaiterConfiguration<IAMClient>, input: GetInstanceProfileCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForInstanceProfileExists: (params: WaiterConfiguration<IAMClient>, input: GetInstanceProfileCommandInput) => Promise<WaiterResult<GetInstanceProfileCommandOutput | IAMServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetInstanceProfileCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilInstanceProfileExists: (params: WaiterConfiguration<IAMClient>, input: GetInstanceProfileCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilInstanceProfileExists: (params: WaiterConfiguration<IAMClient>, input: GetInstanceProfileCommandInput) => Promise<WaiterResult<GetInstanceProfileCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
2
|
+
import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
3
3
|
import type { IAMClient } from "../IAMClient";
|
|
4
|
+
import type { IAMServiceException } from "../models/IAMServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilPolicyExists instead. waitForPolicyExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForPolicyExists: (params: WaiterConfiguration<IAMClient>, input: GetPolicyCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForPolicyExists: (params: WaiterConfiguration<IAMClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput | IAMServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetPolicyCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilPolicyExists: (params: WaiterConfiguration<IAMClient>, input: GetPolicyCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilPolicyExists: (params: WaiterConfiguration<IAMClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetRoleCommandInput } from "../commands/GetRoleCommand";
|
|
2
|
+
import { type GetRoleCommandInput, type GetRoleCommandOutput } from "../commands/GetRoleCommand";
|
|
3
3
|
import type { IAMClient } from "../IAMClient";
|
|
4
|
+
import type { IAMServiceException } from "../models/IAMServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilRoleExists instead. waitForRoleExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForRoleExists: (params: WaiterConfiguration<IAMClient>, input: GetRoleCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForRoleExists: (params: WaiterConfiguration<IAMClient>, input: GetRoleCommandInput) => Promise<WaiterResult<GetRoleCommandOutput | IAMServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetRoleCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilRoleExists: (params: WaiterConfiguration<IAMClient>, input: GetRoleCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilRoleExists: (params: WaiterConfiguration<IAMClient>, input: GetRoleCommandInput) => Promise<WaiterResult<GetRoleCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetUserCommandInput } from "../commands/GetUserCommand";
|
|
2
|
+
import { type GetUserCommandInput, type GetUserCommandOutput } from "../commands/GetUserCommand";
|
|
3
3
|
import type { IAMClient } from "../IAMClient";
|
|
4
|
+
import type { IAMServiceException } from "../models/IAMServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilUserExists instead. waitForUserExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForUserExists: (params: WaiterConfiguration<IAMClient>, input: GetUserCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForUserExists: (params: WaiterConfiguration<IAMClient>, input: GetUserCommandInput) => Promise<WaiterResult<GetUserCommandOutput | IAMServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetUserCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilUserExists: (params: WaiterConfiguration<IAMClient>, input: GetUserCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilUserExists: (params: WaiterConfiguration<IAMClient>, input: GetUserCommandInput) => Promise<WaiterResult<GetUserCommandOutput>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iam",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1045.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.974.8",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.39",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.38",
|
|
36
36
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
37
37
|
"@aws-sdk/types": "^3.973.8",
|
|
38
38
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
39
39
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.24",
|
|
41
41
|
"@smithy/config-resolver": "^4.4.17",
|
|
42
42
|
"@smithy/core": "^3.23.17",
|
|
43
43
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
46
46
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
47
47
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
48
|
-
"@smithy/middleware-retry": "^4.5.
|
|
48
|
+
"@smithy/middleware-retry": "^4.5.7",
|
|
49
49
|
"@smithy/middleware-serde": "^4.2.20",
|
|
50
50
|
"@smithy/middleware-stack": "^4.2.14",
|
|
51
51
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
62
62
|
"@smithy/util-endpoints": "^3.4.2",
|
|
63
63
|
"@smithy/util-middleware": "^4.2.14",
|
|
64
|
-
"@smithy/util-retry": "^4.3.
|
|
64
|
+
"@smithy/util-retry": "^4.3.6",
|
|
65
65
|
"@smithy/util-utf8": "^4.2.2",
|
|
66
|
-
"@smithy/util-waiter": "^4.
|
|
66
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
67
67
|
"tslib": "^2.6.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
@@ -1277,7 +1277,7 @@ const checkState$3 = async (client, input) => {
|
|
|
1277
1277
|
}
|
|
1278
1278
|
catch (exception) {
|
|
1279
1279
|
reason = exception;
|
|
1280
|
-
if (exception.name
|
|
1280
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
1281
1281
|
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
1282
1282
|
}
|
|
1283
1283
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { GetFunctionCommand } from "../commands/GetFunctionCommand";
|
|
2
|
+
import { GetFunctionCommand, } from "../commands/GetFunctionCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { GetFunctionCommand } from "../commands/GetFunctionCommand";
|
|
2
|
+
import { GetFunctionCommand, } from "../commands/GetFunctionCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -9,7 +9,7 @@ const checkState = async (client, input) => {
|
|
|
9
9
|
}
|
|
10
10
|
catch (exception) {
|
|
11
11
|
reason = exception;
|
|
12
|
-
if (exception.name
|
|
12
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
13
13
|
return { state: WaiterState.RETRY, reason };
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { GetFunctionCommand } from "../commands/GetFunctionCommand";
|
|
2
|
+
import { GetFunctionCommand, } from "../commands/GetFunctionCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -720,37 +720,37 @@ export interface Lambda {
|
|
|
720
720
|
* @param args - command input.
|
|
721
721
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
722
722
|
*/
|
|
723
|
-
waitUntilFunctionActiveV2(args: GetFunctionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult
|
|
723
|
+
waitUntilFunctionActiveV2(args: GetFunctionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult<GetFunctionCommandOutput>>;
|
|
724
724
|
/**
|
|
725
725
|
* @see {@link GetFunctionCommand}
|
|
726
726
|
* @param args - command input.
|
|
727
727
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
728
728
|
*/
|
|
729
|
-
waitUntilFunctionExists(args: GetFunctionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult
|
|
729
|
+
waitUntilFunctionExists(args: GetFunctionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult<GetFunctionCommandOutput>>;
|
|
730
730
|
/**
|
|
731
731
|
* @see {@link GetFunctionCommand}
|
|
732
732
|
* @param args - command input.
|
|
733
733
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
734
734
|
*/
|
|
735
|
-
waitUntilFunctionUpdatedV2(args: GetFunctionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult
|
|
735
|
+
waitUntilFunctionUpdatedV2(args: GetFunctionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult<GetFunctionCommandOutput>>;
|
|
736
736
|
/**
|
|
737
737
|
* @see {@link GetFunctionConfigurationCommand}
|
|
738
738
|
* @param args - command input.
|
|
739
739
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
740
740
|
*/
|
|
741
|
-
waitUntilFunctionActive(args: GetFunctionConfigurationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult
|
|
741
|
+
waitUntilFunctionActive(args: GetFunctionConfigurationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult<GetFunctionConfigurationCommandOutput>>;
|
|
742
742
|
/**
|
|
743
743
|
* @see {@link GetFunctionConfigurationCommand}
|
|
744
744
|
* @param args - command input.
|
|
745
745
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
746
746
|
*/
|
|
747
|
-
waitUntilFunctionUpdated(args: GetFunctionConfigurationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult
|
|
747
|
+
waitUntilFunctionUpdated(args: GetFunctionConfigurationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult<GetFunctionConfigurationCommandOutput>>;
|
|
748
748
|
/**
|
|
749
749
|
* @see {@link GetFunctionConfigurationCommand}
|
|
750
750
|
* @param args - command input.
|
|
751
751
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
752
752
|
*/
|
|
753
|
-
waitUntilPublishedVersionActive(args: GetFunctionConfigurationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult
|
|
753
|
+
waitUntilPublishedVersionActive(args: GetFunctionConfigurationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Lambda>, "client">): Promise<WaiterResult<GetFunctionConfigurationCommandOutput>>;
|
|
754
754
|
}
|
|
755
755
|
/**
|
|
756
756
|
* <fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>Lambda is a compute service that lets you run code without provisioning or managing servers. Lambda runs your code on a high-availability compute infrastructure and performs all of the administration of the compute resources, including server and operating system maintenance, capacity provisioning and automatic scaling, code monitoring and logging. With Lambda, you can run code for virtually any type of application or backend service. For more information about the Lambda service, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is Lambda</a> in the <b>Lambda Developer Guide</b>.</p> <p>The <i>Lambda API Reference</i> provides information about each of the API methods, including details about the parameters in each API request and response. </p> <p/> <p>You can use Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools to access the API. For installation instructions, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. </p> <p>For a list of Region-specific endpoints that Lambda supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/lambda-service.html">Lambda endpoints and quotas </a> in the <i>Amazon Web Services General Reference.</i>. </p> <p>When making the API calls, you will need to authenticate your request by providing a signature. Lambda supports signature version 4. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 signing process</a> in the <i>Amazon Web Services General Reference.</i>. </p> <p> <b>CA certificates</b> </p> <p>Because Amazon Web Services SDKs use the CA certificates from your computer, changes to the certificates on the Amazon Web Services servers can cause connection failures when you attempt to use an SDK. You can prevent these failures by keeping your computer's CA certificates and operating system up-to-date. If you encounter this issue in a corporate environment and do not manage your own computer, you might need to ask an administrator to assist with the update process. The following list shows minimum operating system and Java versions:</p> <ul> <li> <p>Microsoft Windows versions that have updates from January 2005 or later installed contain at least one of the required CAs in their trust list. </p> </li> <li> <p>Mac OS X 10.4 with Java for Mac OS X 10.4 Release 5 (February 2007), Mac OS X 10.5 (October 2007), and later versions contain at least one of the required CAs in their trust list. </p> </li> <li> <p>Red Hat Enterprise Linux 5 (March 2007), 6, and 7 and CentOS 5, 6, and 7 all contain at least one of the required CAs in their default trusted CA list. </p> </li> <li> <p>Java 1.4.2_12 (May 2006), 5 Update 2 (March 2005), and all later versions, including Java 6 (December 2006), 7, and 8, contain at least one of the required CAs in their default trusted CA list. </p> </li> </ul> <p>When accessing the Lambda management console or Lambda API endpoints, whether through browsers or programmatically, you will need to ensure your client machines support any of the following CAs: </p> <ul> <li> <p>Amazon Root CA 1</p> </li> <li> <p>Starfield Services Root Certificate Authority - G2</p> </li> <li> <p>Starfield Class 2 Certification Authority</p> </li> </ul> <p>Root certificates from the first two authorities are available from <a href="https://www.amazontrust.com/repository/">Amazon trust services</a>, but keeping your computer up-to-date is the more straightforward solution. To learn more about ACM-provided certificates, see <a href="http://aws.amazon.com/certificate-manager/faqs/#certificates">Amazon Web Services Certificate Manager FAQs.</a> </p>
|
|
@@ -1614,7 +1614,7 @@ export interface Lambda {
|
|
|
1614
1614
|
WaiterConfiguration<Lambda>,
|
|
1615
1615
|
Exclude<keyof WaiterConfiguration<Lambda>, "client">
|
|
1616
1616
|
>
|
|
1617
|
-
): Promise<WaiterResult
|
|
1617
|
+
): Promise<WaiterResult<GetFunctionCommandOutput>>;
|
|
1618
1618
|
waitUntilFunctionExists(
|
|
1619
1619
|
args: GetFunctionCommandInput,
|
|
1620
1620
|
waiterConfig:
|
|
@@ -1623,7 +1623,7 @@ export interface Lambda {
|
|
|
1623
1623
|
WaiterConfiguration<Lambda>,
|
|
1624
1624
|
Exclude<keyof WaiterConfiguration<Lambda>, "client">
|
|
1625
1625
|
>
|
|
1626
|
-
): Promise<WaiterResult
|
|
1626
|
+
): Promise<WaiterResult<GetFunctionCommandOutput>>;
|
|
1627
1627
|
waitUntilFunctionUpdatedV2(
|
|
1628
1628
|
args: GetFunctionCommandInput,
|
|
1629
1629
|
waiterConfig:
|
|
@@ -1632,7 +1632,7 @@ export interface Lambda {
|
|
|
1632
1632
|
WaiterConfiguration<Lambda>,
|
|
1633
1633
|
Exclude<keyof WaiterConfiguration<Lambda>, "client">
|
|
1634
1634
|
>
|
|
1635
|
-
): Promise<WaiterResult
|
|
1635
|
+
): Promise<WaiterResult<GetFunctionCommandOutput>>;
|
|
1636
1636
|
waitUntilFunctionActive(
|
|
1637
1637
|
args: GetFunctionConfigurationCommandInput,
|
|
1638
1638
|
waiterConfig:
|
|
@@ -1641,7 +1641,7 @@ export interface Lambda {
|
|
|
1641
1641
|
WaiterConfiguration<Lambda>,
|
|
1642
1642
|
Exclude<keyof WaiterConfiguration<Lambda>, "client">
|
|
1643
1643
|
>
|
|
1644
|
-
): Promise<WaiterResult
|
|
1644
|
+
): Promise<WaiterResult<GetFunctionConfigurationCommandOutput>>;
|
|
1645
1645
|
waitUntilFunctionUpdated(
|
|
1646
1646
|
args: GetFunctionConfigurationCommandInput,
|
|
1647
1647
|
waiterConfig:
|
|
@@ -1650,7 +1650,7 @@ export interface Lambda {
|
|
|
1650
1650
|
WaiterConfiguration<Lambda>,
|
|
1651
1651
|
Exclude<keyof WaiterConfiguration<Lambda>, "client">
|
|
1652
1652
|
>
|
|
1653
|
-
): Promise<WaiterResult
|
|
1653
|
+
): Promise<WaiterResult<GetFunctionConfigurationCommandOutput>>;
|
|
1654
1654
|
waitUntilPublishedVersionActive(
|
|
1655
1655
|
args: GetFunctionConfigurationCommandInput,
|
|
1656
1656
|
waiterConfig:
|
|
@@ -1659,6 +1659,6 @@ export interface Lambda {
|
|
|
1659
1659
|
WaiterConfiguration<Lambda>,
|
|
1660
1660
|
Exclude<keyof WaiterConfiguration<Lambda>, "client">
|
|
1661
1661
|
>
|
|
1662
|
-
): Promise<WaiterResult
|
|
1662
|
+
): Promise<WaiterResult<GetFunctionConfigurationCommandOutput>>;
|
|
1663
1663
|
}
|
|
1664
1664
|
export declare class Lambda extends LambdaClient implements Lambda {}
|