@aws-sdk/client-vpc-lattice 3.325.0 → 3.327.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/commands/BatchUpdateRuleCommand.d.ts +57 -0
- package/dist-types/commands/CreateAccessLogSubscriptionCommand.d.ts +10 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +25 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +45 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceNetworkCommand.d.ts +9 -0
- package/dist-types/commands/CreateServiceNetworkServiceAssociationCommand.d.ts +14 -0
- package/dist-types/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +12 -0
- package/dist-types/commands/CreateTargetGroupCommand.d.ts +31 -0
- package/dist-types/commands/DeleteAccessLogSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAuthPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +9 -0
- package/dist-types/commands/DeleteServiceNetworkCommand.d.ts +4 -0
- package/dist-types/commands/DeleteServiceNetworkServiceAssociationCommand.d.ts +8 -0
- package/dist-types/commands/DeleteServiceNetworkVpcAssociationCommand.d.ts +8 -0
- package/dist-types/commands/DeleteTargetGroupCommand.d.ts +8 -0
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +19 -0
- package/dist-types/commands/GetAccessLogSubscriptionCommand.d.ts +12 -0
- package/dist-types/commands/GetAuthPolicyCommand.d.ts +9 -0
- package/dist-types/commands/GetListenerCommand.d.ts +27 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetRuleCommand.d.ts +48 -0
- package/dist-types/commands/GetServiceCommand.d.ts +20 -0
- package/dist-types/commands/GetServiceNetworkCommand.d.ts +13 -0
- package/dist-types/commands/GetServiceNetworkServiceAssociationCommand.d.ts +23 -0
- package/dist-types/commands/GetServiceNetworkVpcAssociationCommand.d.ts +20 -0
- package/dist-types/commands/GetTargetGroupCommand.d.ts +38 -0
- package/dist-types/commands/ListAccessLogSubscriptionsCommand.d.ts +17 -0
- package/dist-types/commands/ListListenersCommand.d.ts +17 -0
- package/dist-types/commands/ListRulesCommand.d.ts +17 -0
- package/dist-types/commands/ListServiceNetworkServiceAssociationsCommand.d.ts +26 -0
- package/dist-types/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +20 -0
- package/dist-types/commands/ListServiceNetworksCommand.d.ts +17 -0
- package/dist-types/commands/ListServicesCommand.d.ts +21 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListTargetGroupsCommand.d.ts +24 -0
- package/dist-types/commands/ListTargetsCommand.d.ts +14 -0
- package/dist-types/commands/PutAuthPolicyCommand.d.ts +7 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/RegisterTargetsCommand.d.ts +19 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAccessLogSubscriptionCommand.d.ts +10 -0
- package/dist-types/commands/UpdateListenerCommand.d.ts +25 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +46 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +11 -0
- package/dist-types/commands/UpdateServiceNetworkCommand.d.ts +9 -0
- package/dist-types/commands/UpdateServiceNetworkVpcAssociationCommand.d.ts +12 -0
- package/dist-types/commands/UpdateTargetGroupCommand.d.ts +31 -0
- package/package.json +7 -7
|
@@ -75,6 +75,61 @@ export interface BatchUpdateRuleCommandOutput extends BatchUpdateRuleResponse, _
|
|
|
75
75
|
* };
|
|
76
76
|
* const command = new BatchUpdateRuleCommand(input);
|
|
77
77
|
* const response = await client.send(command);
|
|
78
|
+
* // { // BatchUpdateRuleResponse
|
|
79
|
+
* // successful: [ // RuleUpdateSuccessList
|
|
80
|
+
* // { // RuleUpdateSuccess
|
|
81
|
+
* // arn: "STRING_VALUE",
|
|
82
|
+
* // id: "STRING_VALUE",
|
|
83
|
+
* // name: "STRING_VALUE",
|
|
84
|
+
* // isDefault: true || false,
|
|
85
|
+
* // match: { // RuleMatch Union: only one key present
|
|
86
|
+
* // httpMatch: { // HttpMatch
|
|
87
|
+
* // method: "STRING_VALUE",
|
|
88
|
+
* // pathMatch: { // PathMatch
|
|
89
|
+
* // match: { // PathMatchType Union: only one key present
|
|
90
|
+
* // exact: "STRING_VALUE",
|
|
91
|
+
* // prefix: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // caseSensitive: true || false,
|
|
94
|
+
* // },
|
|
95
|
+
* // headerMatches: [ // HeaderMatchList
|
|
96
|
+
* // { // HeaderMatch
|
|
97
|
+
* // name: "STRING_VALUE", // required
|
|
98
|
+
* // match: { // HeaderMatchType Union: only one key present
|
|
99
|
+
* // exact: "STRING_VALUE",
|
|
100
|
+
* // prefix: "STRING_VALUE",
|
|
101
|
+
* // contains: "STRING_VALUE",
|
|
102
|
+
* // },
|
|
103
|
+
* // caseSensitive: true || false,
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // priority: Number("int"),
|
|
109
|
+
* // action: { // RuleAction Union: only one key present
|
|
110
|
+
* // forward: { // ForwardAction
|
|
111
|
+
* // targetGroups: [ // WeightedTargetGroupList // required
|
|
112
|
+
* // { // WeightedTargetGroup
|
|
113
|
+
* // targetGroupIdentifier: "STRING_VALUE", // required
|
|
114
|
+
* // weight: Number("int"),
|
|
115
|
+
* // },
|
|
116
|
+
* // ],
|
|
117
|
+
* // },
|
|
118
|
+
* // fixedResponse: { // FixedResponseAction
|
|
119
|
+
* // statusCode: Number("int"), // required
|
|
120
|
+
* // },
|
|
121
|
+
* // },
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
124
|
+
* // unsuccessful: [ // RuleUpdateFailureList
|
|
125
|
+
* // { // RuleUpdateFailure
|
|
126
|
+
* // ruleIdentifier: "STRING_VALUE",
|
|
127
|
+
* // failureCode: "STRING_VALUE",
|
|
128
|
+
* // failureMessage: "STRING_VALUE",
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // };
|
|
132
|
+
*
|
|
78
133
|
* ```
|
|
79
134
|
*
|
|
80
135
|
* @param BatchUpdateRuleCommandInput - {@link BatchUpdateRuleCommandInput}
|
|
@@ -103,6 +158,8 @@ export interface BatchUpdateRuleCommandOutput extends BatchUpdateRuleResponse, _
|
|
|
103
158
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
104
159
|
* service.</p>
|
|
105
160
|
*
|
|
161
|
+
* @throws {@link VPCLatticeServiceException}
|
|
162
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
106
163
|
*
|
|
107
164
|
*/
|
|
108
165
|
export declare class BatchUpdateRuleCommand extends $Command<BatchUpdateRuleCommandInput, BatchUpdateRuleCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -41,6 +41,14 @@ export interface CreateAccessLogSubscriptionCommandOutput extends CreateAccessLo
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new CreateAccessLogSubscriptionCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // CreateAccessLogSubscriptionResponse
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // arn: "STRING_VALUE", // required
|
|
47
|
+
* // resourceId: "STRING_VALUE", // required
|
|
48
|
+
* // resourceArn: "STRING_VALUE", // required
|
|
49
|
+
* // destinationArn: "STRING_VALUE", // required
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
44
52
|
* ```
|
|
45
53
|
*
|
|
46
54
|
* @param CreateAccessLogSubscriptionCommandInput - {@link CreateAccessLogSubscriptionCommandInput}
|
|
@@ -69,6 +77,8 @@ export interface CreateAccessLogSubscriptionCommandOutput extends CreateAccessLo
|
|
|
69
77
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
70
78
|
* service.</p>
|
|
71
79
|
*
|
|
80
|
+
* @throws {@link VPCLatticeServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
72
82
|
*
|
|
73
83
|
*/
|
|
74
84
|
export declare class CreateAccessLogSubscriptionCommand extends $Command<CreateAccessLogSubscriptionCommandInput, CreateAccessLogSubscriptionCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -54,6 +54,29 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new CreateListenerCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // { // CreateListenerResponse
|
|
58
|
+
* // arn: "STRING_VALUE",
|
|
59
|
+
* // id: "STRING_VALUE",
|
|
60
|
+
* // name: "STRING_VALUE",
|
|
61
|
+
* // protocol: "STRING_VALUE",
|
|
62
|
+
* // port: Number("int"),
|
|
63
|
+
* // serviceArn: "STRING_VALUE",
|
|
64
|
+
* // serviceId: "STRING_VALUE",
|
|
65
|
+
* // defaultAction: { // RuleAction Union: only one key present
|
|
66
|
+
* // forward: { // ForwardAction
|
|
67
|
+
* // targetGroups: [ // WeightedTargetGroupList // required
|
|
68
|
+
* // { // WeightedTargetGroup
|
|
69
|
+
* // targetGroupIdentifier: "STRING_VALUE", // required
|
|
70
|
+
* // weight: Number("int"),
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // },
|
|
74
|
+
* // fixedResponse: { // FixedResponseAction
|
|
75
|
+
* // statusCode: Number("int"), // required
|
|
76
|
+
* // },
|
|
77
|
+
* // },
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
57
80
|
* ```
|
|
58
81
|
*
|
|
59
82
|
* @param CreateListenerCommandInput - {@link CreateListenerCommandInput}
|
|
@@ -85,6 +108,8 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M
|
|
|
85
108
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
86
109
|
* service.</p>
|
|
87
110
|
*
|
|
111
|
+
* @throws {@link VPCLatticeServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
88
113
|
*
|
|
89
114
|
*/
|
|
90
115
|
export declare class CreateListenerCommand extends $Command<CreateListenerCommandInput, CreateListenerCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -77,6 +77,49 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB
|
|
|
77
77
|
* };
|
|
78
78
|
* const command = new CreateRuleCommand(input);
|
|
79
79
|
* const response = await client.send(command);
|
|
80
|
+
* // { // CreateRuleResponse
|
|
81
|
+
* // arn: "STRING_VALUE",
|
|
82
|
+
* // id: "STRING_VALUE",
|
|
83
|
+
* // name: "STRING_VALUE",
|
|
84
|
+
* // match: { // RuleMatch Union: only one key present
|
|
85
|
+
* // httpMatch: { // HttpMatch
|
|
86
|
+
* // method: "STRING_VALUE",
|
|
87
|
+
* // pathMatch: { // PathMatch
|
|
88
|
+
* // match: { // PathMatchType Union: only one key present
|
|
89
|
+
* // exact: "STRING_VALUE",
|
|
90
|
+
* // prefix: "STRING_VALUE",
|
|
91
|
+
* // },
|
|
92
|
+
* // caseSensitive: true || false,
|
|
93
|
+
* // },
|
|
94
|
+
* // headerMatches: [ // HeaderMatchList
|
|
95
|
+
* // { // HeaderMatch
|
|
96
|
+
* // name: "STRING_VALUE", // required
|
|
97
|
+
* // match: { // HeaderMatchType Union: only one key present
|
|
98
|
+
* // exact: "STRING_VALUE",
|
|
99
|
+
* // prefix: "STRING_VALUE",
|
|
100
|
+
* // contains: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // caseSensitive: true || false,
|
|
103
|
+
* // },
|
|
104
|
+
* // ],
|
|
105
|
+
* // },
|
|
106
|
+
* // },
|
|
107
|
+
* // priority: Number("int"),
|
|
108
|
+
* // action: { // RuleAction Union: only one key present
|
|
109
|
+
* // forward: { // ForwardAction
|
|
110
|
+
* // targetGroups: [ // WeightedTargetGroupList // required
|
|
111
|
+
* // { // WeightedTargetGroup
|
|
112
|
+
* // targetGroupIdentifier: "STRING_VALUE", // required
|
|
113
|
+
* // weight: Number("int"),
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
116
|
+
* // },
|
|
117
|
+
* // fixedResponse: { // FixedResponseAction
|
|
118
|
+
* // statusCode: Number("int"), // required
|
|
119
|
+
* // },
|
|
120
|
+
* // },
|
|
121
|
+
* // };
|
|
122
|
+
*
|
|
80
123
|
* ```
|
|
81
124
|
*
|
|
82
125
|
* @param CreateRuleCommandInput - {@link CreateRuleCommandInput}
|
|
@@ -108,6 +151,8 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB
|
|
|
108
151
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
109
152
|
* service.</p>
|
|
110
153
|
*
|
|
154
|
+
* @throws {@link VPCLatticeServiceException}
|
|
155
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
111
156
|
*
|
|
112
157
|
*/
|
|
113
158
|
export declare class CreateRuleCommand extends $Command<CreateRuleCommandInput, CreateRuleCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -41,6 +41,20 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new CreateServiceCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // CreateServiceResponse
|
|
45
|
+
* // id: "STRING_VALUE",
|
|
46
|
+
* // arn: "STRING_VALUE",
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // customDomainName: "STRING_VALUE",
|
|
49
|
+
* // certificateArn: "STRING_VALUE",
|
|
50
|
+
* // status: "STRING_VALUE",
|
|
51
|
+
* // authType: "STRING_VALUE",
|
|
52
|
+
* // dnsEntry: { // DnsEntry
|
|
53
|
+
* // domainName: "STRING_VALUE",
|
|
54
|
+
* // hostedZoneId: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
44
58
|
* ```
|
|
45
59
|
*
|
|
46
60
|
* @param CreateServiceCommandInput - {@link CreateServiceCommandInput}
|
|
@@ -72,6 +86,8 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
72
86
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
73
87
|
* service.</p>
|
|
74
88
|
*
|
|
89
|
+
* @throws {@link VPCLatticeServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
75
91
|
*
|
|
76
92
|
*/
|
|
77
93
|
export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -39,6 +39,13 @@ export interface CreateServiceNetworkCommandOutput extends CreateServiceNetworkR
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateServiceNetworkCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateServiceNetworkResponse
|
|
43
|
+
* // id: "STRING_VALUE",
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // arn: "STRING_VALUE",
|
|
46
|
+
* // authType: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
42
49
|
* ```
|
|
43
50
|
*
|
|
44
51
|
* @param CreateServiceNetworkCommandInput - {@link CreateServiceNetworkCommandInput}
|
|
@@ -70,6 +77,8 @@ export interface CreateServiceNetworkCommandOutput extends CreateServiceNetworkR
|
|
|
70
77
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
71
78
|
* service.</p>
|
|
72
79
|
*
|
|
80
|
+
* @throws {@link VPCLatticeServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
73
82
|
*
|
|
74
83
|
*/
|
|
75
84
|
export declare class CreateServiceNetworkCommand extends $Command<CreateServiceNetworkCommandInput, CreateServiceNetworkCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -43,6 +43,18 @@ export interface CreateServiceNetworkServiceAssociationCommandOutput extends Cre
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreateServiceNetworkServiceAssociationCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateServiceNetworkServiceAssociationResponse
|
|
47
|
+
* // id: "STRING_VALUE",
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // createdBy: "STRING_VALUE",
|
|
51
|
+
* // customDomainName: "STRING_VALUE",
|
|
52
|
+
* // dnsEntry: { // DnsEntry
|
|
53
|
+
* // domainName: "STRING_VALUE",
|
|
54
|
+
* // hostedZoneId: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
46
58
|
* ```
|
|
47
59
|
*
|
|
48
60
|
* @param CreateServiceNetworkServiceAssociationCommandInput - {@link CreateServiceNetworkServiceAssociationCommandInput}
|
|
@@ -71,6 +83,8 @@ export interface CreateServiceNetworkServiceAssociationCommandOutput extends Cre
|
|
|
71
83
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
72
84
|
* service.</p>
|
|
73
85
|
*
|
|
86
|
+
* @throws {@link VPCLatticeServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
74
88
|
*
|
|
75
89
|
*/
|
|
76
90
|
export declare class CreateServiceNetworkServiceAssociationCommand extends $Command<CreateServiceNetworkServiceAssociationCommandInput, CreateServiceNetworkServiceAssociationCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -49,6 +49,16 @@ export interface CreateServiceNetworkVpcAssociationCommandOutput extends CreateS
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new CreateServiceNetworkVpcAssociationCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // CreateServiceNetworkVpcAssociationResponse
|
|
53
|
+
* // id: "STRING_VALUE",
|
|
54
|
+
* // status: "STRING_VALUE",
|
|
55
|
+
* // arn: "STRING_VALUE",
|
|
56
|
+
* // createdBy: "STRING_VALUE",
|
|
57
|
+
* // securityGroupIds: [ // SecurityGroupList
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
52
62
|
* ```
|
|
53
63
|
*
|
|
54
64
|
* @param CreateServiceNetworkVpcAssociationCommandInput - {@link CreateServiceNetworkVpcAssociationCommandInput}
|
|
@@ -80,6 +90,8 @@ export interface CreateServiceNetworkVpcAssociationCommandOutput extends CreateS
|
|
|
80
90
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
81
91
|
* service.</p>
|
|
82
92
|
*
|
|
93
|
+
* @throws {@link VPCLatticeServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
83
95
|
*
|
|
84
96
|
*/
|
|
85
97
|
export declare class CreateServiceNetworkVpcAssociationCommand extends $Command<CreateServiceNetworkVpcAssociationCommandInput, CreateServiceNetworkVpcAssociationCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -60,6 +60,35 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupRespons
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new CreateTargetGroupCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // CreateTargetGroupResponse
|
|
64
|
+
* // id: "STRING_VALUE",
|
|
65
|
+
* // arn: "STRING_VALUE",
|
|
66
|
+
* // name: "STRING_VALUE",
|
|
67
|
+
* // type: "STRING_VALUE",
|
|
68
|
+
* // config: { // TargetGroupConfig
|
|
69
|
+
* // port: Number("int"), // required
|
|
70
|
+
* // protocol: "STRING_VALUE", // required
|
|
71
|
+
* // protocolVersion: "STRING_VALUE",
|
|
72
|
+
* // ipAddressType: "STRING_VALUE",
|
|
73
|
+
* // vpcIdentifier: "STRING_VALUE", // required
|
|
74
|
+
* // healthCheck: { // HealthCheckConfig
|
|
75
|
+
* // enabled: true || false,
|
|
76
|
+
* // protocol: "STRING_VALUE",
|
|
77
|
+
* // protocolVersion: "STRING_VALUE",
|
|
78
|
+
* // port: Number("int"),
|
|
79
|
+
* // path: "STRING_VALUE",
|
|
80
|
+
* // healthCheckIntervalSeconds: Number("int"),
|
|
81
|
+
* // healthCheckTimeoutSeconds: Number("int"),
|
|
82
|
+
* // healthyThresholdCount: Number("int"),
|
|
83
|
+
* // unhealthyThresholdCount: Number("int"),
|
|
84
|
+
* // matcher: { // Matcher Union: only one key present
|
|
85
|
+
* // httpCode: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // status: "STRING_VALUE",
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
63
92
|
* ```
|
|
64
93
|
*
|
|
65
94
|
* @param CreateTargetGroupCommandInput - {@link CreateTargetGroupCommandInput}
|
|
@@ -91,6 +120,8 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupRespons
|
|
|
91
120
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
92
121
|
* service.</p>
|
|
93
122
|
*
|
|
123
|
+
* @throws {@link VPCLatticeServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
94
125
|
*
|
|
95
126
|
*/
|
|
96
127
|
export declare class CreateTargetGroupCommand extends $Command<CreateTargetGroupCommandInput, CreateTargetGroupCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteAccessLogSubscriptionCommandOutput extends DeleteAccessLo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAccessLogSubscriptionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteAccessLogSubscriptionCommandInput - {@link DeleteAccessLogSubscriptionCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteAccessLogSubscriptionCommandOutput extends DeleteAccessLo
|
|
|
55
57
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
56
58
|
* service.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link VPCLatticeServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteAccessLogSubscriptionCommand extends $Command<DeleteAccessLogSubscriptionCommandInput, DeleteAccessLogSubscriptionCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteAuthPolicyCommandOutput extends DeleteAuthPolicyResponse,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteAuthPolicyCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteAuthPolicyCommandInput - {@link DeleteAuthPolicyCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeleteAuthPolicyCommandOutput extends DeleteAuthPolicyResponse,
|
|
|
58
60
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
59
61
|
* service.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link VPCLatticeServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeleteAuthPolicyCommand extends $Command<DeleteAuthPolicyCommandInput, DeleteAuthPolicyCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteListenerCommandOutput extends DeleteListenerResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteListenerCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteListenerCommandInput - {@link DeleteListenerCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteListenerCommandOutput extends DeleteListenerResponse, __M
|
|
|
60
62
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
61
63
|
* service.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link VPCLatticeServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DeleteListenerCommand extends $Command<DeleteListenerCommandInput, DeleteListenerCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
55
57
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
56
58
|
* service.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link VPCLatticeServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteRuleCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param DeleteRuleCommandInput - {@link DeleteRuleCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB
|
|
|
66
68
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
67
69
|
* service.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link VPCLatticeServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class DeleteRuleCommand extends $Command<DeleteRuleCommandInput, DeleteRuleCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -35,6 +35,13 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteServiceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DeleteServiceResponse
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // status: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
38
45
|
* ```
|
|
39
46
|
*
|
|
40
47
|
* @param DeleteServiceCommandInput - {@link DeleteServiceCommandInput}
|
|
@@ -63,6 +70,8 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
63
70
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
64
71
|
* service.</p>
|
|
65
72
|
*
|
|
73
|
+
* @throws {@link VPCLatticeServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
66
75
|
*
|
|
67
76
|
*/
|
|
68
77
|
export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeleteServiceNetworkCommandOutput extends DeleteServiceNetworkR
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteServiceNetworkCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteServiceNetworkCommandInput - {@link DeleteServiceNetworkCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface DeleteServiceNetworkCommandOutput extends DeleteServiceNetworkR
|
|
|
63
65
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
64
66
|
* service.</p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link VPCLatticeServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class DeleteServiceNetworkCommand extends $Command<DeleteServiceNetworkCommandInput, DeleteServiceNetworkCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface DeleteServiceNetworkServiceAssociationCommandOutput extends Del
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteServiceNetworkServiceAssociationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteServiceNetworkServiceAssociationResponse
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // arn: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param DeleteServiceNetworkServiceAssociationCommandInput - {@link DeleteServiceNetworkServiceAssociationCommandInput}
|
|
@@ -60,6 +66,8 @@ export interface DeleteServiceNetworkServiceAssociationCommandOutput extends Del
|
|
|
60
66
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
61
67
|
* service.</p>
|
|
62
68
|
*
|
|
69
|
+
* @throws {@link VPCLatticeServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
63
71
|
*
|
|
64
72
|
*/
|
|
65
73
|
export declare class DeleteServiceNetworkServiceAssociationCommand extends $Command<DeleteServiceNetworkServiceAssociationCommandInput, DeleteServiceNetworkServiceAssociationCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface DeleteServiceNetworkVpcAssociationCommandOutput extends DeleteS
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteServiceNetworkVpcAssociationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteServiceNetworkVpcAssociationResponse
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // arn: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param DeleteServiceNetworkVpcAssociationCommandInput - {@link DeleteServiceNetworkVpcAssociationCommandInput}
|
|
@@ -60,6 +66,8 @@ export interface DeleteServiceNetworkVpcAssociationCommandOutput extends DeleteS
|
|
|
60
66
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
61
67
|
* service.</p>
|
|
62
68
|
*
|
|
69
|
+
* @throws {@link VPCLatticeServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
63
71
|
*
|
|
64
72
|
*/
|
|
65
73
|
export declare class DeleteServiceNetworkVpcAssociationCommand extends $Command<DeleteServiceNetworkVpcAssociationCommandInput, DeleteServiceNetworkVpcAssociationCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteTargetGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteTargetGroupResponse
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // status: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param DeleteTargetGroupCommandInput - {@link DeleteTargetGroupCommandInput}
|
|
@@ -57,6 +63,8 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupRespons
|
|
|
57
63
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
58
64
|
* service.</p>
|
|
59
65
|
*
|
|
66
|
+
* @throws {@link VPCLatticeServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
60
68
|
*
|
|
61
69
|
*/
|
|
62
70
|
export declare class DeleteTargetGroupCommand extends $Command<DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -37,6 +37,23 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsRespons
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeregisterTargetsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DeregisterTargetsResponse
|
|
41
|
+
* // successful: [ // TargetList
|
|
42
|
+
* // { // Target
|
|
43
|
+
* // id: "STRING_VALUE", // required
|
|
44
|
+
* // port: Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // unsuccessful: [ // TargetFailureList
|
|
48
|
+
* // { // TargetFailure
|
|
49
|
+
* // id: "STRING_VALUE",
|
|
50
|
+
* // port: Number("int"),
|
|
51
|
+
* // failureCode: "STRING_VALUE",
|
|
52
|
+
* // failureMessage: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
40
57
|
* ```
|
|
41
58
|
*
|
|
42
59
|
* @param DeregisterTargetsCommandInput - {@link DeregisterTargetsCommandInput}
|
|
@@ -65,6 +82,8 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsRespons
|
|
|
65
82
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
66
83
|
* service.</p>
|
|
67
84
|
*
|
|
85
|
+
* @throws {@link VPCLatticeServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
68
87
|
*
|
|
69
88
|
*/
|
|
70
89
|
export declare class DeregisterTargetsCommand extends $Command<DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface GetAccessLogSubscriptionCommandOutput extends GetAccessLogSubsc
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAccessLogSubscriptionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAccessLogSubscriptionResponse
|
|
35
|
+
* // id: "STRING_VALUE", // required
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // resourceId: "STRING_VALUE", // required
|
|
38
|
+
* // resourceArn: "STRING_VALUE", // required
|
|
39
|
+
* // destinationArn: "STRING_VALUE", // required
|
|
40
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param GetAccessLogSubscriptionCommandInput - {@link GetAccessLogSubscriptionCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface GetAccessLogSubscriptionCommandOutput extends GetAccessLogSubsc
|
|
|
55
65
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
56
66
|
* service.</p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link VPCLatticeServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class GetAccessLogSubscriptionCommand extends $Command<GetAccessLogSubscriptionCommandInput, GetAccessLogSubscriptionCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface GetAuthPolicyCommandOutput extends GetAuthPolicyResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetAuthPolicyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetAuthPolicyResponse
|
|
36
|
+
* // policy: "STRING_VALUE",
|
|
37
|
+
* // state: "STRING_VALUE",
|
|
38
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
39
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param GetAuthPolicyCommandInput - {@link GetAuthPolicyCommandInput}
|
|
@@ -56,6 +63,8 @@ export interface GetAuthPolicyCommandOutput extends GetAuthPolicyResponse, __Met
|
|
|
56
63
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
57
64
|
* service.</p>
|
|
58
65
|
*
|
|
66
|
+
* @throws {@link VPCLatticeServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
59
68
|
*
|
|
60
69
|
*/
|
|
61
70
|
export declare class GetAuthPolicyCommand extends $Command<GetAuthPolicyCommandInput, GetAuthPolicyCommandOutput, VPCLatticeClientResolvedConfig> {
|