@aws-sdk/client-organizations 3.278.0 → 3.281.0
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/README.md +443 -0
- package/dist-types/commands/AcceptHandshakeCommand.d.ts +6 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +6 -0
- package/dist-types/commands/CancelHandshakeCommand.d.ts +6 -0
- package/dist-types/commands/CloseAccountCommand.d.ts +6 -0
- package/dist-types/commands/CreateAccountCommand.d.ts +6 -0
- package/dist-types/commands/CreateGovCloudAccountCommand.d.ts +6 -0
- package/dist-types/commands/CreateOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/CreateOrganizationalUnitCommand.d.ts +6 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeclineHandshakeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteOrganizationalUnitCommand.d.ts +6 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterDelegatedAdministratorCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAccountCommand.d.ts +6 -0
- package/dist-types/commands/DescribeCreateAccountStatusCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEffectivePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DescribeHandshakeCommand.d.ts +6 -0
- package/dist-types/commands/DescribeOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/DescribeOrganizationalUnitCommand.d.ts +6 -0
- package/dist-types/commands/DescribePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DisableAWSServiceAccessCommand.d.ts +6 -0
- package/dist-types/commands/DisablePolicyTypeCommand.d.ts +6 -0
- package/dist-types/commands/EnableAWSServiceAccessCommand.d.ts +6 -0
- package/dist-types/commands/EnableAllFeaturesCommand.d.ts +6 -0
- package/dist-types/commands/EnablePolicyTypeCommand.d.ts +6 -0
- package/dist-types/commands/InviteAccountToOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/LeaveOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/ListAWSServiceAccessForOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/ListAccountsCommand.d.ts +6 -0
- package/dist-types/commands/ListAccountsForParentCommand.d.ts +6 -0
- package/dist-types/commands/ListChildrenCommand.d.ts +6 -0
- package/dist-types/commands/ListCreateAccountStatusCommand.d.ts +6 -0
- package/dist-types/commands/ListDelegatedAdministratorsCommand.d.ts +6 -0
- package/dist-types/commands/ListDelegatedServicesForAccountCommand.d.ts +6 -0
- package/dist-types/commands/ListHandshakesForAccountCommand.d.ts +6 -0
- package/dist-types/commands/ListHandshakesForOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/ListOrganizationalUnitsForParentCommand.d.ts +6 -0
- package/dist-types/commands/ListParentsCommand.d.ts +6 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +6 -0
- package/dist-types/commands/ListPoliciesForTargetCommand.d.ts +6 -0
- package/dist-types/commands/ListRootsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListTargetsForPolicyCommand.d.ts +6 -0
- package/dist-types/commands/MoveAccountCommand.d.ts +6 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/RegisterDelegatedAdministratorCommand.d.ts +6 -0
- package/dist-types/commands/RemoveAccountFromOrganizationCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateOrganizationalUnitCommand.d.ts +6 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +6 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteOrganizationalUnitRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteOrganizationalUnitCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteOrganizationalUnitCommandInput extends DeleteOrganizationalUnitRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteOrganizationalUnitCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteOrganizationalUnitCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeletePolicyRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeletePolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeletePolicyCommandInput extends DeletePolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeletePolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -2,8 +2,14 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
5
|
+
/**
|
|
6
|
+
* The input for {@link DeleteResourcePolicyCommand}.
|
|
7
|
+
*/
|
|
5
8
|
export interface DeleteResourcePolicyCommandInput {
|
|
6
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* The output of {@link DeleteResourcePolicyCommand}.
|
|
12
|
+
*/
|
|
7
13
|
export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {
|
|
8
14
|
}
|
|
9
15
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeregisterDelegatedAdministratorRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeregisterDelegatedAdministratorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeregisterDelegatedAdministratorCommandInput extends DeregisterDelegatedAdministratorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeregisterDelegatedAdministratorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeregisterDelegatedAdministratorCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeAccountRequest, DescribeAccountResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeAccountCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeAccountCommandInput extends DescribeAccountRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeAccountCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeAccountCommandOutput extends DescribeAccountResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeCreateAccountStatusRequest, DescribeCreateAccountStatusResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeCreateAccountStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeCreateAccountStatusCommandInput extends DescribeCreateAccountStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeCreateAccountStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeCreateAccountStatusCommandOutput extends DescribeCreateAccountStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeEffectivePolicyRequest, DescribeEffectivePolicyResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeEffectivePolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeEffectivePolicyCommandInput extends DescribeEffectivePolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeEffectivePolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeEffectivePolicyCommandOutput extends DescribeEffectivePolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeHandshakeRequest, DescribeHandshakeResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeHandshakeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeHandshakeCommandInput extends DescribeHandshakeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeHandshakeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeHandshakeCommandOutput extends DescribeHandshakeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeOrganizationResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeOrganizationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeOrganizationCommandInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeOrganizationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeOrganizationCommandOutput extends DescribeOrganizationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeOrganizationalUnitRequest, DescribeOrganizationalUnitResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeOrganizationalUnitCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeOrganizationalUnitCommandInput extends DescribeOrganizationalUnitRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeOrganizationalUnitCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeOrganizationalUnitCommandOutput extends DescribeOrganizationalUnitResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribePolicyRequest, DescribePolicyResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribePolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribePolicyCommandInput extends DescribePolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribePolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribePolicyCommandOutput extends DescribePolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DescribeResourcePolicyResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeResourcePolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeResourcePolicyCommandInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeResourcePolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DetachPolicyRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DetachPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DetachPolicyCommandInput extends DetachPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DetachPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DetachPolicyCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisableAWSServiceAccessRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisableAWSServiceAccessCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisableAWSServiceAccessCommandInput extends DisableAWSServiceAccessRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisableAWSServiceAccessCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisableAWSServiceAccessCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DisablePolicyTypeRequest, DisablePolicyTypeResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisablePolicyTypeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisablePolicyTypeCommandInput extends DisablePolicyTypeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisablePolicyTypeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisablePolicyTypeCommandOutput extends DisablePolicyTypeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { EnableAWSServiceAccessRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link EnableAWSServiceAccessCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface EnableAWSServiceAccessCommandInput extends EnableAWSServiceAccessRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link EnableAWSServiceAccessCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface EnableAWSServiceAccessCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { EnableAllFeaturesRequest, EnableAllFeaturesResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link EnableAllFeaturesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface EnableAllFeaturesCommandInput extends EnableAllFeaturesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link EnableAllFeaturesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface EnableAllFeaturesCommandOutput extends EnableAllFeaturesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { EnablePolicyTypeRequest, EnablePolicyTypeResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link EnablePolicyTypeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface EnablePolicyTypeCommandInput extends EnablePolicyTypeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link EnablePolicyTypeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface EnablePolicyTypeCommandOutput extends EnablePolicyTypeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { InviteAccountToOrganizationRequest, InviteAccountToOrganizationResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link InviteAccountToOrganizationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface InviteAccountToOrganizationCommandInput extends InviteAccountToOrganizationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link InviteAccountToOrganizationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface InviteAccountToOrganizationCommandOutput extends InviteAccountToOrganizationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -2,8 +2,14 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
5
|
+
/**
|
|
6
|
+
* The input for {@link LeaveOrganizationCommand}.
|
|
7
|
+
*/
|
|
5
8
|
export interface LeaveOrganizationCommandInput {
|
|
6
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* The output of {@link LeaveOrganizationCommand}.
|
|
12
|
+
*/
|
|
7
13
|
export interface LeaveOrganizationCommandOutput extends __MetadataBearer {
|
|
8
14
|
}
|
|
9
15
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListAWSServiceAccessForOrganizationRequest, ListAWSServiceAccessForOrganizationResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListAWSServiceAccessForOrganizationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListAWSServiceAccessForOrganizationCommandInput extends ListAWSServiceAccessForOrganizationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListAWSServiceAccessForOrganizationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListAWSServiceAccessForOrganizationCommandOutput extends ListAWSServiceAccessForOrganizationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListAccountsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListAccountsCommandInput extends ListAccountsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListAccountsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListAccountsCommandOutput extends ListAccountsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListAccountsForParentRequest, ListAccountsForParentResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListAccountsForParentCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListAccountsForParentCommandInput extends ListAccountsForParentRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListAccountsForParentCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListAccountsForParentCommandOutput extends ListAccountsForParentResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListChildrenRequest, ListChildrenResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListChildrenCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListChildrenCommandInput extends ListChildrenRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListChildrenCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListChildrenCommandOutput extends ListChildrenResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListCreateAccountStatusRequest, ListCreateAccountStatusResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListCreateAccountStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListCreateAccountStatusCommandInput extends ListCreateAccountStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListCreateAccountStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListCreateAccountStatusCommandOutput extends ListCreateAccountStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListDelegatedAdministratorsRequest, ListDelegatedAdministratorsResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDelegatedAdministratorsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDelegatedAdministratorsCommandInput extends ListDelegatedAdministratorsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDelegatedAdministratorsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDelegatedAdministratorsCommandOutput extends ListDelegatedAdministratorsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListDelegatedServicesForAccountRequest, ListDelegatedServicesForAccountResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDelegatedServicesForAccountCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDelegatedServicesForAccountCommandInput extends ListDelegatedServicesForAccountRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDelegatedServicesForAccountCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDelegatedServicesForAccountCommandOutput extends ListDelegatedServicesForAccountResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListHandshakesForAccountRequest, ListHandshakesForAccountResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListHandshakesForAccountCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListHandshakesForAccountCommandInput extends ListHandshakesForAccountRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListHandshakesForAccountCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListHandshakesForAccountCommandOutput extends ListHandshakesForAccountResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListHandshakesForOrganizationRequest, ListHandshakesForOrganizationResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListHandshakesForOrganizationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListHandshakesForOrganizationCommandInput extends ListHandshakesForOrganizationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListHandshakesForOrganizationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListHandshakesForOrganizationCommandOutput extends ListHandshakesForOrganizationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListOrganizationalUnitsForParentRequest, ListOrganizationalUnitsForParentResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListOrganizationalUnitsForParentCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListOrganizationalUnitsForParentCommandInput extends ListOrganizationalUnitsForParentRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListOrganizationalUnitsForParentCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListOrganizationalUnitsForParentCommandOutput extends ListOrganizationalUnitsForParentResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListParentsRequest, ListParentsResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListParentsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListParentsCommandInput extends ListParentsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListParentsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListParentsCommandOutput extends ListParentsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListPoliciesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListPoliciesCommandInput extends ListPoliciesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListPoliciesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListPoliciesForTargetRequest, ListPoliciesForTargetResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListPoliciesForTargetCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListPoliciesForTargetCommandInput extends ListPoliciesForTargetRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListPoliciesForTargetCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListPoliciesForTargetCommandOutput extends ListPoliciesForTargetResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListRootsRequest, ListRootsResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListRootsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListRootsCommandInput extends ListRootsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListRootsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListRootsCommandOutput extends ListRootsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListTargetsForPolicyRequest, ListTargetsForPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTargetsForPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTargetsForPolicyCommandInput extends ListTargetsForPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTargetsForPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTargetsForPolicyCommandOutput extends ListTargetsForPolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { MoveAccountRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link MoveAccountCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface MoveAccountCommandInput extends MoveAccountRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link MoveAccountCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface MoveAccountCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutResourcePolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutResourcePolicyCommandInput extends PutResourcePolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutResourcePolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { RegisterDelegatedAdministratorRequest } from "../models/models_0";
|
|
5
5
|
import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RegisterDelegatedAdministratorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RegisterDelegatedAdministratorCommandInput extends RegisterDelegatedAdministratorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RegisterDelegatedAdministratorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RegisterDelegatedAdministratorCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|