You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/Services/AWSCognitoIdentityProvider/Sources/AWSCognitoIdentityProvider/CognitoIdentityProviderClient.swift
/// Performs the `GetProvisionedLimit` operation on the `CognitoIdentityProvider` service.
6853
+
///
6854
+
/// Returns the current provisioned limit for a specific API category. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more
6855
+
///
6856
+
/// * [Signing Amazon Web Services API Requests](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-signing.html)
6857
+
///
6858
+
/// * [Using the Amazon Cognito user pools API and user pool endpoints](https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html)
/// Performs the `GetSigningCertificate` operation on the `CognitoIdentityProvider` service.
6853
6935
///
6854
6936
/// Given a user pool ID, returns the signing certificate for SAML 2.0 federation. Issued certificates are valid for 10 years from the date of issue. Amazon Cognito issues and assigns a new signing certificate annually. This renewal process returns a new value in the response to GetSigningCertificate, but doesn't invalidate the original certificate. For more information, see [Signing SAML requests](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-SAML-signing-encryption.html#cognito-user-pools-SAML-signing). Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more
/// Performs the `UpdateProvisionedLimit` operation on the `CognitoIdentityProvider` service.
10510
+
///
10511
+
/// Sets the provisioned limit for a specific API category. The value must be between the default limit and your account-level maximum limit in Service Quotas. Managed login user pools don't support adjustments to the UserAuthentication or UserFederation categories. To increase these limits, submit a Service Quotas increase request. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more
10512
+
///
10513
+
/// * [Signing Amazon Web Services API Requests](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-signing.html)
10514
+
///
10515
+
/// * [Using the Amazon Cognito user pools API and user pool endpoints](https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html)
/// - Throws: One of the exceptions listed below __Possible Exceptions__.
10522
+
///
10523
+
/// __Possible Exceptions:__
10524
+
/// - `InternalErrorException` : This exception is thrown when Amazon Cognito encounters an internal error.
10525
+
/// - `InvalidParameterException` : This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
10526
+
/// - `NotAuthorizedException` : This exception is thrown when a user isn't authorized.
10527
+
/// - `ResourceNotFoundException` : This exception is thrown when the Amazon Cognito service can't find the requested resource.
10528
+
/// - `ServiceQuotaExceededException` : The request exceeded your account's service quota. To increase your limit, use or submit a Service Quotas increase request.
10529
+
/// - `TooManyRequestsException` : This exception is thrown when the user has made too many requests for a given operation.
10530
+
public func updateProvisionedLimit(input: UpdateProvisionedLimitInput) async throws -> UpdateProvisionedLimitOutput {
10531
+
var config = config
10532
+
let plugins: [any ClientRuntime.Plugin] = [SmithyAWSJSON.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
/// Performs the `UpdateResourceServer` operation on the `CognitoIdentityProvider` service.
10428
10593
///
10429
10594
/// Updates the name and scopes of a resource server. All other fields are read-only. For more information about resource servers, see [Access control with resource servers](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-define-resource-servers.html). If you don't provide a value for an attribute, it is set to the default value. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more
0 commit comments