@effect-aws/client-iam 1.0.2 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/docgen.json +1 -1
- package/lib/Errors.d.ts +1 -1
- package/lib/Errors.js +1 -1
- package/lib/IAMClientInstance.d.ts +7 -11
- package/lib/IAMClientInstance.js +5 -3
- package/lib/IAMClientInstanceConfig.d.ts +5 -9
- package/lib/IAMClientInstanceConfig.js +5 -3
- package/lib/IAMService.d.ts +163 -163
- package/lib/IAMService.js +2 -2
- package/lib/esm/Errors.js +1 -1
- package/lib/esm/IAMClientInstance.js +3 -2
- package/lib/esm/IAMClientInstanceConfig.js +3 -2
- package/lib/esm/IAMService.js +2 -2
- package/package.json +3 -7
- package/project.json +6 -6
package/lib/IAMService.d.ts
CHANGED
|
@@ -15,639 +15,639 @@ export type IAMService = {
|
|
|
15
15
|
/**
|
|
16
16
|
* @see {@link AddClientIDToOpenIDConnectProviderCommand}
|
|
17
17
|
*/
|
|
18
|
-
readonly addClientIDToOpenIDConnectProvider: (args: AddClientIDToOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
18
|
+
readonly addClientIDToOpenIDConnectProvider: (args: AddClientIDToOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<AddClientIDToOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
19
19
|
/**
|
|
20
20
|
* @see {@link AddRoleToInstanceProfileCommand}
|
|
21
21
|
*/
|
|
22
|
-
readonly addRoleToInstanceProfile: (args: AddRoleToInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
22
|
+
readonly addRoleToInstanceProfile: (args: AddRoleToInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<AddRoleToInstanceProfileCommandOutput, SdkError | IAMServiceError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
23
23
|
/**
|
|
24
24
|
* @see {@link AddUserToGroupCommand}
|
|
25
25
|
*/
|
|
26
|
-
readonly addUserToGroup: (args: AddUserToGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
26
|
+
readonly addUserToGroup: (args: AddUserToGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<AddUserToGroupCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
27
27
|
/**
|
|
28
28
|
* @see {@link AttachGroupPolicyCommand}
|
|
29
29
|
*/
|
|
30
|
-
readonly attachGroupPolicy: (args: AttachGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
30
|
+
readonly attachGroupPolicy: (args: AttachGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<AttachGroupPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | PolicyNotAttachableError | ServiceFailureError>;
|
|
31
31
|
/**
|
|
32
32
|
* @see {@link AttachRolePolicyCommand}
|
|
33
33
|
*/
|
|
34
|
-
readonly attachRolePolicy: (args: AttachRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
34
|
+
readonly attachRolePolicy: (args: AttachRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<AttachRolePolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | PolicyNotAttachableError | ServiceFailureError | UnmodifiableEntityError>;
|
|
35
35
|
/**
|
|
36
36
|
* @see {@link AttachUserPolicyCommand}
|
|
37
37
|
*/
|
|
38
|
-
readonly attachUserPolicy: (args: AttachUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
38
|
+
readonly attachUserPolicy: (args: AttachUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<AttachUserPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | PolicyNotAttachableError | ServiceFailureError>;
|
|
39
39
|
/**
|
|
40
40
|
* @see {@link ChangePasswordCommand}
|
|
41
41
|
*/
|
|
42
|
-
readonly changePassword: (args: ChangePasswordCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
42
|
+
readonly changePassword: (args: ChangePasswordCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ChangePasswordCommandOutput, SdkError | IAMServiceError | EntityTemporarilyUnmodifiableError | InvalidUserTypeError | LimitExceededError | NoSuchEntityError | PasswordPolicyViolationError | ServiceFailureError>;
|
|
43
43
|
/**
|
|
44
44
|
* @see {@link CreateAccessKeyCommand}
|
|
45
45
|
*/
|
|
46
|
-
readonly createAccessKey: (args: CreateAccessKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
46
|
+
readonly createAccessKey: (args: CreateAccessKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateAccessKeyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
47
47
|
/**
|
|
48
48
|
* @see {@link CreateAccountAliasCommand}
|
|
49
49
|
*/
|
|
50
|
-
readonly createAccountAlias: (args: CreateAccountAliasCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
50
|
+
readonly createAccountAlias: (args: CreateAccountAliasCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateAccountAliasCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | LimitExceededError | ServiceFailureError>;
|
|
51
51
|
/**
|
|
52
52
|
* @see {@link CreateGroupCommand}
|
|
53
53
|
*/
|
|
54
|
-
readonly createGroup: (args: CreateGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
54
|
+
readonly createGroup: (args: CreateGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateGroupCommandOutput, SdkError | IAMServiceError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
55
55
|
/**
|
|
56
56
|
* @see {@link CreateInstanceProfileCommand}
|
|
57
57
|
*/
|
|
58
|
-
readonly createInstanceProfile: (args: CreateInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
58
|
+
readonly createInstanceProfile: (args: CreateInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateInstanceProfileCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | ServiceFailureError>;
|
|
59
59
|
/**
|
|
60
60
|
* @see {@link CreateLoginProfileCommand}
|
|
61
61
|
*/
|
|
62
|
-
readonly createLoginProfile: (args: CreateLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
62
|
+
readonly createLoginProfile: (args: CreateLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateLoginProfileCommandOutput, SdkError | IAMServiceError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | PasswordPolicyViolationError | ServiceFailureError>;
|
|
63
63
|
/**
|
|
64
64
|
* @see {@link CreateOpenIDConnectProviderCommand}
|
|
65
65
|
*/
|
|
66
|
-
readonly createOpenIDConnectProvider: (args: CreateOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
66
|
+
readonly createOpenIDConnectProvider: (args: CreateOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | ServiceFailureError>;
|
|
67
67
|
/**
|
|
68
68
|
* @see {@link CreatePolicyCommand}
|
|
69
69
|
*/
|
|
70
|
-
readonly createPolicy: (args: CreatePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
70
|
+
readonly createPolicy: (args: CreatePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreatePolicyCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | MalformedPolicyDocumentError | ServiceFailureError>;
|
|
71
71
|
/**
|
|
72
72
|
* @see {@link CreatePolicyVersionCommand}
|
|
73
73
|
*/
|
|
74
|
-
readonly createPolicyVersion: (args: CreatePolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
74
|
+
readonly createPolicyVersion: (args: CreatePolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreatePolicyVersionCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError>;
|
|
75
75
|
/**
|
|
76
76
|
* @see {@link CreateRoleCommand}
|
|
77
77
|
*/
|
|
78
|
-
readonly createRole: (args: CreateRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
78
|
+
readonly createRole: (args: CreateRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateRoleCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | MalformedPolicyDocumentError | ServiceFailureError>;
|
|
79
79
|
/**
|
|
80
80
|
* @see {@link CreateSAMLProviderCommand}
|
|
81
81
|
*/
|
|
82
|
-
readonly createSAMLProvider: (args: CreateSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
82
|
+
readonly createSAMLProvider: (args: CreateSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateSAMLProviderCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | ServiceFailureError>;
|
|
83
83
|
/**
|
|
84
84
|
* @see {@link CreateServiceLinkedRoleCommand}
|
|
85
85
|
*/
|
|
86
|
-
readonly createServiceLinkedRole: (args: CreateServiceLinkedRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
86
|
+
readonly createServiceLinkedRole: (args: CreateServiceLinkedRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateServiceLinkedRoleCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
87
87
|
/**
|
|
88
88
|
* @see {@link CreateServiceSpecificCredentialCommand}
|
|
89
89
|
*/
|
|
90
|
-
readonly createServiceSpecificCredential: (args: CreateServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
90
|
+
readonly createServiceSpecificCredential: (args: CreateServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateServiceSpecificCredentialCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError>;
|
|
91
91
|
/**
|
|
92
92
|
* @see {@link CreateUserCommand}
|
|
93
93
|
*/
|
|
94
|
-
readonly createUser: (args: CreateUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
94
|
+
readonly createUser: (args: CreateUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateUserCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
95
95
|
/**
|
|
96
96
|
* @see {@link CreateVirtualMFADeviceCommand}
|
|
97
97
|
*/
|
|
98
|
-
readonly createVirtualMFADevice: (args: CreateVirtualMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
98
|
+
readonly createVirtualMFADevice: (args: CreateVirtualMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<CreateVirtualMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | LimitExceededError | ServiceFailureError>;
|
|
99
99
|
/**
|
|
100
100
|
* @see {@link DeactivateMFADeviceCommand}
|
|
101
101
|
*/
|
|
102
|
-
readonly deactivateMFADevice: (args: DeactivateMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
102
|
+
readonly deactivateMFADevice: (args: DeactivateMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeactivateMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityTemporarilyUnmodifiableError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
103
103
|
/**
|
|
104
104
|
* @see {@link DeleteAccessKeyCommand}
|
|
105
105
|
*/
|
|
106
|
-
readonly deleteAccessKey: (args: DeleteAccessKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
106
|
+
readonly deleteAccessKey: (args: DeleteAccessKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteAccessKeyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
107
107
|
/**
|
|
108
108
|
* @see {@link DeleteAccountAliasCommand}
|
|
109
109
|
*/
|
|
110
|
-
readonly deleteAccountAlias: (args: DeleteAccountAliasCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
110
|
+
readonly deleteAccountAlias: (args: DeleteAccountAliasCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteAccountAliasCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
111
111
|
/**
|
|
112
112
|
* @see {@link DeleteAccountPasswordPolicyCommand}
|
|
113
113
|
*/
|
|
114
|
-
readonly deleteAccountPasswordPolicy: (args: DeleteAccountPasswordPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
114
|
+
readonly deleteAccountPasswordPolicy: (args: DeleteAccountPasswordPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteAccountPasswordPolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
115
115
|
/**
|
|
116
116
|
* @see {@link DeleteGroupCommand}
|
|
117
117
|
*/
|
|
118
|
-
readonly deleteGroup: (args: DeleteGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
118
|
+
readonly deleteGroup: (args: DeleteGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteGroupCommandOutput, SdkError | IAMServiceError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
119
119
|
/**
|
|
120
120
|
* @see {@link DeleteGroupPolicyCommand}
|
|
121
121
|
*/
|
|
122
|
-
readonly deleteGroupPolicy: (args: DeleteGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
122
|
+
readonly deleteGroupPolicy: (args: DeleteGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteGroupPolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
123
123
|
/**
|
|
124
124
|
* @see {@link DeleteInstanceProfileCommand}
|
|
125
125
|
*/
|
|
126
|
-
readonly deleteInstanceProfile: (args: DeleteInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
126
|
+
readonly deleteInstanceProfile: (args: DeleteInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteInstanceProfileCommandOutput, SdkError | IAMServiceError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
127
127
|
/**
|
|
128
128
|
* @see {@link DeleteLoginProfileCommand}
|
|
129
129
|
*/
|
|
130
|
-
readonly deleteLoginProfile: (args: DeleteLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
130
|
+
readonly deleteLoginProfile: (args: DeleteLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteLoginProfileCommandOutput, SdkError | IAMServiceError | EntityTemporarilyUnmodifiableError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
131
131
|
/**
|
|
132
132
|
* @see {@link DeleteOpenIDConnectProviderCommand}
|
|
133
133
|
*/
|
|
134
|
-
readonly deleteOpenIDConnectProvider: (args: DeleteOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
134
|
+
readonly deleteOpenIDConnectProvider: (args: DeleteOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
135
135
|
/**
|
|
136
136
|
* @see {@link DeletePolicyCommand}
|
|
137
137
|
*/
|
|
138
|
-
readonly deletePolicy: (args: DeletePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
138
|
+
readonly deletePolicy: (args: DeletePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeletePolicyCommandOutput, SdkError | IAMServiceError | DeleteConflictError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
139
139
|
/**
|
|
140
140
|
* @see {@link DeletePolicyVersionCommand}
|
|
141
141
|
*/
|
|
142
|
-
readonly deletePolicyVersion: (args: DeletePolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
142
|
+
readonly deletePolicyVersion: (args: DeletePolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeletePolicyVersionCommandOutput, SdkError | IAMServiceError | DeleteConflictError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
143
143
|
/**
|
|
144
144
|
* @see {@link DeleteRoleCommand}
|
|
145
145
|
*/
|
|
146
|
-
readonly deleteRole: (args: DeleteRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
146
|
+
readonly deleteRole: (args: DeleteRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteRoleCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
147
147
|
/**
|
|
148
148
|
* @see {@link DeleteRolePermissionsBoundaryCommand}
|
|
149
149
|
*/
|
|
150
|
-
readonly deleteRolePermissionsBoundary: (args: DeleteRolePermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
150
|
+
readonly deleteRolePermissionsBoundary: (args: DeleteRolePermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteRolePermissionsBoundaryCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
151
151
|
/**
|
|
152
152
|
* @see {@link DeleteRolePolicyCommand}
|
|
153
153
|
*/
|
|
154
|
-
readonly deleteRolePolicy: (args: DeleteRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
154
|
+
readonly deleteRolePolicy: (args: DeleteRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteRolePolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
155
155
|
/**
|
|
156
156
|
* @see {@link DeleteSAMLProviderCommand}
|
|
157
157
|
*/
|
|
158
|
-
readonly deleteSAMLProvider: (args: DeleteSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
158
|
+
readonly deleteSAMLProvider: (args: DeleteSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteSAMLProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
159
159
|
/**
|
|
160
160
|
* @see {@link DeleteServerCertificateCommand}
|
|
161
161
|
*/
|
|
162
|
-
readonly deleteServerCertificate: (args: DeleteServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
162
|
+
readonly deleteServerCertificate: (args: DeleteServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteServerCertificateCommandOutput, SdkError | IAMServiceError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
163
163
|
/**
|
|
164
164
|
* @see {@link DeleteServiceLinkedRoleCommand}
|
|
165
165
|
*/
|
|
166
|
-
readonly deleteServiceLinkedRole: (args: DeleteServiceLinkedRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
166
|
+
readonly deleteServiceLinkedRole: (args: DeleteServiceLinkedRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteServiceLinkedRoleCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
167
167
|
/**
|
|
168
168
|
* @see {@link DeleteServiceSpecificCredentialCommand}
|
|
169
169
|
*/
|
|
170
|
-
readonly deleteServiceSpecificCredential: (args: DeleteServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
170
|
+
readonly deleteServiceSpecificCredential: (args: DeleteServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteServiceSpecificCredentialCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
171
171
|
/**
|
|
172
172
|
* @see {@link DeleteSigningCertificateCommand}
|
|
173
173
|
*/
|
|
174
|
-
readonly deleteSigningCertificate: (args: DeleteSigningCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
174
|
+
readonly deleteSigningCertificate: (args: DeleteSigningCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteSigningCertificateCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
175
175
|
/**
|
|
176
176
|
* @see {@link DeleteSSHPublicKeyCommand}
|
|
177
177
|
*/
|
|
178
|
-
readonly deleteSSHPublicKey: (args: DeleteSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
178
|
+
readonly deleteSSHPublicKey: (args: DeleteSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteSSHPublicKeyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
179
179
|
/**
|
|
180
180
|
* @see {@link DeleteUserCommand}
|
|
181
181
|
*/
|
|
182
|
-
readonly deleteUser: (args: DeleteUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
182
|
+
readonly deleteUser: (args: DeleteUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteUserCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
183
183
|
/**
|
|
184
184
|
* @see {@link DeleteUserPermissionsBoundaryCommand}
|
|
185
185
|
*/
|
|
186
|
-
readonly deleteUserPermissionsBoundary: (args: DeleteUserPermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
186
|
+
readonly deleteUserPermissionsBoundary: (args: DeleteUserPermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteUserPermissionsBoundaryCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
187
187
|
/**
|
|
188
188
|
* @see {@link DeleteUserPolicyCommand}
|
|
189
189
|
*/
|
|
190
|
-
readonly deleteUserPolicy: (args: DeleteUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
190
|
+
readonly deleteUserPolicy: (args: DeleteUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteUserPolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
191
191
|
/**
|
|
192
192
|
* @see {@link DeleteVirtualMFADeviceCommand}
|
|
193
193
|
*/
|
|
194
|
-
readonly deleteVirtualMFADevice: (args: DeleteVirtualMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
194
|
+
readonly deleteVirtualMFADevice: (args: DeleteVirtualMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DeleteVirtualMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
195
195
|
/**
|
|
196
196
|
* @see {@link DetachGroupPolicyCommand}
|
|
197
197
|
*/
|
|
198
|
-
readonly detachGroupPolicy: (args: DetachGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
198
|
+
readonly detachGroupPolicy: (args: DetachGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DetachGroupPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
199
199
|
/**
|
|
200
200
|
* @see {@link DetachRolePolicyCommand}
|
|
201
201
|
*/
|
|
202
|
-
readonly detachRolePolicy: (args: DetachRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
202
|
+
readonly detachRolePolicy: (args: DetachRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DetachRolePolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
203
203
|
/**
|
|
204
204
|
* @see {@link DetachUserPolicyCommand}
|
|
205
205
|
*/
|
|
206
|
-
readonly detachUserPolicy: (args: DetachUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
206
|
+
readonly detachUserPolicy: (args: DetachUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<DetachUserPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
207
207
|
/**
|
|
208
208
|
* @see {@link EnableMFADeviceCommand}
|
|
209
209
|
*/
|
|
210
|
-
readonly enableMFADevice: (args: EnableMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
210
|
+
readonly enableMFADevice: (args: EnableMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<EnableMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | EntityTemporarilyUnmodifiableError | InvalidAuthenticationCodeError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
211
211
|
/**
|
|
212
212
|
* @see {@link GenerateCredentialReportCommand}
|
|
213
213
|
*/
|
|
214
|
-
readonly generateCredentialReport: (args: GenerateCredentialReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
214
|
+
readonly generateCredentialReport: (args: GenerateCredentialReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GenerateCredentialReportCommandOutput, SdkError | IAMServiceError | LimitExceededError | ServiceFailureError>;
|
|
215
215
|
/**
|
|
216
216
|
* @see {@link GenerateOrganizationsAccessReportCommand}
|
|
217
217
|
*/
|
|
218
|
-
readonly generateOrganizationsAccessReport: (args: GenerateOrganizationsAccessReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
218
|
+
readonly generateOrganizationsAccessReport: (args: GenerateOrganizationsAccessReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GenerateOrganizationsAccessReportCommandOutput, SdkError | IAMServiceError | ReportGenerationLimitExceededError>;
|
|
219
219
|
/**
|
|
220
220
|
* @see {@link GenerateServiceLastAccessedDetailsCommand}
|
|
221
221
|
*/
|
|
222
|
-
readonly generateServiceLastAccessedDetails: (args: GenerateServiceLastAccessedDetailsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
222
|
+
readonly generateServiceLastAccessedDetails: (args: GenerateServiceLastAccessedDetailsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GenerateServiceLastAccessedDetailsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError>;
|
|
223
223
|
/**
|
|
224
224
|
* @see {@link GetAccessKeyLastUsedCommand}
|
|
225
225
|
*/
|
|
226
|
-
readonly getAccessKeyLastUsed: (args: GetAccessKeyLastUsedCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
226
|
+
readonly getAccessKeyLastUsed: (args: GetAccessKeyLastUsedCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetAccessKeyLastUsedCommandOutput, SdkError | IAMServiceError>;
|
|
227
227
|
/**
|
|
228
228
|
* @see {@link GetAccountAuthorizationDetailsCommand}
|
|
229
229
|
*/
|
|
230
|
-
readonly getAccountAuthorizationDetails: (args: GetAccountAuthorizationDetailsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
230
|
+
readonly getAccountAuthorizationDetails: (args: GetAccountAuthorizationDetailsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetAccountAuthorizationDetailsCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
231
231
|
/**
|
|
232
232
|
* @see {@link GetAccountPasswordPolicyCommand}
|
|
233
233
|
*/
|
|
234
|
-
readonly getAccountPasswordPolicy: (args: GetAccountPasswordPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
234
|
+
readonly getAccountPasswordPolicy: (args: GetAccountPasswordPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetAccountPasswordPolicyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
235
235
|
/**
|
|
236
236
|
* @see {@link GetAccountSummaryCommand}
|
|
237
237
|
*/
|
|
238
|
-
readonly getAccountSummary: (args: GetAccountSummaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
238
|
+
readonly getAccountSummary: (args: GetAccountSummaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetAccountSummaryCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
239
239
|
/**
|
|
240
240
|
* @see {@link GetContextKeysForCustomPolicyCommand}
|
|
241
241
|
*/
|
|
242
|
-
readonly getContextKeysForCustomPolicy: (args: GetContextKeysForCustomPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
242
|
+
readonly getContextKeysForCustomPolicy: (args: GetContextKeysForCustomPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetContextKeysForCustomPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError>;
|
|
243
243
|
/**
|
|
244
244
|
* @see {@link GetContextKeysForPrincipalPolicyCommand}
|
|
245
245
|
*/
|
|
246
|
-
readonly getContextKeysForPrincipalPolicy: (args: GetContextKeysForPrincipalPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
246
|
+
readonly getContextKeysForPrincipalPolicy: (args: GetContextKeysForPrincipalPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetContextKeysForPrincipalPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError>;
|
|
247
247
|
/**
|
|
248
248
|
* @see {@link GetCredentialReportCommand}
|
|
249
249
|
*/
|
|
250
|
-
readonly getCredentialReport: (args: GetCredentialReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
250
|
+
readonly getCredentialReport: (args: GetCredentialReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetCredentialReportCommandOutput, SdkError | IAMServiceError | CredentialReportExpiredError | CredentialReportNotPresentError | CredentialReportNotReadyError | ServiceFailureError>;
|
|
251
251
|
/**
|
|
252
252
|
* @see {@link GetGroupCommand}
|
|
253
253
|
*/
|
|
254
|
-
readonly getGroup: (args: GetGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
254
|
+
readonly getGroup: (args: GetGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetGroupCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
255
255
|
/**
|
|
256
256
|
* @see {@link GetGroupPolicyCommand}
|
|
257
257
|
*/
|
|
258
|
-
readonly getGroupPolicy: (args: GetGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
258
|
+
readonly getGroupPolicy: (args: GetGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetGroupPolicyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
259
259
|
/**
|
|
260
260
|
* @see {@link GetInstanceProfileCommand}
|
|
261
261
|
*/
|
|
262
|
-
readonly getInstanceProfile: (args: GetInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
262
|
+
readonly getInstanceProfile: (args: GetInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetInstanceProfileCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
263
263
|
/**
|
|
264
264
|
* @see {@link GetLoginProfileCommand}
|
|
265
265
|
*/
|
|
266
|
-
readonly getLoginProfile: (args: GetLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
266
|
+
readonly getLoginProfile: (args: GetLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetLoginProfileCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
267
267
|
/**
|
|
268
268
|
* @see {@link GetMFADeviceCommand}
|
|
269
269
|
*/
|
|
270
|
-
readonly getMFADevice: (args: GetMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
270
|
+
readonly getMFADevice: (args: GetMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetMFADeviceCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
271
271
|
/**
|
|
272
272
|
* @see {@link GetOpenIDConnectProviderCommand}
|
|
273
273
|
*/
|
|
274
|
-
readonly getOpenIDConnectProvider: (args: GetOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
274
|
+
readonly getOpenIDConnectProvider: (args: GetOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
275
275
|
/**
|
|
276
276
|
* @see {@link GetOrganizationsAccessReportCommand}
|
|
277
277
|
*/
|
|
278
|
-
readonly getOrganizationsAccessReport: (args: GetOrganizationsAccessReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
278
|
+
readonly getOrganizationsAccessReport: (args: GetOrganizationsAccessReportCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetOrganizationsAccessReportCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
279
279
|
/**
|
|
280
280
|
* @see {@link GetPolicyCommand}
|
|
281
281
|
*/
|
|
282
|
-
readonly getPolicy: (args: GetPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
282
|
+
readonly getPolicy: (args: GetPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
283
283
|
/**
|
|
284
284
|
* @see {@link GetPolicyVersionCommand}
|
|
285
285
|
*/
|
|
286
|
-
readonly getPolicyVersion: (args: GetPolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
286
|
+
readonly getPolicyVersion: (args: GetPolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetPolicyVersionCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
287
287
|
/**
|
|
288
288
|
* @see {@link GetRoleCommand}
|
|
289
289
|
*/
|
|
290
|
-
readonly getRole: (args: GetRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
290
|
+
readonly getRole: (args: GetRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetRoleCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
291
291
|
/**
|
|
292
292
|
* @see {@link GetRolePolicyCommand}
|
|
293
293
|
*/
|
|
294
|
-
readonly getRolePolicy: (args: GetRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
294
|
+
readonly getRolePolicy: (args: GetRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetRolePolicyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
295
295
|
/**
|
|
296
296
|
* @see {@link GetSAMLProviderCommand}
|
|
297
297
|
*/
|
|
298
|
-
readonly getSAMLProvider: (args: GetSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
298
|
+
readonly getSAMLProvider: (args: GetSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetSAMLProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
299
299
|
/**
|
|
300
300
|
* @see {@link GetServerCertificateCommand}
|
|
301
301
|
*/
|
|
302
|
-
readonly getServerCertificate: (args: GetServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
302
|
+
readonly getServerCertificate: (args: GetServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetServerCertificateCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
303
303
|
/**
|
|
304
304
|
* @see {@link GetServiceLastAccessedDetailsCommand}
|
|
305
305
|
*/
|
|
306
|
-
readonly getServiceLastAccessedDetails: (args: GetServiceLastAccessedDetailsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
306
|
+
readonly getServiceLastAccessedDetails: (args: GetServiceLastAccessedDetailsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetServiceLastAccessedDetailsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError>;
|
|
307
307
|
/**
|
|
308
308
|
* @see {@link GetServiceLastAccessedDetailsWithEntitiesCommand}
|
|
309
309
|
*/
|
|
310
|
-
readonly getServiceLastAccessedDetailsWithEntities: (args: GetServiceLastAccessedDetailsWithEntitiesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
310
|
+
readonly getServiceLastAccessedDetailsWithEntities: (args: GetServiceLastAccessedDetailsWithEntitiesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetServiceLastAccessedDetailsWithEntitiesCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError>;
|
|
311
311
|
/**
|
|
312
312
|
* @see {@link GetServiceLinkedRoleDeletionStatusCommand}
|
|
313
313
|
*/
|
|
314
|
-
readonly getServiceLinkedRoleDeletionStatus: (args: GetServiceLinkedRoleDeletionStatusCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
314
|
+
readonly getServiceLinkedRoleDeletionStatus: (args: GetServiceLinkedRoleDeletionStatusCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetServiceLinkedRoleDeletionStatusCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
315
315
|
/**
|
|
316
316
|
* @see {@link GetSSHPublicKeyCommand}
|
|
317
317
|
*/
|
|
318
|
-
readonly getSSHPublicKey: (args: GetSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
318
|
+
readonly getSSHPublicKey: (args: GetSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetSSHPublicKeyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError>;
|
|
319
319
|
/**
|
|
320
320
|
* @see {@link GetUserCommand}
|
|
321
321
|
*/
|
|
322
|
-
readonly getUser: (args: GetUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
322
|
+
readonly getUser: (args: GetUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetUserCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
323
323
|
/**
|
|
324
324
|
* @see {@link GetUserPolicyCommand}
|
|
325
325
|
*/
|
|
326
|
-
readonly getUserPolicy: (args: GetUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
326
|
+
readonly getUserPolicy: (args: GetUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<GetUserPolicyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
327
327
|
/**
|
|
328
328
|
* @see {@link ListAccessKeysCommand}
|
|
329
329
|
*/
|
|
330
|
-
readonly listAccessKeys: (args: ListAccessKeysCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
330
|
+
readonly listAccessKeys: (args: ListAccessKeysCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListAccessKeysCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
331
331
|
/**
|
|
332
332
|
* @see {@link ListAccountAliasesCommand}
|
|
333
333
|
*/
|
|
334
|
-
readonly listAccountAliases: (args: ListAccountAliasesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
334
|
+
readonly listAccountAliases: (args: ListAccountAliasesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListAccountAliasesCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
335
335
|
/**
|
|
336
336
|
* @see {@link ListAttachedGroupPoliciesCommand}
|
|
337
337
|
*/
|
|
338
|
-
readonly listAttachedGroupPolicies: (args: ListAttachedGroupPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
338
|
+
readonly listAttachedGroupPolicies: (args: ListAttachedGroupPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListAttachedGroupPoliciesCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
339
339
|
/**
|
|
340
340
|
* @see {@link ListAttachedRolePoliciesCommand}
|
|
341
341
|
*/
|
|
342
|
-
readonly listAttachedRolePolicies: (args: ListAttachedRolePoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
342
|
+
readonly listAttachedRolePolicies: (args: ListAttachedRolePoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListAttachedRolePoliciesCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
343
343
|
/**
|
|
344
344
|
* @see {@link ListAttachedUserPoliciesCommand}
|
|
345
345
|
*/
|
|
346
|
-
readonly listAttachedUserPolicies: (args: ListAttachedUserPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
346
|
+
readonly listAttachedUserPolicies: (args: ListAttachedUserPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListAttachedUserPoliciesCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
347
347
|
/**
|
|
348
348
|
* @see {@link ListEntitiesForPolicyCommand}
|
|
349
349
|
*/
|
|
350
|
-
readonly listEntitiesForPolicy: (args: ListEntitiesForPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
350
|
+
readonly listEntitiesForPolicy: (args: ListEntitiesForPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListEntitiesForPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
351
351
|
/**
|
|
352
352
|
* @see {@link ListGroupPoliciesCommand}
|
|
353
353
|
*/
|
|
354
|
-
readonly listGroupPolicies: (args: ListGroupPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
354
|
+
readonly listGroupPolicies: (args: ListGroupPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListGroupPoliciesCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
355
355
|
/**
|
|
356
356
|
* @see {@link ListGroupsCommand}
|
|
357
357
|
*/
|
|
358
|
-
readonly listGroups: (args: ListGroupsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
358
|
+
readonly listGroups: (args: ListGroupsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListGroupsCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
359
359
|
/**
|
|
360
360
|
* @see {@link ListGroupsForUserCommand}
|
|
361
361
|
*/
|
|
362
|
-
readonly listGroupsForUser: (args: ListGroupsForUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
362
|
+
readonly listGroupsForUser: (args: ListGroupsForUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListGroupsForUserCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
363
363
|
/**
|
|
364
364
|
* @see {@link ListInstanceProfilesCommand}
|
|
365
365
|
*/
|
|
366
|
-
readonly listInstanceProfiles: (args: ListInstanceProfilesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
366
|
+
readonly listInstanceProfiles: (args: ListInstanceProfilesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListInstanceProfilesCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
367
367
|
/**
|
|
368
368
|
* @see {@link ListInstanceProfilesForRoleCommand}
|
|
369
369
|
*/
|
|
370
|
-
readonly listInstanceProfilesForRole: (args: ListInstanceProfilesForRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
370
|
+
readonly listInstanceProfilesForRole: (args: ListInstanceProfilesForRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListInstanceProfilesForRoleCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
371
371
|
/**
|
|
372
372
|
* @see {@link ListInstanceProfileTagsCommand}
|
|
373
373
|
*/
|
|
374
|
-
readonly listInstanceProfileTags: (args: ListInstanceProfileTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
374
|
+
readonly listInstanceProfileTags: (args: ListInstanceProfileTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListInstanceProfileTagsCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
375
375
|
/**
|
|
376
376
|
* @see {@link ListMFADevicesCommand}
|
|
377
377
|
*/
|
|
378
|
-
readonly listMFADevices: (args: ListMFADevicesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
378
|
+
readonly listMFADevices: (args: ListMFADevicesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListMFADevicesCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
379
379
|
/**
|
|
380
380
|
* @see {@link ListMFADeviceTagsCommand}
|
|
381
381
|
*/
|
|
382
|
-
readonly listMFADeviceTags: (args: ListMFADeviceTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
382
|
+
readonly listMFADeviceTags: (args: ListMFADeviceTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListMFADeviceTagsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
383
383
|
/**
|
|
384
384
|
* @see {@link ListOpenIDConnectProvidersCommand}
|
|
385
385
|
*/
|
|
386
|
-
readonly listOpenIDConnectProviders: (args: ListOpenIDConnectProvidersCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
386
|
+
readonly listOpenIDConnectProviders: (args: ListOpenIDConnectProvidersCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListOpenIDConnectProvidersCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
387
387
|
/**
|
|
388
388
|
* @see {@link ListOpenIDConnectProviderTagsCommand}
|
|
389
389
|
*/
|
|
390
|
-
readonly listOpenIDConnectProviderTags: (args: ListOpenIDConnectProviderTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
390
|
+
readonly listOpenIDConnectProviderTags: (args: ListOpenIDConnectProviderTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListOpenIDConnectProviderTagsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
391
391
|
/**
|
|
392
392
|
* @see {@link ListPoliciesCommand}
|
|
393
393
|
*/
|
|
394
|
-
readonly listPolicies: (args: ListPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
394
|
+
readonly listPolicies: (args: ListPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListPoliciesCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
395
395
|
/**
|
|
396
396
|
* @see {@link ListPoliciesGrantingServiceAccessCommand}
|
|
397
397
|
*/
|
|
398
|
-
readonly listPoliciesGrantingServiceAccess: (args: ListPoliciesGrantingServiceAccessCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
398
|
+
readonly listPoliciesGrantingServiceAccess: (args: ListPoliciesGrantingServiceAccessCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListPoliciesGrantingServiceAccessCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError>;
|
|
399
399
|
/**
|
|
400
400
|
* @see {@link ListPolicyTagsCommand}
|
|
401
401
|
*/
|
|
402
|
-
readonly listPolicyTags: (args: ListPolicyTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
402
|
+
readonly listPolicyTags: (args: ListPolicyTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListPolicyTagsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
403
403
|
/**
|
|
404
404
|
* @see {@link ListPolicyVersionsCommand}
|
|
405
405
|
*/
|
|
406
|
-
readonly listPolicyVersions: (args: ListPolicyVersionsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
406
|
+
readonly listPolicyVersions: (args: ListPolicyVersionsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListPolicyVersionsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
407
407
|
/**
|
|
408
408
|
* @see {@link ListRolePoliciesCommand}
|
|
409
409
|
*/
|
|
410
|
-
readonly listRolePolicies: (args: ListRolePoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
410
|
+
readonly listRolePolicies: (args: ListRolePoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListRolePoliciesCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
411
411
|
/**
|
|
412
412
|
* @see {@link ListRolesCommand}
|
|
413
413
|
*/
|
|
414
|
-
readonly listRoles: (args: ListRolesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
414
|
+
readonly listRoles: (args: ListRolesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListRolesCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
415
415
|
/**
|
|
416
416
|
* @see {@link ListRoleTagsCommand}
|
|
417
417
|
*/
|
|
418
|
-
readonly listRoleTags: (args: ListRoleTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
418
|
+
readonly listRoleTags: (args: ListRoleTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListRoleTagsCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
419
419
|
/**
|
|
420
420
|
* @see {@link ListSAMLProvidersCommand}
|
|
421
421
|
*/
|
|
422
|
-
readonly listSAMLProviders: (args: ListSAMLProvidersCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
422
|
+
readonly listSAMLProviders: (args: ListSAMLProvidersCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListSAMLProvidersCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
423
423
|
/**
|
|
424
424
|
* @see {@link ListSAMLProviderTagsCommand}
|
|
425
425
|
*/
|
|
426
|
-
readonly listSAMLProviderTags: (args: ListSAMLProviderTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
426
|
+
readonly listSAMLProviderTags: (args: ListSAMLProviderTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListSAMLProviderTagsCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
427
427
|
/**
|
|
428
428
|
* @see {@link ListServerCertificatesCommand}
|
|
429
429
|
*/
|
|
430
|
-
readonly listServerCertificates: (args: ListServerCertificatesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
430
|
+
readonly listServerCertificates: (args: ListServerCertificatesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListServerCertificatesCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
431
431
|
/**
|
|
432
432
|
* @see {@link ListServerCertificateTagsCommand}
|
|
433
433
|
*/
|
|
434
|
-
readonly listServerCertificateTags: (args: ListServerCertificateTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
434
|
+
readonly listServerCertificateTags: (args: ListServerCertificateTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListServerCertificateTagsCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
435
435
|
/**
|
|
436
436
|
* @see {@link ListServiceSpecificCredentialsCommand}
|
|
437
437
|
*/
|
|
438
|
-
readonly listServiceSpecificCredentials: (args: ListServiceSpecificCredentialsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
438
|
+
readonly listServiceSpecificCredentials: (args: ListServiceSpecificCredentialsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListServiceSpecificCredentialsCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceNotSupportedError>;
|
|
439
439
|
/**
|
|
440
440
|
* @see {@link ListSigningCertificatesCommand}
|
|
441
441
|
*/
|
|
442
|
-
readonly listSigningCertificates: (args: ListSigningCertificatesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
442
|
+
readonly listSigningCertificates: (args: ListSigningCertificatesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListSigningCertificatesCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
443
443
|
/**
|
|
444
444
|
* @see {@link ListSSHPublicKeysCommand}
|
|
445
445
|
*/
|
|
446
|
-
readonly listSSHPublicKeys: (args: ListSSHPublicKeysCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
446
|
+
readonly listSSHPublicKeys: (args: ListSSHPublicKeysCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListSSHPublicKeysCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
447
447
|
/**
|
|
448
448
|
* @see {@link ListUserPoliciesCommand}
|
|
449
449
|
*/
|
|
450
|
-
readonly listUserPolicies: (args: ListUserPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
450
|
+
readonly listUserPolicies: (args: ListUserPoliciesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListUserPoliciesCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
451
451
|
/**
|
|
452
452
|
* @see {@link ListUsersCommand}
|
|
453
453
|
*/
|
|
454
|
-
readonly listUsers: (args: ListUsersCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
454
|
+
readonly listUsers: (args: ListUsersCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListUsersCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
455
455
|
/**
|
|
456
456
|
* @see {@link ListUserTagsCommand}
|
|
457
457
|
*/
|
|
458
|
-
readonly listUserTags: (args: ListUserTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
458
|
+
readonly listUserTags: (args: ListUserTagsCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListUserTagsCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError>;
|
|
459
459
|
/**
|
|
460
460
|
* @see {@link ListVirtualMFADevicesCommand}
|
|
461
461
|
*/
|
|
462
|
-
readonly listVirtualMFADevices: (args: ListVirtualMFADevicesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
462
|
+
readonly listVirtualMFADevices: (args: ListVirtualMFADevicesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ListVirtualMFADevicesCommandOutput, SdkError | IAMServiceError>;
|
|
463
463
|
/**
|
|
464
464
|
* @see {@link PutGroupPolicyCommand}
|
|
465
465
|
*/
|
|
466
|
-
readonly putGroupPolicy: (args: PutGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
466
|
+
readonly putGroupPolicy: (args: PutGroupPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<PutGroupPolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError>;
|
|
467
467
|
/**
|
|
468
468
|
* @see {@link PutRolePermissionsBoundaryCommand}
|
|
469
469
|
*/
|
|
470
|
-
readonly putRolePermissionsBoundary: (args: PutRolePermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
470
|
+
readonly putRolePermissionsBoundary: (args: PutRolePermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<PutRolePermissionsBoundaryCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | PolicyNotAttachableError | ServiceFailureError | UnmodifiableEntityError>;
|
|
471
471
|
/**
|
|
472
472
|
* @see {@link PutRolePolicyCommand}
|
|
473
473
|
*/
|
|
474
|
-
readonly putRolePolicy: (args: PutRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
474
|
+
readonly putRolePolicy: (args: PutRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<PutRolePolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
475
475
|
/**
|
|
476
476
|
* @see {@link PutUserPermissionsBoundaryCommand}
|
|
477
477
|
*/
|
|
478
|
-
readonly putUserPermissionsBoundary: (args: PutUserPermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
478
|
+
readonly putUserPermissionsBoundary: (args: PutUserPermissionsBoundaryCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<PutUserPermissionsBoundaryCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | PolicyNotAttachableError | ServiceFailureError>;
|
|
479
479
|
/**
|
|
480
480
|
* @see {@link PutUserPolicyCommand}
|
|
481
481
|
*/
|
|
482
|
-
readonly putUserPolicy: (args: PutUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
482
|
+
readonly putUserPolicy: (args: PutUserPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<PutUserPolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError>;
|
|
483
483
|
/**
|
|
484
484
|
* @see {@link RemoveClientIDFromOpenIDConnectProviderCommand}
|
|
485
485
|
*/
|
|
486
|
-
readonly removeClientIDFromOpenIDConnectProvider: (args: RemoveClientIDFromOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
486
|
+
readonly removeClientIDFromOpenIDConnectProvider: (args: RemoveClientIDFromOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<RemoveClientIDFromOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
487
487
|
/**
|
|
488
488
|
* @see {@link RemoveRoleFromInstanceProfileCommand}
|
|
489
489
|
*/
|
|
490
|
-
readonly removeRoleFromInstanceProfile: (args: RemoveRoleFromInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
490
|
+
readonly removeRoleFromInstanceProfile: (args: RemoveRoleFromInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<RemoveRoleFromInstanceProfileCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
491
491
|
/**
|
|
492
492
|
* @see {@link RemoveUserFromGroupCommand}
|
|
493
493
|
*/
|
|
494
|
-
readonly removeUserFromGroup: (args: RemoveUserFromGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
494
|
+
readonly removeUserFromGroup: (args: RemoveUserFromGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<RemoveUserFromGroupCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
495
495
|
/**
|
|
496
496
|
* @see {@link ResetServiceSpecificCredentialCommand}
|
|
497
497
|
*/
|
|
498
|
-
readonly resetServiceSpecificCredential: (args: ResetServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
498
|
+
readonly resetServiceSpecificCredential: (args: ResetServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ResetServiceSpecificCredentialCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
499
499
|
/**
|
|
500
500
|
* @see {@link ResyncMFADeviceCommand}
|
|
501
501
|
*/
|
|
502
|
-
readonly resyncMFADevice: (args: ResyncMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
502
|
+
readonly resyncMFADevice: (args: ResyncMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<ResyncMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidAuthenticationCodeError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
503
503
|
/**
|
|
504
504
|
* @see {@link SetDefaultPolicyVersionCommand}
|
|
505
505
|
*/
|
|
506
|
-
readonly setDefaultPolicyVersion: (args: SetDefaultPolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
506
|
+
readonly setDefaultPolicyVersion: (args: SetDefaultPolicyVersionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<SetDefaultPolicyVersionCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
507
507
|
/**
|
|
508
508
|
* @see {@link SetSecurityTokenServicePreferencesCommand}
|
|
509
509
|
*/
|
|
510
|
-
readonly setSecurityTokenServicePreferences: (args: SetSecurityTokenServicePreferencesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
510
|
+
readonly setSecurityTokenServicePreferences: (args: SetSecurityTokenServicePreferencesCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<SetSecurityTokenServicePreferencesCommandOutput, SdkError | IAMServiceError | ServiceFailureError>;
|
|
511
511
|
/**
|
|
512
512
|
* @see {@link SimulateCustomPolicyCommand}
|
|
513
513
|
*/
|
|
514
|
-
readonly simulateCustomPolicy: (args: SimulateCustomPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
514
|
+
readonly simulateCustomPolicy: (args: SimulateCustomPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<SimulateCustomPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | PolicyEvaluationError>;
|
|
515
515
|
/**
|
|
516
516
|
* @see {@link SimulatePrincipalPolicyCommand}
|
|
517
517
|
*/
|
|
518
|
-
readonly simulatePrincipalPolicy: (args: SimulatePrincipalPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
518
|
+
readonly simulatePrincipalPolicy: (args: SimulatePrincipalPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<SimulatePrincipalPolicyCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError>;
|
|
519
519
|
/**
|
|
520
520
|
* @see {@link TagInstanceProfileCommand}
|
|
521
521
|
*/
|
|
522
|
-
readonly tagInstanceProfile: (args: TagInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
522
|
+
readonly tagInstanceProfile: (args: TagInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagInstanceProfileCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
523
523
|
/**
|
|
524
524
|
* @see {@link TagMFADeviceCommand}
|
|
525
525
|
*/
|
|
526
|
-
readonly tagMFADevice: (args: TagMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
526
|
+
readonly tagMFADevice: (args: TagMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
527
527
|
/**
|
|
528
528
|
* @see {@link TagOpenIDConnectProviderCommand}
|
|
529
529
|
*/
|
|
530
|
-
readonly tagOpenIDConnectProvider: (args: TagOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
530
|
+
readonly tagOpenIDConnectProvider: (args: TagOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
531
531
|
/**
|
|
532
532
|
* @see {@link TagPolicyCommand}
|
|
533
533
|
*/
|
|
534
|
-
readonly tagPolicy: (args: TagPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
534
|
+
readonly tagPolicy: (args: TagPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagPolicyCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
535
535
|
/**
|
|
536
536
|
* @see {@link TagRoleCommand}
|
|
537
537
|
*/
|
|
538
|
-
readonly tagRole: (args: TagRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
538
|
+
readonly tagRole: (args: TagRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagRoleCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
539
539
|
/**
|
|
540
540
|
* @see {@link TagSAMLProviderCommand}
|
|
541
541
|
*/
|
|
542
|
-
readonly tagSAMLProvider: (args: TagSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
542
|
+
readonly tagSAMLProvider: (args: TagSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagSAMLProviderCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
543
543
|
/**
|
|
544
544
|
* @see {@link TagServerCertificateCommand}
|
|
545
545
|
*/
|
|
546
|
-
readonly tagServerCertificate: (args: TagServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
546
|
+
readonly tagServerCertificate: (args: TagServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagServerCertificateCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
547
547
|
/**
|
|
548
548
|
* @see {@link TagUserCommand}
|
|
549
549
|
*/
|
|
550
|
-
readonly tagUser: (args: TagUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
550
|
+
readonly tagUser: (args: TagUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<TagUserCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
551
551
|
/**
|
|
552
552
|
* @see {@link UntagInstanceProfileCommand}
|
|
553
553
|
*/
|
|
554
|
-
readonly untagInstanceProfile: (args: UntagInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
554
|
+
readonly untagInstanceProfile: (args: UntagInstanceProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagInstanceProfileCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
555
555
|
/**
|
|
556
556
|
* @see {@link UntagMFADeviceCommand}
|
|
557
557
|
*/
|
|
558
|
-
readonly untagMFADevice: (args: UntagMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
558
|
+
readonly untagMFADevice: (args: UntagMFADeviceCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagMFADeviceCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
559
559
|
/**
|
|
560
560
|
* @see {@link UntagOpenIDConnectProviderCommand}
|
|
561
561
|
*/
|
|
562
|
-
readonly untagOpenIDConnectProvider: (args: UntagOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
562
|
+
readonly untagOpenIDConnectProvider: (args: UntagOpenIDConnectProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagOpenIDConnectProviderCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
563
563
|
/**
|
|
564
564
|
* @see {@link UntagPolicyCommand}
|
|
565
565
|
*/
|
|
566
|
-
readonly untagPolicy: (args: UntagPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
566
|
+
readonly untagPolicy: (args: UntagPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagPolicyCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
567
567
|
/**
|
|
568
568
|
* @see {@link UntagRoleCommand}
|
|
569
569
|
*/
|
|
570
|
-
readonly untagRole: (args: UntagRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
570
|
+
readonly untagRole: (args: UntagRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagRoleCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError>;
|
|
571
571
|
/**
|
|
572
572
|
* @see {@link UntagSAMLProviderCommand}
|
|
573
573
|
*/
|
|
574
|
-
readonly untagSAMLProvider: (args: UntagSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
574
|
+
readonly untagSAMLProvider: (args: UntagSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagSAMLProviderCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
575
575
|
/**
|
|
576
576
|
* @see {@link UntagServerCertificateCommand}
|
|
577
577
|
*/
|
|
578
|
-
readonly untagServerCertificate: (args: UntagServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
578
|
+
readonly untagServerCertificate: (args: UntagServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagServerCertificateCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
579
579
|
/**
|
|
580
580
|
* @see {@link UntagUserCommand}
|
|
581
581
|
*/
|
|
582
|
-
readonly untagUser: (args: UntagUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
582
|
+
readonly untagUser: (args: UntagUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UntagUserCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError>;
|
|
583
583
|
/**
|
|
584
584
|
* @see {@link UpdateAccessKeyCommand}
|
|
585
585
|
*/
|
|
586
|
-
readonly updateAccessKey: (args: UpdateAccessKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
586
|
+
readonly updateAccessKey: (args: UpdateAccessKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateAccessKeyCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
587
587
|
/**
|
|
588
588
|
* @see {@link UpdateAccountPasswordPolicyCommand}
|
|
589
589
|
*/
|
|
590
|
-
readonly updateAccountPasswordPolicy: (args: UpdateAccountPasswordPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
590
|
+
readonly updateAccountPasswordPolicy: (args: UpdateAccountPasswordPolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateAccountPasswordPolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError>;
|
|
591
591
|
/**
|
|
592
592
|
* @see {@link UpdateAssumeRolePolicyCommand}
|
|
593
593
|
*/
|
|
594
|
-
readonly updateAssumeRolePolicy: (args: UpdateAssumeRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
594
|
+
readonly updateAssumeRolePolicy: (args: UpdateAssumeRolePolicyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateAssumeRolePolicyCommandOutput, SdkError | IAMServiceError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
595
595
|
/**
|
|
596
596
|
* @see {@link UpdateGroupCommand}
|
|
597
597
|
*/
|
|
598
|
-
readonly updateGroup: (args: UpdateGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
598
|
+
readonly updateGroup: (args: UpdateGroupCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateGroupCommandOutput, SdkError | IAMServiceError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
599
599
|
/**
|
|
600
600
|
* @see {@link UpdateLoginProfileCommand}
|
|
601
601
|
*/
|
|
602
|
-
readonly updateLoginProfile: (args: UpdateLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
602
|
+
readonly updateLoginProfile: (args: UpdateLoginProfileCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateLoginProfileCommandOutput, SdkError | IAMServiceError | EntityTemporarilyUnmodifiableError | LimitExceededError | NoSuchEntityError | PasswordPolicyViolationError | ServiceFailureError>;
|
|
603
603
|
/**
|
|
604
604
|
* @see {@link UpdateOpenIDConnectProviderThumbprintCommand}
|
|
605
605
|
*/
|
|
606
|
-
readonly updateOpenIDConnectProviderThumbprint: (args: UpdateOpenIDConnectProviderThumbprintCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
606
|
+
readonly updateOpenIDConnectProviderThumbprint: (args: UpdateOpenIDConnectProviderThumbprintCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateOpenIDConnectProviderThumbprintCommandOutput, SdkError | IAMServiceError | InvalidInputError | NoSuchEntityError | ServiceFailureError>;
|
|
607
607
|
/**
|
|
608
608
|
* @see {@link UpdateRoleCommand}
|
|
609
609
|
*/
|
|
610
|
-
readonly updateRole: (args: UpdateRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
610
|
+
readonly updateRole: (args: UpdateRoleCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateRoleCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
611
611
|
/**
|
|
612
612
|
* @see {@link UpdateRoleDescriptionCommand}
|
|
613
613
|
*/
|
|
614
|
-
readonly updateRoleDescription: (args: UpdateRoleDescriptionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
614
|
+
readonly updateRoleDescription: (args: UpdateRoleDescriptionCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateRoleDescriptionCommandOutput, SdkError | IAMServiceError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError>;
|
|
615
615
|
/**
|
|
616
616
|
* @see {@link UpdateSAMLProviderCommand}
|
|
617
617
|
*/
|
|
618
|
-
readonly updateSAMLProvider: (args: UpdateSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
618
|
+
readonly updateSAMLProvider: (args: UpdateSAMLProviderCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateSAMLProviderCommandOutput, SdkError | IAMServiceError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
619
619
|
/**
|
|
620
620
|
* @see {@link UpdateServerCertificateCommand}
|
|
621
621
|
*/
|
|
622
|
-
readonly updateServerCertificate: (args: UpdateServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
622
|
+
readonly updateServerCertificate: (args: UpdateServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateServerCertificateCommandOutput, SdkError | IAMServiceError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
623
623
|
/**
|
|
624
624
|
* @see {@link UpdateServiceSpecificCredentialCommand}
|
|
625
625
|
*/
|
|
626
|
-
readonly updateServiceSpecificCredential: (args: UpdateServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
626
|
+
readonly updateServiceSpecificCredential: (args: UpdateServiceSpecificCredentialCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateServiceSpecificCredentialCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
627
627
|
/**
|
|
628
628
|
* @see {@link UpdateSigningCertificateCommand}
|
|
629
629
|
*/
|
|
630
|
-
readonly updateSigningCertificate: (args: UpdateSigningCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
630
|
+
readonly updateSigningCertificate: (args: UpdateSigningCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateSigningCertificateCommandOutput, SdkError | IAMServiceError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
631
631
|
/**
|
|
632
632
|
* @see {@link UpdateSSHPublicKeyCommand}
|
|
633
633
|
*/
|
|
634
|
-
readonly updateSSHPublicKey: (args: UpdateSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
634
|
+
readonly updateSSHPublicKey: (args: UpdateSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateSSHPublicKeyCommandOutput, SdkError | IAMServiceError | NoSuchEntityError>;
|
|
635
635
|
/**
|
|
636
636
|
* @see {@link UpdateUserCommand}
|
|
637
637
|
*/
|
|
638
|
-
readonly updateUser: (args: UpdateUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
638
|
+
readonly updateUser: (args: UpdateUserCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UpdateUserCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | EntityTemporarilyUnmodifiableError | LimitExceededError | NoSuchEntityError | ServiceFailureError>;
|
|
639
639
|
/**
|
|
640
640
|
* @see {@link UploadServerCertificateCommand}
|
|
641
641
|
*/
|
|
642
|
-
readonly uploadServerCertificate: (args: UploadServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
642
|
+
readonly uploadServerCertificate: (args: UploadServerCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UploadServerCertificateCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | EntityAlreadyExistsError | InvalidInputError | KeyPairMismatchError | LimitExceededError | MalformedCertificateError | ServiceFailureError>;
|
|
643
643
|
/**
|
|
644
644
|
* @see {@link UploadSigningCertificateCommand}
|
|
645
645
|
*/
|
|
646
|
-
readonly uploadSigningCertificate: (args: UploadSigningCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
646
|
+
readonly uploadSigningCertificate: (args: UploadSigningCertificateCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UploadSigningCertificateCommandOutput, SdkError | IAMServiceError | ConcurrentModificationError | DuplicateCertificateError | EntityAlreadyExistsError | InvalidCertificateError | LimitExceededError | MalformedCertificateError | NoSuchEntityError | ServiceFailureError>;
|
|
647
647
|
/**
|
|
648
648
|
* @see {@link UploadSSHPublicKeyCommand}
|
|
649
649
|
*/
|
|
650
|
-
readonly uploadSSHPublicKey: (args: UploadSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<
|
|
650
|
+
readonly uploadSSHPublicKey: (args: UploadSSHPublicKeyCommandInput, options?: __HttpHandlerOptions) => Effect.Effect<UploadSSHPublicKeyCommandOutput, SdkError | IAMServiceError | DuplicateSSHPublicKeyError | InvalidPublicKeyError | LimitExceededError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError>;
|
|
651
651
|
};
|
|
652
652
|
/**
|
|
653
653
|
* @since 1.0.0
|
|
@@ -658,19 +658,19 @@ export declare const IAMService: Context.Tag<IAMService, IAMService>;
|
|
|
658
658
|
* @since 1.0.0
|
|
659
659
|
* @category constructors
|
|
660
660
|
*/
|
|
661
|
-
export declare const makeIAMService: Effect.Effect<
|
|
661
|
+
export declare const makeIAMService: Effect.Effect<IAMService, never, IAMClientInstance>;
|
|
662
662
|
/**
|
|
663
663
|
* @since 1.0.0
|
|
664
664
|
* @category layers
|
|
665
665
|
*/
|
|
666
|
-
export declare const BaseIAMServiceLayer: Layer.Layer<
|
|
666
|
+
export declare const BaseIAMServiceLayer: Layer.Layer<IAMService, never, IAMClientInstance>;
|
|
667
667
|
/**
|
|
668
668
|
* @since 1.0.0
|
|
669
669
|
* @category layers
|
|
670
670
|
*/
|
|
671
|
-
export declare const IAMServiceLayer: Layer.Layer<import("./IAMClientInstanceConfig").IAMClientInstanceConfig
|
|
671
|
+
export declare const IAMServiceLayer: Layer.Layer<IAMService, never, import("./IAMClientInstanceConfig").IAMClientInstanceConfig>;
|
|
672
672
|
/**
|
|
673
673
|
* @since 1.0.0
|
|
674
674
|
* @category layers
|
|
675
675
|
*/
|
|
676
|
-
export declare const DefaultIAMServiceLayer: Layer.Layer<
|
|
676
|
+
export declare const DefaultIAMServiceLayer: Layer.Layer<IAMService, never, never>;
|