@aws-sdk/client-fms 3.295.0 → 3.297.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/dist-types/FMS.d.ts +39 -0
- package/dist-types/FMSClient.d.ts +24 -4
- package/dist-types/commands/AssociateAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/AssociateThirdPartyFirewallCommand.d.ts +16 -0
- package/dist-types/commands/BatchAssociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/BatchDisassociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppsListCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProtocolsListCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateThirdPartyFirewallCommand.d.ts +16 -0
- package/dist-types/commands/GetAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetAppsListCommand.d.ts +16 -0
- package/dist-types/commands/GetComplianceDetailCommand.d.ts +16 -0
- package/dist-types/commands/GetNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetProtectionStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetProtocolsListCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/GetThirdPartyFirewallAssociationStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetViolationDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListAppsListsCommand.d.ts +16 -0
- package/dist-types/commands/ListComplianceStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +16 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListProtocolsListsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceSetResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListThirdPartyFirewallFirewallPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/PutAppsListCommand.d.ts +16 -0
- package/dist-types/commands/PutNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutProtocolsListCommand.d.ts +16 -0
- package/dist-types/commands/PutResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/FMSServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +378 -50
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAppsListsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComplianceStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMemberAccountsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProtocolsListsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { PutAppsListRequest, PutAppsListResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutAppsListCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutAppsListCommandInput extends PutAppsListRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutAppsListCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutAppsListCommandOutput extends PutAppsListResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Firewall Manager applications list.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutAppsListCommandOutput extends PutAppsListResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutAppsListCommandInput - {@link PutAppsListCommandInput}
|
|
34
|
+
* @returns {@link PutAppsListCommandOutput}
|
|
28
35
|
* @see {@link PutAppsListCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutAppsListCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface PutAppsListCommandOutput extends PutAppsListResponse, __Metadat
|
|
|
57
64
|
export declare class PutAppsListCommand extends $Command<PutAppsListCommandInput, PutAppsListCommandOutput, FMSClientResolvedConfig> {
|
|
58
65
|
readonly input: PutAppsListCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: PutAppsListCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAppsListCommandInput, PutAppsListCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { PutNotificationChannelRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutNotificationChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutNotificationChannelCommandInput extends PutNotificationChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutNotificationChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutNotificationChannelCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Designates the IAM role and Amazon Simple Notification Service (SNS) topic that
|
|
18
23
|
* Firewall Manager uses to record SNS logs.</p>
|
|
19
24
|
* <p>To perform this action outside of the console, you must configure the SNS topic to allow the Firewall Manager
|
|
@@ -29,6 +34,8 @@ export interface PutNotificationChannelCommandOutput extends __MetadataBearer {
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param PutNotificationChannelCommandInput - {@link PutNotificationChannelCommandInput}
|
|
38
|
+
* @returns {@link PutNotificationChannelCommandOutput}
|
|
32
39
|
* @see {@link PutNotificationChannelCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link PutNotificationChannelCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface PutNotificationChannelCommandOutput extends __MetadataBearer {
|
|
|
52
59
|
export declare class PutNotificationChannelCommand extends $Command<PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput, FMSClientResolvedConfig> {
|
|
53
60
|
readonly input: PutNotificationChannelCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: PutNotificationChannelCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { PutPolicyRequest, PutPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutPolicyCommandInput extends PutPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Firewall Manager policy.</p>
|
|
18
23
|
* <p>Firewall Manager provides the following types of policies: </p>
|
|
19
24
|
* <ul>
|
|
@@ -57,6 +62,8 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea
|
|
|
57
62
|
* const response = await client.send(command);
|
|
58
63
|
* ```
|
|
59
64
|
*
|
|
65
|
+
* @param PutPolicyCommandInput - {@link PutPolicyCommandInput}
|
|
66
|
+
* @returns {@link PutPolicyCommandOutput}
|
|
60
67
|
* @see {@link PutPolicyCommandInput} for command's `input` shape.
|
|
61
68
|
* @see {@link PutPolicyCommandOutput} for command's `response` shape.
|
|
62
69
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -92,11 +99,20 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea
|
|
|
92
99
|
export declare class PutPolicyCommand extends $Command<PutPolicyCommandInput, PutPolicyCommandOutput, FMSClientResolvedConfig> {
|
|
93
100
|
readonly input: PutPolicyCommandInput;
|
|
94
101
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
95
105
|
constructor(input: PutPolicyCommandInput);
|
|
96
106
|
/**
|
|
97
107
|
* @internal
|
|
98
108
|
*/
|
|
99
109
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
100
113
|
private serialize;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
101
117
|
private deserialize;
|
|
102
118
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { PutProtocolsListRequest, PutProtocolsListResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutProtocolsListCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutProtocolsListCommandInput extends PutProtocolsListRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutProtocolsListCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutProtocolsListCommandOutput extends PutProtocolsListResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Firewall Manager protocols list.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutProtocolsListCommandOutput extends PutProtocolsListResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutProtocolsListCommandInput - {@link PutProtocolsListCommandInput}
|
|
34
|
+
* @returns {@link PutProtocolsListCommandOutput}
|
|
28
35
|
* @see {@link PutProtocolsListCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutProtocolsListCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface PutProtocolsListCommandOutput extends PutProtocolsListResponse,
|
|
|
57
64
|
export declare class PutProtocolsListCommand extends $Command<PutProtocolsListCommandInput, PutProtocolsListCommandOutput, FMSClientResolvedConfig> {
|
|
58
65
|
readonly input: PutProtocolsListCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: PutProtocolsListCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutProtocolsListCommandInput, PutProtocolsListCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { PutResourceSetRequest, PutResourceSetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutResourceSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutResourceSetCommandInput extends PutResourceSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutResourceSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutResourceSetCommandOutput extends PutResourceSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates the resource set.</p>
|
|
18
23
|
* <p>An Firewall Manager resource set defines the resources to import into an Firewall Manager policy from another Amazon Web Services service.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface PutResourceSetCommandOutput extends PutResourceSetResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param PutResourceSetCommandInput - {@link PutResourceSetCommandInput}
|
|
35
|
+
* @returns {@link PutResourceSetCommandOutput}
|
|
29
36
|
* @see {@link PutResourceSetCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link PutResourceSetCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface PutResourceSetCommandOutput extends PutResourceSetResponse, __M
|
|
|
55
62
|
export declare class PutResourceSetCommand extends $Command<PutResourceSetCommandInput, PutResourceSetCommandOutput, FMSClientResolvedConfig> {
|
|
56
63
|
readonly input: PutResourceSetCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: PutResourceSetCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourceSetCommandInput, PutResourceSetCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds one or more tags to an Amazon Web Services resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
57
64
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, FMSClientResolvedConfig> {
|
|
58
65
|
readonly input: TagResourceCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: TagResourceCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes one or more tags from an Amazon Web Services resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
58
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, FMSClientResolvedConfig> {
|
|
52
59
|
readonly input: UntagResourceCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: UntagResourceCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from FMS service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class FMSServiceException extends __ServiceException {
|