@aws-sdk/client-vpc-lattice 3.325.0 → 3.326.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 +3 -3
|
@@ -32,6 +32,31 @@ export interface GetListenerCommandOutput extends GetListenerResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetListenerCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetListenerResponse
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // id: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // protocol: "STRING_VALUE",
|
|
40
|
+
* // port: Number("int"),
|
|
41
|
+
* // serviceArn: "STRING_VALUE",
|
|
42
|
+
* // serviceId: "STRING_VALUE",
|
|
43
|
+
* // defaultAction: { // RuleAction Union: only one key present
|
|
44
|
+
* // forward: { // ForwardAction
|
|
45
|
+
* // targetGroups: [ // WeightedTargetGroupList // required
|
|
46
|
+
* // { // WeightedTargetGroup
|
|
47
|
+
* // targetGroupIdentifier: "STRING_VALUE", // required
|
|
48
|
+
* // weight: Number("int"),
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // fixedResponse: { // FixedResponseAction
|
|
53
|
+
* // statusCode: Number("int"), // required
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
57
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param GetListenerCommandInput - {@link GetListenerCommandInput}
|
|
@@ -56,6 +81,8 @@ export interface GetListenerCommandOutput extends GetListenerResponse, __Metadat
|
|
|
56
81
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
57
82
|
* service.</p>
|
|
58
83
|
*
|
|
84
|
+
* @throws {@link VPCLatticeServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
59
86
|
*
|
|
60
87
|
*/
|
|
61
88
|
export declare class GetListenerCommand extends $Command<GetListenerCommandInput, GetListenerCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetResourcePolicyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetResourcePolicyResponse
|
|
36
|
+
* // policy: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param GetResourcePolicyCommandInput - {@link GetResourcePolicyCommandInput}
|
|
@@ -56,6 +60,8 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
56
60
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
57
61
|
* service.</p>
|
|
58
62
|
*
|
|
63
|
+
* @throws {@link VPCLatticeServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
59
65
|
*
|
|
60
66
|
*/
|
|
61
67
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -35,6 +35,52 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetRuleCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetRuleResponse
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // isDefault: true || false,
|
|
43
|
+
* // match: { // RuleMatch Union: only one key present
|
|
44
|
+
* // httpMatch: { // HttpMatch
|
|
45
|
+
* // method: "STRING_VALUE",
|
|
46
|
+
* // pathMatch: { // PathMatch
|
|
47
|
+
* // match: { // PathMatchType Union: only one key present
|
|
48
|
+
* // exact: "STRING_VALUE",
|
|
49
|
+
* // prefix: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // caseSensitive: true || false,
|
|
52
|
+
* // },
|
|
53
|
+
* // headerMatches: [ // HeaderMatchList
|
|
54
|
+
* // { // HeaderMatch
|
|
55
|
+
* // name: "STRING_VALUE", // required
|
|
56
|
+
* // match: { // HeaderMatchType Union: only one key present
|
|
57
|
+
* // exact: "STRING_VALUE",
|
|
58
|
+
* // prefix: "STRING_VALUE",
|
|
59
|
+
* // contains: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // caseSensitive: true || false,
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // priority: Number("int"),
|
|
67
|
+
* // action: { // RuleAction Union: only one key present
|
|
68
|
+
* // forward: { // ForwardAction
|
|
69
|
+
* // targetGroups: [ // WeightedTargetGroupList // required
|
|
70
|
+
* // { // WeightedTargetGroup
|
|
71
|
+
* // targetGroupIdentifier: "STRING_VALUE", // required
|
|
72
|
+
* // weight: Number("int"),
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // },
|
|
76
|
+
* // fixedResponse: { // FixedResponseAction
|
|
77
|
+
* // statusCode: Number("int"), // required
|
|
78
|
+
* // },
|
|
79
|
+
* // },
|
|
80
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
81
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
38
84
|
* ```
|
|
39
85
|
*
|
|
40
86
|
* @param GetRuleCommandInput - {@link GetRuleCommandInput}
|
|
@@ -59,6 +105,8 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer
|
|
|
59
105
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
60
106
|
* service.</p>
|
|
61
107
|
*
|
|
108
|
+
* @throws {@link VPCLatticeServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
62
110
|
*
|
|
63
111
|
*/
|
|
64
112
|
export declare class GetRuleCommand extends $Command<GetRuleCommandInput, GetRuleCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,24 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetServiceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetServiceResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // name: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
39
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
40
|
+
* // dnsEntry: { // DnsEntry
|
|
41
|
+
* // domainName: "STRING_VALUE",
|
|
42
|
+
* // hostedZoneId: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // customDomainName: "STRING_VALUE",
|
|
45
|
+
* // certificateArn: "STRING_VALUE",
|
|
46
|
+
* // status: "STRING_VALUE",
|
|
47
|
+
* // authType: "STRING_VALUE",
|
|
48
|
+
* // failureCode: "STRING_VALUE",
|
|
49
|
+
* // failureMessage: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
34
52
|
* ```
|
|
35
53
|
*
|
|
36
54
|
* @param GetServiceCommandInput - {@link GetServiceCommandInput}
|
|
@@ -55,6 +73,8 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
|
|
|
55
73
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
56
74
|
* service.</p>
|
|
57
75
|
*
|
|
76
|
+
* @throws {@link VPCLatticeServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
58
78
|
*
|
|
59
79
|
*/
|
|
60
80
|
export declare class GetServiceCommand extends $Command<GetServiceCommandInput, GetServiceCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface GetServiceNetworkCommandOutput extends GetServiceNetworkRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetServiceNetworkCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetServiceNetworkResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // name: "STRING_VALUE",
|
|
37
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
38
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // authType: "STRING_VALUE",
|
|
41
|
+
* // numberOfAssociatedVPCs: Number("long"),
|
|
42
|
+
* // numberOfAssociatedServices: Number("long"),
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetServiceNetworkCommandInput - {@link GetServiceNetworkCommandInput}
|
|
@@ -55,6 +66,8 @@ export interface GetServiceNetworkCommandOutput extends GetServiceNetworkRespons
|
|
|
55
66
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
56
67
|
* service.</p>
|
|
57
68
|
*
|
|
69
|
+
* @throws {@link VPCLatticeServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
58
71
|
*
|
|
59
72
|
*/
|
|
60
73
|
export declare class GetServiceNetworkCommand extends $Command<GetServiceNetworkCommandInput, GetServiceNetworkCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,27 @@ export interface GetServiceNetworkServiceAssociationCommandOutput extends GetSer
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetServiceNetworkServiceAssociationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetServiceNetworkServiceAssociationResponse
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // arn: "STRING_VALUE",
|
|
39
|
+
* // createdBy: "STRING_VALUE",
|
|
40
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
41
|
+
* // serviceId: "STRING_VALUE",
|
|
42
|
+
* // serviceName: "STRING_VALUE",
|
|
43
|
+
* // serviceArn: "STRING_VALUE",
|
|
44
|
+
* // serviceNetworkId: "STRING_VALUE",
|
|
45
|
+
* // serviceNetworkName: "STRING_VALUE",
|
|
46
|
+
* // serviceNetworkArn: "STRING_VALUE",
|
|
47
|
+
* // dnsEntry: { // DnsEntry
|
|
48
|
+
* // domainName: "STRING_VALUE",
|
|
49
|
+
* // hostedZoneId: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // customDomainName: "STRING_VALUE",
|
|
52
|
+
* // failureMessage: "STRING_VALUE",
|
|
53
|
+
* // failureCode: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
35
56
|
* ```
|
|
36
57
|
*
|
|
37
58
|
* @param GetServiceNetworkServiceAssociationCommandInput - {@link GetServiceNetworkServiceAssociationCommandInput}
|
|
@@ -56,6 +77,8 @@ export interface GetServiceNetworkServiceAssociationCommandOutput extends GetSer
|
|
|
56
77
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
57
78
|
* service.</p>
|
|
58
79
|
*
|
|
80
|
+
* @throws {@link VPCLatticeServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
59
82
|
*
|
|
60
83
|
*/
|
|
61
84
|
export declare class GetServiceNetworkServiceAssociationCommand extends $Command<GetServiceNetworkServiceAssociationCommandInput, GetServiceNetworkServiceAssociationCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,24 @@ export interface GetServiceNetworkVpcAssociationCommandOutput extends GetService
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetServiceNetworkVpcAssociationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetServiceNetworkVpcAssociationResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // status: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // createdBy: "STRING_VALUE",
|
|
39
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
40
|
+
* // serviceNetworkId: "STRING_VALUE",
|
|
41
|
+
* // serviceNetworkName: "STRING_VALUE",
|
|
42
|
+
* // serviceNetworkArn: "STRING_VALUE",
|
|
43
|
+
* // vpcId: "STRING_VALUE",
|
|
44
|
+
* // securityGroupIds: [ // SecurityGroupList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // failureMessage: "STRING_VALUE",
|
|
48
|
+
* // failureCode: "STRING_VALUE",
|
|
49
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
34
52
|
* ```
|
|
35
53
|
*
|
|
36
54
|
* @param GetServiceNetworkVpcAssociationCommandInput - {@link GetServiceNetworkVpcAssociationCommandInput}
|
|
@@ -55,6 +73,8 @@ export interface GetServiceNetworkVpcAssociationCommandOutput extends GetService
|
|
|
55
73
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
56
74
|
* service.</p>
|
|
57
75
|
*
|
|
76
|
+
* @throws {@link VPCLatticeServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
58
78
|
*
|
|
59
79
|
*/
|
|
60
80
|
export declare class GetServiceNetworkVpcAssociationCommand extends $Command<GetServiceNetworkVpcAssociationCommandInput, GetServiceNetworkVpcAssociationCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,42 @@ export interface GetTargetGroupCommandOutput extends GetTargetGroupResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetTargetGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetTargetGroupResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // type: "STRING_VALUE",
|
|
39
|
+
* // config: { // TargetGroupConfig
|
|
40
|
+
* // port: Number("int"), // required
|
|
41
|
+
* // protocol: "STRING_VALUE", // required
|
|
42
|
+
* // protocolVersion: "STRING_VALUE",
|
|
43
|
+
* // ipAddressType: "STRING_VALUE",
|
|
44
|
+
* // vpcIdentifier: "STRING_VALUE", // required
|
|
45
|
+
* // healthCheck: { // HealthCheckConfig
|
|
46
|
+
* // enabled: true || false,
|
|
47
|
+
* // protocol: "STRING_VALUE",
|
|
48
|
+
* // protocolVersion: "STRING_VALUE",
|
|
49
|
+
* // port: Number("int"),
|
|
50
|
+
* // path: "STRING_VALUE",
|
|
51
|
+
* // healthCheckIntervalSeconds: Number("int"),
|
|
52
|
+
* // healthCheckTimeoutSeconds: Number("int"),
|
|
53
|
+
* // healthyThresholdCount: Number("int"),
|
|
54
|
+
* // unhealthyThresholdCount: Number("int"),
|
|
55
|
+
* // matcher: { // Matcher Union: only one key present
|
|
56
|
+
* // httpCode: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
61
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
62
|
+
* // status: "STRING_VALUE",
|
|
63
|
+
* // serviceArns: [ // ServiceArnList
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // failureMessage: "STRING_VALUE",
|
|
67
|
+
* // failureCode: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
34
70
|
* ```
|
|
35
71
|
*
|
|
36
72
|
* @param GetTargetGroupCommandInput - {@link GetTargetGroupCommandInput}
|
|
@@ -52,6 +88,8 @@ export interface GetTargetGroupCommandOutput extends GetTargetGroupResponse, __M
|
|
|
52
88
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
53
89
|
* service.</p>
|
|
54
90
|
*
|
|
91
|
+
* @throws {@link VPCLatticeServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
55
93
|
*
|
|
56
94
|
*/
|
|
57
95
|
export declare class GetTargetGroupCommand extends $Command<GetTargetGroupCommandInput, GetTargetGroupCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListAccessLogSubscriptionsCommandOutput extends ListAccessLogSu
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAccessLogSubscriptionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAccessLogSubscriptionsResponse
|
|
37
|
+
* // items: [ // AccessLogSubscriptionList // required
|
|
38
|
+
* // { // AccessLogSubscriptionSummary
|
|
39
|
+
* // id: "STRING_VALUE", // required
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // resourceId: "STRING_VALUE", // required
|
|
42
|
+
* // resourceArn: "STRING_VALUE", // required
|
|
43
|
+
* // destinationArn: "STRING_VALUE", // required
|
|
44
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListAccessLogSubscriptionsCommandInput - {@link ListAccessLogSubscriptionsCommandInput}
|
|
@@ -51,6 +66,8 @@ export interface ListAccessLogSubscriptionsCommandOutput extends ListAccessLogSu
|
|
|
51
66
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
52
67
|
* service.</p>
|
|
53
68
|
*
|
|
69
|
+
* @throws {@link VPCLatticeServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
54
71
|
*
|
|
55
72
|
*/
|
|
56
73
|
export declare class ListAccessLogSubscriptionsCommand extends $Command<ListAccessLogSubscriptionsCommandInput, ListAccessLogSubscriptionsCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListListenersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListListenersResponse
|
|
37
|
+
* // items: [ // ListenerSummaryList // required
|
|
38
|
+
* // { // ListenerSummary
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // protocol: "STRING_VALUE",
|
|
43
|
+
* // port: Number("int"),
|
|
44
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListListenersCommandInput - {@link ListListenersCommandInput}
|
|
@@ -57,6 +72,8 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
|
|
|
57
72
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
58
73
|
* service.</p>
|
|
59
74
|
*
|
|
75
|
+
* @throws {@link VPCLatticeServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
60
77
|
*
|
|
61
78
|
*/
|
|
62
79
|
export declare class ListListenersCommand extends $Command<ListListenersCommandInput, ListListenersCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -34,6 +34,21 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRulesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRulesResponse
|
|
38
|
+
* // items: [ // RuleSummaryList // required
|
|
39
|
+
* // { // RuleSummary
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // isDefault: true || false,
|
|
44
|
+
* // priority: Number("int"),
|
|
45
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // nextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
37
52
|
* ```
|
|
38
53
|
*
|
|
39
54
|
* @param ListRulesCommandInput - {@link ListRulesCommandInput}
|
|
@@ -58,6 +73,8 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
58
73
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
59
74
|
* service.</p>
|
|
60
75
|
*
|
|
76
|
+
* @throws {@link VPCLatticeServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
61
78
|
*
|
|
62
79
|
*/
|
|
63
80
|
export declare class ListRulesCommand extends $Command<ListRulesCommandInput, ListRulesCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -41,6 +41,30 @@ export interface ListServiceNetworkServiceAssociationsCommandOutput extends List
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListServiceNetworkServiceAssociationsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListServiceNetworkServiceAssociationsResponse
|
|
45
|
+
* // items: [ // ServiceNetworkServiceAssociationList // required
|
|
46
|
+
* // { // ServiceNetworkServiceAssociationSummary
|
|
47
|
+
* // id: "STRING_VALUE",
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // createdBy: "STRING_VALUE",
|
|
51
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // serviceId: "STRING_VALUE",
|
|
53
|
+
* // serviceName: "STRING_VALUE",
|
|
54
|
+
* // serviceArn: "STRING_VALUE",
|
|
55
|
+
* // serviceNetworkId: "STRING_VALUE",
|
|
56
|
+
* // serviceNetworkName: "STRING_VALUE",
|
|
57
|
+
* // serviceNetworkArn: "STRING_VALUE",
|
|
58
|
+
* // dnsEntry: { // DnsEntry
|
|
59
|
+
* // domainName: "STRING_VALUE",
|
|
60
|
+
* // hostedZoneId: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // customDomainName: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // nextToken: "STRING_VALUE",
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
44
68
|
* ```
|
|
45
69
|
*
|
|
46
70
|
* @param ListServiceNetworkServiceAssociationsCommandInput - {@link ListServiceNetworkServiceAssociationsCommandInput}
|
|
@@ -62,6 +86,8 @@ export interface ListServiceNetworkServiceAssociationsCommandOutput extends List
|
|
|
62
86
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
63
87
|
* service.</p>
|
|
64
88
|
*
|
|
89
|
+
* @throws {@link VPCLatticeServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
65
91
|
*
|
|
66
92
|
*/
|
|
67
93
|
export declare class ListServiceNetworkServiceAssociationsCommand extends $Command<ListServiceNetworkServiceAssociationsCommandInput, ListServiceNetworkServiceAssociationsCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -36,6 +36,24 @@ export interface ListServiceNetworkVpcAssociationsCommandOutput extends ListServ
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListServiceNetworkVpcAssociationsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListServiceNetworkVpcAssociationsResponse
|
|
40
|
+
* // items: [ // ServiceNetworkVpcAssociationList // required
|
|
41
|
+
* // { // ServiceNetworkVpcAssociationSummary
|
|
42
|
+
* // id: "STRING_VALUE",
|
|
43
|
+
* // arn: "STRING_VALUE",
|
|
44
|
+
* // status: "STRING_VALUE",
|
|
45
|
+
* // createdBy: "STRING_VALUE",
|
|
46
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // serviceNetworkId: "STRING_VALUE",
|
|
48
|
+
* // serviceNetworkName: "STRING_VALUE",
|
|
49
|
+
* // serviceNetworkArn: "STRING_VALUE",
|
|
50
|
+
* // vpcId: "STRING_VALUE",
|
|
51
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
39
57
|
* ```
|
|
40
58
|
*
|
|
41
59
|
* @param ListServiceNetworkVpcAssociationsCommandInput - {@link ListServiceNetworkVpcAssociationsCommandInput}
|
|
@@ -57,6 +75,8 @@ export interface ListServiceNetworkVpcAssociationsCommandOutput extends ListServ
|
|
|
57
75
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
58
76
|
* service.</p>
|
|
59
77
|
*
|
|
78
|
+
* @throws {@link VPCLatticeServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
60
80
|
*
|
|
61
81
|
*/
|
|
62
82
|
export declare class ListServiceNetworkVpcAssociationsCommand extends $Command<ListServiceNetworkVpcAssociationsCommandInput, ListServiceNetworkVpcAssociationsCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListServiceNetworksCommandOutput extends ListServiceNetworksRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListServiceNetworksCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListServiceNetworksResponse
|
|
37
|
+
* // items: [ // ServiceNetworkList // required
|
|
38
|
+
* // { // ServiceNetworkSummary
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // arn: "STRING_VALUE",
|
|
42
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
43
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // numberOfAssociatedVPCs: Number("long"),
|
|
45
|
+
* // numberOfAssociatedServices: Number("long"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListServiceNetworksCommandInput - {@link ListServiceNetworksCommandInput}
|
|
@@ -54,6 +69,8 @@ export interface ListServiceNetworksCommandOutput extends ListServiceNetworksRes
|
|
|
54
69
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
55
70
|
* service.</p>
|
|
56
71
|
*
|
|
72
|
+
* @throws {@link VPCLatticeServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
57
74
|
*
|
|
58
75
|
*/
|
|
59
76
|
export declare class ListServiceNetworksCommand extends $Command<ListServiceNetworksCommandInput, ListServiceNetworksCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -32,6 +32,25 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListServicesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListServicesResponse
|
|
36
|
+
* // items: [ // ServiceList
|
|
37
|
+
* // { // ServiceSummary
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
42
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
43
|
+
* // dnsEntry: { // DnsEntry
|
|
44
|
+
* // domainName: "STRING_VALUE",
|
|
45
|
+
* // hostedZoneId: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // customDomainName: "STRING_VALUE",
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // nextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
35
54
|
* ```
|
|
36
55
|
*
|
|
37
56
|
* @param ListServicesCommandInput - {@link ListServicesCommandInput}
|
|
@@ -53,6 +72,8 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
53
72
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
54
73
|
* service.</p>
|
|
55
74
|
*
|
|
75
|
+
* @throws {@link VPCLatticeServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
56
77
|
*
|
|
57
78
|
*/
|
|
58
79
|
export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -49,6 +55,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
55
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
50
56
|
* service.</p>
|
|
51
57
|
*
|
|
58
|
+
* @throws {@link VPCLatticeServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
52
60
|
*
|
|
53
61
|
*/
|
|
54
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -35,6 +35,28 @@ export interface ListTargetGroupsCommandOutput extends ListTargetGroupsResponse,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListTargetGroupsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListTargetGroupsResponse
|
|
39
|
+
* // items: [ // TargetGroupList
|
|
40
|
+
* // { // TargetGroupSummary
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // arn: "STRING_VALUE",
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // type: "STRING_VALUE",
|
|
45
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // port: Number("int"),
|
|
47
|
+
* // protocol: "STRING_VALUE",
|
|
48
|
+
* // ipAddressType: "STRING_VALUE",
|
|
49
|
+
* // vpcIdentifier: "STRING_VALUE",
|
|
50
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // status: "STRING_VALUE",
|
|
52
|
+
* // serviceArns: [ // ServiceArnList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // nextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
38
60
|
* ```
|
|
39
61
|
*
|
|
40
62
|
* @param ListTargetGroupsCommandInput - {@link ListTargetGroupsCommandInput}
|
|
@@ -56,6 +78,8 @@ export interface ListTargetGroupsCommandOutput extends ListTargetGroupsResponse,
|
|
|
56
78
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
57
79
|
* service.</p>
|
|
58
80
|
*
|
|
81
|
+
* @throws {@link VPCLatticeServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
59
83
|
*
|
|
60
84
|
*/
|
|
61
85
|
export declare class ListTargetGroupsCommand extends $Command<ListTargetGroupsCommandInput, ListTargetGroupsCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -40,6 +40,18 @@ export interface ListTargetsCommandOutput extends ListTargetsResponse, __Metadat
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListTargetsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListTargetsResponse
|
|
44
|
+
* // items: [ // TargetSummaryList // required
|
|
45
|
+
* // { // TargetSummary
|
|
46
|
+
* // id: "STRING_VALUE",
|
|
47
|
+
* // port: Number("int"),
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // reasonCode: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // nextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
43
55
|
* ```
|
|
44
56
|
*
|
|
45
57
|
* @param ListTargetsCommandInput - {@link ListTargetsCommandInput}
|
|
@@ -64,6 +76,8 @@ export interface ListTargetsCommandOutput extends ListTargetsResponse, __Metadat
|
|
|
64
76
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
65
77
|
* service.</p>
|
|
66
78
|
*
|
|
79
|
+
* @throws {@link VPCLatticeServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
67
81
|
*
|
|
68
82
|
*/
|
|
69
83
|
export declare class ListTargetsCommand extends $Command<ListTargetsCommandInput, ListTargetsCommandOutput, VPCLatticeClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface PutAuthPolicyCommandOutput extends PutAuthPolicyResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PutAuthPolicyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // PutAuthPolicyResponse
|
|
37
|
+
* // policy: "STRING_VALUE",
|
|
38
|
+
* // state: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param PutAuthPolicyCommandInput - {@link PutAuthPolicyCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface PutAuthPolicyCommandOutput extends PutAuthPolicyResponse, __Met
|
|
|
57
62
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services
|
|
58
63
|
* service.</p>
|
|
59
64
|
*
|
|
65
|
+
* @throws {@link VPCLatticeServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from VPCLattice service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class PutAuthPolicyCommand extends $Command<PutAuthPolicyCommandInput, PutAuthPolicyCommandOutput, VPCLatticeClientResolvedConfig> {
|