@aws-sdk/client-elastic-load-balancing-v2 3.300.0 → 3.303.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-cjs/models/models_0.js +81 -94
- package/dist-es/models/models_0.js +81 -94
- package/dist-types/commands/AddListenerCertificatesCommand.d.ts +3 -3
- package/dist-types/commands/AddTagsCommand.d.ts +4 -4
- package/dist-types/commands/CreateListenerCommand.d.ts +18 -18
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +7 -7
- package/dist-types/commands/CreateRuleCommand.d.ts +27 -29
- package/dist-types/commands/CreateTargetGroupCommand.d.ts +4 -4
- package/dist-types/commands/DeleteListenerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTargetGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeListenersCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +3 -3
- package/dist-types/commands/DescribeRulesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeTargetHealthCommand.d.ts +3 -3
- package/dist-types/commands/ModifyListenerCommand.d.ts +16 -16
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +3 -3
- package/dist-types/commands/ModifyRuleCommand.d.ts +25 -27
- package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +3 -3
- package/dist-types/commands/ModifyTargetGroupCommand.d.ts +2 -2
- package/dist-types/commands/RegisterTargetsCommand.d.ts +3 -3
- package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +3 -3
- package/dist-types/commands/RemoveTagsCommand.d.ts +3 -3
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +1 -1
- package/dist-types/commands/SetRulePrioritiesCommand.d.ts +3 -3
- package/dist-types/commands/SetSecurityGroupsCommand.d.ts +2 -2
- package/dist-types/commands/SetSubnetsCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +146 -81
- package/dist-types/ts3.4/models/models_0.d.ts +105 -81
- package/package.json +35 -35
|
@@ -31,56 +31,54 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
|
|
|
31
31
|
* import { ElasticLoadBalancingV2Client, CreateRuleCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
32
32
|
* // const { ElasticLoadBalancingV2Client, CreateRuleCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
33
33
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateRuleInput
|
|
35
35
|
* ListenerArn: "STRING_VALUE", // required
|
|
36
|
-
* Conditions: [ // required
|
|
37
|
-
* {
|
|
36
|
+
* Conditions: [ // RuleConditionList // required
|
|
37
|
+
* { // RuleCondition
|
|
38
38
|
* Field: "STRING_VALUE",
|
|
39
|
-
* Values: [
|
|
39
|
+
* Values: [ // ListOfString
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* HostHeaderConfig: {
|
|
42
|
+
* HostHeaderConfig: { // HostHeaderConditionConfig
|
|
43
43
|
* Values: [
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
47
|
-
* PathPatternConfig: {
|
|
47
|
+
* PathPatternConfig: { // PathPatternConditionConfig
|
|
48
48
|
* Values: [
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* },
|
|
52
|
-
* HttpHeaderConfig: {
|
|
52
|
+
* HttpHeaderConfig: { // HttpHeaderConditionConfig
|
|
53
53
|
* HttpHeaderName: "STRING_VALUE",
|
|
54
54
|
* Values: [
|
|
55
55
|
* "STRING_VALUE",
|
|
56
56
|
* ],
|
|
57
57
|
* },
|
|
58
|
-
* QueryStringConfig: {
|
|
59
|
-
* Values: [
|
|
60
|
-
* {
|
|
58
|
+
* QueryStringConfig: { // QueryStringConditionConfig
|
|
59
|
+
* Values: [ // QueryStringKeyValuePairList
|
|
60
|
+
* { // QueryStringKeyValuePair
|
|
61
61
|
* Key: "STRING_VALUE",
|
|
62
62
|
* Value: "STRING_VALUE",
|
|
63
63
|
* },
|
|
64
64
|
* ],
|
|
65
65
|
* },
|
|
66
|
-
* HttpRequestMethodConfig: {
|
|
66
|
+
* HttpRequestMethodConfig: { // HttpRequestMethodConditionConfig
|
|
67
67
|
* Values: [
|
|
68
68
|
* "STRING_VALUE",
|
|
69
69
|
* ],
|
|
70
70
|
* },
|
|
71
|
-
* SourceIpConfig: {
|
|
72
|
-
* Values:
|
|
73
|
-
* "STRING_VALUE",
|
|
74
|
-
* ],
|
|
71
|
+
* SourceIpConfig: { // SourceIpConditionConfig
|
|
72
|
+
* Values: "<ListOfString>",
|
|
75
73
|
* },
|
|
76
74
|
* },
|
|
77
75
|
* ],
|
|
78
76
|
* Priority: Number("int"), // required
|
|
79
|
-
* Actions: [ // required
|
|
80
|
-
* {
|
|
77
|
+
* Actions: [ // Actions // required
|
|
78
|
+
* { // Action
|
|
81
79
|
* Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
|
|
82
80
|
* TargetGroupArn: "STRING_VALUE",
|
|
83
|
-
* AuthenticateOidcConfig: {
|
|
81
|
+
* AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
|
|
84
82
|
* Issuer: "STRING_VALUE", // required
|
|
85
83
|
* AuthorizationEndpoint: "STRING_VALUE", // required
|
|
86
84
|
* TokenEndpoint: "STRING_VALUE", // required
|
|
@@ -90,26 +88,26 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
|
|
|
90
88
|
* SessionCookieName: "STRING_VALUE",
|
|
91
89
|
* Scope: "STRING_VALUE",
|
|
92
90
|
* SessionTimeout: Number("long"),
|
|
93
|
-
* AuthenticationRequestExtraParams: {
|
|
91
|
+
* AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
|
|
94
92
|
* "<keys>": "STRING_VALUE",
|
|
95
93
|
* },
|
|
96
94
|
* OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
97
95
|
* UseExistingClientSecret: true || false,
|
|
98
96
|
* },
|
|
99
|
-
* AuthenticateCognitoConfig: {
|
|
97
|
+
* AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
|
|
100
98
|
* UserPoolArn: "STRING_VALUE", // required
|
|
101
99
|
* UserPoolClientId: "STRING_VALUE", // required
|
|
102
100
|
* UserPoolDomain: "STRING_VALUE", // required
|
|
103
101
|
* SessionCookieName: "STRING_VALUE",
|
|
104
102
|
* Scope: "STRING_VALUE",
|
|
105
103
|
* SessionTimeout: Number("long"),
|
|
106
|
-
* AuthenticationRequestExtraParams: {
|
|
104
|
+
* AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
|
|
107
105
|
* "<keys>": "STRING_VALUE",
|
|
108
106
|
* },
|
|
109
107
|
* OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
110
108
|
* },
|
|
111
109
|
* Order: Number("int"),
|
|
112
|
-
* RedirectConfig: {
|
|
110
|
+
* RedirectConfig: { // RedirectActionConfig
|
|
113
111
|
* Protocol: "STRING_VALUE",
|
|
114
112
|
* Port: "STRING_VALUE",
|
|
115
113
|
* Host: "STRING_VALUE",
|
|
@@ -117,27 +115,27 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
|
|
|
117
115
|
* Query: "STRING_VALUE",
|
|
118
116
|
* StatusCode: "HTTP_301" || "HTTP_302", // required
|
|
119
117
|
* },
|
|
120
|
-
* FixedResponseConfig: {
|
|
118
|
+
* FixedResponseConfig: { // FixedResponseActionConfig
|
|
121
119
|
* MessageBody: "STRING_VALUE",
|
|
122
120
|
* StatusCode: "STRING_VALUE", // required
|
|
123
121
|
* ContentType: "STRING_VALUE",
|
|
124
122
|
* },
|
|
125
|
-
* ForwardConfig: {
|
|
126
|
-
* TargetGroups: [
|
|
127
|
-
* {
|
|
123
|
+
* ForwardConfig: { // ForwardActionConfig
|
|
124
|
+
* TargetGroups: [ // TargetGroupList
|
|
125
|
+
* { // TargetGroupTuple
|
|
128
126
|
* TargetGroupArn: "STRING_VALUE",
|
|
129
127
|
* Weight: Number("int"),
|
|
130
128
|
* },
|
|
131
129
|
* ],
|
|
132
|
-
* TargetGroupStickinessConfig: {
|
|
130
|
+
* TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
|
|
133
131
|
* Enabled: true || false,
|
|
134
132
|
* DurationSeconds: Number("int"),
|
|
135
133
|
* },
|
|
136
134
|
* },
|
|
137
135
|
* },
|
|
138
136
|
* ],
|
|
139
|
-
* Tags: [
|
|
140
|
-
* {
|
|
137
|
+
* Tags: [ // TagList
|
|
138
|
+
* { // Tag
|
|
141
139
|
* Key: "STRING_VALUE", // required
|
|
142
140
|
* Value: "STRING_VALUE",
|
|
143
141
|
* },
|
|
@@ -49,7 +49,7 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
|
|
|
49
49
|
* import { ElasticLoadBalancingV2Client, CreateTargetGroupCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
50
50
|
* // const { ElasticLoadBalancingV2Client, CreateTargetGroupCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
51
51
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
52
|
-
* const input = {
|
|
52
|
+
* const input = { // CreateTargetGroupInput
|
|
53
53
|
* Name: "STRING_VALUE", // required
|
|
54
54
|
* Protocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
55
55
|
* ProtocolVersion: "STRING_VALUE",
|
|
@@ -63,13 +63,13 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
|
|
|
63
63
|
* HealthCheckTimeoutSeconds: Number("int"),
|
|
64
64
|
* HealthyThresholdCount: Number("int"),
|
|
65
65
|
* UnhealthyThresholdCount: Number("int"),
|
|
66
|
-
* Matcher: {
|
|
66
|
+
* Matcher: { // Matcher
|
|
67
67
|
* HttpCode: "STRING_VALUE",
|
|
68
68
|
* GrpcCode: "STRING_VALUE",
|
|
69
69
|
* },
|
|
70
70
|
* TargetType: "instance" || "ip" || "lambda" || "alb",
|
|
71
|
-
* Tags: [
|
|
72
|
-
* {
|
|
71
|
+
* Tags: [ // TagList
|
|
72
|
+
* { // Tag
|
|
73
73
|
* Key: "STRING_VALUE", // required
|
|
74
74
|
* Value: "STRING_VALUE",
|
|
75
75
|
* },
|
|
@@ -28,7 +28,7 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met
|
|
|
28
28
|
* import { ElasticLoadBalancingV2Client, DeleteListenerCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
29
29
|
* // const { ElasticLoadBalancingV2Client, DeleteListenerCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
30
30
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteListenerInput
|
|
32
32
|
* ListenerArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteListenerCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu
|
|
|
32
32
|
* import { ElasticLoadBalancingV2Client, DeleteLoadBalancerCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
33
33
|
* // const { ElasticLoadBalancingV2Client, DeleteLoadBalancerCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
34
34
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DeleteLoadBalancerInput
|
|
36
36
|
* LoadBalancerArn: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeleteLoadBalancerCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea
|
|
|
27
27
|
* import { ElasticLoadBalancingV2Client, DeleteRuleCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
28
28
|
* // const { ElasticLoadBalancingV2Client, DeleteRuleCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
29
29
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteRuleInput
|
|
31
31
|
* RuleArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteRuleCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput,
|
|
|
30
30
|
* import { ElasticLoadBalancingV2Client, DeleteTargetGroupCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
31
31
|
* // const { ElasticLoadBalancingV2Client, DeleteTargetGroupCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
32
32
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteTargetGroupInput
|
|
34
34
|
* TargetGroupArn: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteTargetGroupCommand(input);
|
|
@@ -27,10 +27,10 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput,
|
|
|
27
27
|
* import { ElasticLoadBalancingV2Client, DeregisterTargetsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
28
28
|
* // const { ElasticLoadBalancingV2Client, DeregisterTargetsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
29
29
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeregisterTargetsInput
|
|
31
31
|
* TargetGroupArn: "STRING_VALUE", // required
|
|
32
|
-
* Targets: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Targets: [ // TargetDescriptions // required
|
|
33
|
+
* { // TargetDescription
|
|
34
34
|
* Id: "STRING_VALUE", // required
|
|
35
35
|
* Port: Number("int"),
|
|
36
36
|
* AvailabilityZone: "STRING_VALUE",
|
|
@@ -48,7 +48,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
48
48
|
* import { ElasticLoadBalancingV2Client, DescribeAccountLimitsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
49
49
|
* // const { ElasticLoadBalancingV2Client, DescribeAccountLimitsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
50
50
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
51
|
-
* const input = {
|
|
51
|
+
* const input = { // DescribeAccountLimitsInput
|
|
52
52
|
* Marker: "STRING_VALUE",
|
|
53
53
|
* PageSize: Number("int"),
|
|
54
54
|
* };
|
|
@@ -33,7 +33,7 @@ export interface DescribeListenerCertificatesCommandOutput extends DescribeListe
|
|
|
33
33
|
* import { ElasticLoadBalancingV2Client, DescribeListenerCertificatesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
34
34
|
* // const { ElasticLoadBalancingV2Client, DescribeListenerCertificatesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
35
35
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // DescribeListenerCertificatesInput
|
|
37
37
|
* ListenerArn: "STRING_VALUE", // required
|
|
38
38
|
* Marker: "STRING_VALUE",
|
|
39
39
|
* PageSize: Number("int"),
|
|
@@ -28,9 +28,9 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput,
|
|
|
28
28
|
* import { ElasticLoadBalancingV2Client, DescribeListenersCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
29
29
|
* // const { ElasticLoadBalancingV2Client, DescribeListenersCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
30
30
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeListenersInput
|
|
32
32
|
* LoadBalancerArn: "STRING_VALUE",
|
|
33
|
-
* ListenerArns: [
|
|
33
|
+
* ListenerArns: [ // ListenerArns
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* Marker: "STRING_VALUE",
|
|
@@ -48,7 +48,7 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
|
|
|
48
48
|
* import { ElasticLoadBalancingV2Client, DescribeLoadBalancerAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
49
49
|
* // const { ElasticLoadBalancingV2Client, DescribeLoadBalancerAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
50
50
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
51
|
-
* const input = {
|
|
51
|
+
* const input = { // DescribeLoadBalancerAttributesInput
|
|
52
52
|
* LoadBalancerArn: "STRING_VALUE", // required
|
|
53
53
|
* };
|
|
54
54
|
* const command = new DescribeLoadBalancerAttributesCommand(input);
|
|
@@ -26,11 +26,11 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeLoadBalancer
|
|
|
26
26
|
* import { ElasticLoadBalancingV2Client, DescribeLoadBalancersCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
27
27
|
* // const { ElasticLoadBalancingV2Client, DescribeLoadBalancersCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
28
28
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* LoadBalancerArns: [
|
|
29
|
+
* const input = { // DescribeLoadBalancersInput
|
|
30
|
+
* LoadBalancerArns: [ // LoadBalancerArns
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
|
-
* Names: [
|
|
33
|
+
* Names: [ // LoadBalancerNames
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* Marker: "STRING_VALUE",
|
|
@@ -27,9 +27,9 @@ export interface DescribeRulesCommandOutput extends DescribeRulesOutput, __Metad
|
|
|
27
27
|
* import { ElasticLoadBalancingV2Client, DescribeRulesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
28
28
|
* // const { ElasticLoadBalancingV2Client, DescribeRulesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
29
29
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeRulesInput
|
|
31
31
|
* ListenerArn: "STRING_VALUE",
|
|
32
|
-
* RuleArns: [
|
|
32
|
+
* RuleArns: [ // RuleArns
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* Marker: "STRING_VALUE",
|
|
@@ -28,8 +28,8 @@ export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOut
|
|
|
28
28
|
* import { ElasticLoadBalancingV2Client, DescribeSSLPoliciesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
29
29
|
* // const { ElasticLoadBalancingV2Client, DescribeSSLPoliciesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
30
30
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* Names: [
|
|
31
|
+
* const input = { // DescribeSSLPoliciesInput
|
|
32
|
+
* Names: [ // SslPolicyNames
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* Marker: "STRING_VALUE",
|
|
@@ -28,8 +28,8 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
|
|
|
28
28
|
* import { ElasticLoadBalancingV2Client, DescribeTagsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
29
29
|
* // const { ElasticLoadBalancingV2Client, DescribeTagsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
30
30
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* ResourceArns: [ // required
|
|
31
|
+
* const input = { // DescribeTagsInput
|
|
32
|
+
* ResourceArns: [ // ResourceArns // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -47,7 +47,7 @@ export interface DescribeTargetGroupAttributesCommandOutput extends DescribeTarg
|
|
|
47
47
|
* import { ElasticLoadBalancingV2Client, DescribeTargetGroupAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
48
48
|
* // const { ElasticLoadBalancingV2Client, DescribeTargetGroupAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
49
49
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
50
|
-
* const input = {
|
|
50
|
+
* const input = { // DescribeTargetGroupAttributesInput
|
|
51
51
|
* TargetGroupArn: "STRING_VALUE", // required
|
|
52
52
|
* };
|
|
53
53
|
* const command = new DescribeTargetGroupAttributesCommand(input);
|
|
@@ -29,12 +29,12 @@ export interface DescribeTargetGroupsCommandOutput extends DescribeTargetGroupsO
|
|
|
29
29
|
* import { ElasticLoadBalancingV2Client, DescribeTargetGroupsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
30
30
|
* // const { ElasticLoadBalancingV2Client, DescribeTargetGroupsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
31
31
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeTargetGroupsInput
|
|
33
33
|
* LoadBalancerArn: "STRING_VALUE",
|
|
34
|
-
* TargetGroupArns: [
|
|
34
|
+
* TargetGroupArns: [ // TargetGroupArns
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* Names: [
|
|
37
|
+
* Names: [ // TargetGroupNames
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* Marker: "STRING_VALUE",
|
|
@@ -26,10 +26,10 @@ export interface DescribeTargetHealthCommandOutput extends DescribeTargetHealthO
|
|
|
26
26
|
* import { ElasticLoadBalancingV2Client, DescribeTargetHealthCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
27
27
|
* // const { ElasticLoadBalancingV2Client, DescribeTargetHealthCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
28
28
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeTargetHealthInput
|
|
30
30
|
* TargetGroupArn: "STRING_VALUE", // required
|
|
31
|
-
* Targets: [
|
|
32
|
-
* {
|
|
31
|
+
* Targets: [ // TargetDescriptions
|
|
32
|
+
* { // TargetDescription
|
|
33
33
|
* Id: "STRING_VALUE", // required
|
|
34
34
|
* Port: Number("int"),
|
|
35
35
|
* AvailabilityZone: "STRING_VALUE",
|
|
@@ -33,22 +33,22 @@ export interface ModifyListenerCommandOutput extends ModifyListenerOutput, __Met
|
|
|
33
33
|
* import { ElasticLoadBalancingV2Client, ModifyListenerCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
34
34
|
* // const { ElasticLoadBalancingV2Client, ModifyListenerCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
35
35
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // ModifyListenerInput
|
|
37
37
|
* ListenerArn: "STRING_VALUE", // required
|
|
38
38
|
* Port: Number("int"),
|
|
39
39
|
* Protocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
40
40
|
* SslPolicy: "STRING_VALUE",
|
|
41
|
-
* Certificates: [
|
|
42
|
-
* {
|
|
41
|
+
* Certificates: [ // CertificateList
|
|
42
|
+
* { // Certificate
|
|
43
43
|
* CertificateArn: "STRING_VALUE",
|
|
44
44
|
* IsDefault: true || false,
|
|
45
45
|
* },
|
|
46
46
|
* ],
|
|
47
|
-
* DefaultActions: [
|
|
48
|
-
* {
|
|
47
|
+
* DefaultActions: [ // Actions
|
|
48
|
+
* { // Action
|
|
49
49
|
* Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
|
|
50
50
|
* TargetGroupArn: "STRING_VALUE",
|
|
51
|
-
* AuthenticateOidcConfig: {
|
|
51
|
+
* AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
|
|
52
52
|
* Issuer: "STRING_VALUE", // required
|
|
53
53
|
* AuthorizationEndpoint: "STRING_VALUE", // required
|
|
54
54
|
* TokenEndpoint: "STRING_VALUE", // required
|
|
@@ -58,26 +58,26 @@ export interface ModifyListenerCommandOutput extends ModifyListenerOutput, __Met
|
|
|
58
58
|
* SessionCookieName: "STRING_VALUE",
|
|
59
59
|
* Scope: "STRING_VALUE",
|
|
60
60
|
* SessionTimeout: Number("long"),
|
|
61
|
-
* AuthenticationRequestExtraParams: {
|
|
61
|
+
* AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
|
|
62
62
|
* "<keys>": "STRING_VALUE",
|
|
63
63
|
* },
|
|
64
64
|
* OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
65
65
|
* UseExistingClientSecret: true || false,
|
|
66
66
|
* },
|
|
67
|
-
* AuthenticateCognitoConfig: {
|
|
67
|
+
* AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
|
|
68
68
|
* UserPoolArn: "STRING_VALUE", // required
|
|
69
69
|
* UserPoolClientId: "STRING_VALUE", // required
|
|
70
70
|
* UserPoolDomain: "STRING_VALUE", // required
|
|
71
71
|
* SessionCookieName: "STRING_VALUE",
|
|
72
72
|
* Scope: "STRING_VALUE",
|
|
73
73
|
* SessionTimeout: Number("long"),
|
|
74
|
-
* AuthenticationRequestExtraParams: {
|
|
74
|
+
* AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
|
|
75
75
|
* "<keys>": "STRING_VALUE",
|
|
76
76
|
* },
|
|
77
77
|
* OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
78
78
|
* },
|
|
79
79
|
* Order: Number("int"),
|
|
80
|
-
* RedirectConfig: {
|
|
80
|
+
* RedirectConfig: { // RedirectActionConfig
|
|
81
81
|
* Protocol: "STRING_VALUE",
|
|
82
82
|
* Port: "STRING_VALUE",
|
|
83
83
|
* Host: "STRING_VALUE",
|
|
@@ -85,26 +85,26 @@ export interface ModifyListenerCommandOutput extends ModifyListenerOutput, __Met
|
|
|
85
85
|
* Query: "STRING_VALUE",
|
|
86
86
|
* StatusCode: "HTTP_301" || "HTTP_302", // required
|
|
87
87
|
* },
|
|
88
|
-
* FixedResponseConfig: {
|
|
88
|
+
* FixedResponseConfig: { // FixedResponseActionConfig
|
|
89
89
|
* MessageBody: "STRING_VALUE",
|
|
90
90
|
* StatusCode: "STRING_VALUE", // required
|
|
91
91
|
* ContentType: "STRING_VALUE",
|
|
92
92
|
* },
|
|
93
|
-
* ForwardConfig: {
|
|
94
|
-
* TargetGroups: [
|
|
95
|
-
* {
|
|
93
|
+
* ForwardConfig: { // ForwardActionConfig
|
|
94
|
+
* TargetGroups: [ // TargetGroupList
|
|
95
|
+
* { // TargetGroupTuple
|
|
96
96
|
* TargetGroupArn: "STRING_VALUE",
|
|
97
97
|
* Weight: Number("int"),
|
|
98
98
|
* },
|
|
99
99
|
* ],
|
|
100
|
-
* TargetGroupStickinessConfig: {
|
|
100
|
+
* TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
|
|
101
101
|
* Enabled: true || false,
|
|
102
102
|
* DurationSeconds: Number("int"),
|
|
103
103
|
* },
|
|
104
104
|
* },
|
|
105
105
|
* },
|
|
106
106
|
* ],
|
|
107
|
-
* AlpnPolicy: [
|
|
107
|
+
* AlpnPolicy: [ // AlpnPolicyName
|
|
108
108
|
* "STRING_VALUE",
|
|
109
109
|
* ],
|
|
110
110
|
* };
|
|
@@ -29,10 +29,10 @@ export interface ModifyLoadBalancerAttributesCommandOutput extends ModifyLoadBal
|
|
|
29
29
|
* import { ElasticLoadBalancingV2Client, ModifyLoadBalancerAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
30
30
|
* // const { ElasticLoadBalancingV2Client, ModifyLoadBalancerAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
31
31
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ModifyLoadBalancerAttributesInput
|
|
33
33
|
* LoadBalancerArn: "STRING_VALUE", // required
|
|
34
|
-
* Attributes: [ // required
|
|
35
|
-
* {
|
|
34
|
+
* Attributes: [ // LoadBalancerAttributes // required
|
|
35
|
+
* { // LoadBalancerAttribute
|
|
36
36
|
* Key: "STRING_VALUE",
|
|
37
37
|
* Value: "STRING_VALUE",
|
|
38
38
|
* },
|
|
@@ -30,55 +30,53 @@ export interface ModifyRuleCommandOutput extends ModifyRuleOutput, __MetadataBea
|
|
|
30
30
|
* import { ElasticLoadBalancingV2Client, ModifyRuleCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
31
31
|
* // const { ElasticLoadBalancingV2Client, ModifyRuleCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
32
32
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ModifyRuleInput
|
|
34
34
|
* RuleArn: "STRING_VALUE", // required
|
|
35
|
-
* Conditions: [
|
|
36
|
-
* {
|
|
35
|
+
* Conditions: [ // RuleConditionList
|
|
36
|
+
* { // RuleCondition
|
|
37
37
|
* Field: "STRING_VALUE",
|
|
38
|
-
* Values: [
|
|
38
|
+
* Values: [ // ListOfString
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* HostHeaderConfig: {
|
|
41
|
+
* HostHeaderConfig: { // HostHeaderConditionConfig
|
|
42
42
|
* Values: [
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* },
|
|
46
|
-
* PathPatternConfig: {
|
|
46
|
+
* PathPatternConfig: { // PathPatternConditionConfig
|
|
47
47
|
* Values: [
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
51
|
-
* HttpHeaderConfig: {
|
|
51
|
+
* HttpHeaderConfig: { // HttpHeaderConditionConfig
|
|
52
52
|
* HttpHeaderName: "STRING_VALUE",
|
|
53
53
|
* Values: [
|
|
54
54
|
* "STRING_VALUE",
|
|
55
55
|
* ],
|
|
56
56
|
* },
|
|
57
|
-
* QueryStringConfig: {
|
|
58
|
-
* Values: [
|
|
59
|
-
* {
|
|
57
|
+
* QueryStringConfig: { // QueryStringConditionConfig
|
|
58
|
+
* Values: [ // QueryStringKeyValuePairList
|
|
59
|
+
* { // QueryStringKeyValuePair
|
|
60
60
|
* Key: "STRING_VALUE",
|
|
61
61
|
* Value: "STRING_VALUE",
|
|
62
62
|
* },
|
|
63
63
|
* ],
|
|
64
64
|
* },
|
|
65
|
-
* HttpRequestMethodConfig: {
|
|
65
|
+
* HttpRequestMethodConfig: { // HttpRequestMethodConditionConfig
|
|
66
66
|
* Values: [
|
|
67
67
|
* "STRING_VALUE",
|
|
68
68
|
* ],
|
|
69
69
|
* },
|
|
70
|
-
* SourceIpConfig: {
|
|
71
|
-
* Values:
|
|
72
|
-
* "STRING_VALUE",
|
|
73
|
-
* ],
|
|
70
|
+
* SourceIpConfig: { // SourceIpConditionConfig
|
|
71
|
+
* Values: "<ListOfString>",
|
|
74
72
|
* },
|
|
75
73
|
* },
|
|
76
74
|
* ],
|
|
77
|
-
* Actions: [
|
|
78
|
-
* {
|
|
75
|
+
* Actions: [ // Actions
|
|
76
|
+
* { // Action
|
|
79
77
|
* Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
|
|
80
78
|
* TargetGroupArn: "STRING_VALUE",
|
|
81
|
-
* AuthenticateOidcConfig: {
|
|
79
|
+
* AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
|
|
82
80
|
* Issuer: "STRING_VALUE", // required
|
|
83
81
|
* AuthorizationEndpoint: "STRING_VALUE", // required
|
|
84
82
|
* TokenEndpoint: "STRING_VALUE", // required
|
|
@@ -88,26 +86,26 @@ export interface ModifyRuleCommandOutput extends ModifyRuleOutput, __MetadataBea
|
|
|
88
86
|
* SessionCookieName: "STRING_VALUE",
|
|
89
87
|
* Scope: "STRING_VALUE",
|
|
90
88
|
* SessionTimeout: Number("long"),
|
|
91
|
-
* AuthenticationRequestExtraParams: {
|
|
89
|
+
* AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
|
|
92
90
|
* "<keys>": "STRING_VALUE",
|
|
93
91
|
* },
|
|
94
92
|
* OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
95
93
|
* UseExistingClientSecret: true || false,
|
|
96
94
|
* },
|
|
97
|
-
* AuthenticateCognitoConfig: {
|
|
95
|
+
* AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
|
|
98
96
|
* UserPoolArn: "STRING_VALUE", // required
|
|
99
97
|
* UserPoolClientId: "STRING_VALUE", // required
|
|
100
98
|
* UserPoolDomain: "STRING_VALUE", // required
|
|
101
99
|
* SessionCookieName: "STRING_VALUE",
|
|
102
100
|
* Scope: "STRING_VALUE",
|
|
103
101
|
* SessionTimeout: Number("long"),
|
|
104
|
-
* AuthenticationRequestExtraParams: {
|
|
102
|
+
* AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
|
|
105
103
|
* "<keys>": "STRING_VALUE",
|
|
106
104
|
* },
|
|
107
105
|
* OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
108
106
|
* },
|
|
109
107
|
* Order: Number("int"),
|
|
110
|
-
* RedirectConfig: {
|
|
108
|
+
* RedirectConfig: { // RedirectActionConfig
|
|
111
109
|
* Protocol: "STRING_VALUE",
|
|
112
110
|
* Port: "STRING_VALUE",
|
|
113
111
|
* Host: "STRING_VALUE",
|
|
@@ -115,19 +113,19 @@ export interface ModifyRuleCommandOutput extends ModifyRuleOutput, __MetadataBea
|
|
|
115
113
|
* Query: "STRING_VALUE",
|
|
116
114
|
* StatusCode: "HTTP_301" || "HTTP_302", // required
|
|
117
115
|
* },
|
|
118
|
-
* FixedResponseConfig: {
|
|
116
|
+
* FixedResponseConfig: { // FixedResponseActionConfig
|
|
119
117
|
* MessageBody: "STRING_VALUE",
|
|
120
118
|
* StatusCode: "STRING_VALUE", // required
|
|
121
119
|
* ContentType: "STRING_VALUE",
|
|
122
120
|
* },
|
|
123
|
-
* ForwardConfig: {
|
|
124
|
-
* TargetGroups: [
|
|
125
|
-
* {
|
|
121
|
+
* ForwardConfig: { // ForwardActionConfig
|
|
122
|
+
* TargetGroups: [ // TargetGroupList
|
|
123
|
+
* { // TargetGroupTuple
|
|
126
124
|
* TargetGroupArn: "STRING_VALUE",
|
|
127
125
|
* Weight: Number("int"),
|
|
128
126
|
* },
|
|
129
127
|
* ],
|
|
130
|
-
* TargetGroupStickinessConfig: {
|
|
128
|
+
* TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
|
|
131
129
|
* Enabled: true || false,
|
|
132
130
|
* DurationSeconds: Number("int"),
|
|
133
131
|
* },
|
|
@@ -26,10 +26,10 @@ export interface ModifyTargetGroupAttributesCommandOutput extends ModifyTargetGr
|
|
|
26
26
|
* import { ElasticLoadBalancingV2Client, ModifyTargetGroupAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
27
27
|
* // const { ElasticLoadBalancingV2Client, ModifyTargetGroupAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
28
28
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ModifyTargetGroupAttributesInput
|
|
30
30
|
* TargetGroupArn: "STRING_VALUE", // required
|
|
31
|
-
* Attributes: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Attributes: [ // TargetGroupAttributes // required
|
|
32
|
+
* { // TargetGroupAttribute
|
|
33
33
|
* Key: "STRING_VALUE",
|
|
34
34
|
* Value: "STRING_VALUE",
|
|
35
35
|
* },
|
|
@@ -27,7 +27,7 @@ export interface ModifyTargetGroupCommandOutput extends ModifyTargetGroupOutput,
|
|
|
27
27
|
* import { ElasticLoadBalancingV2Client, ModifyTargetGroupCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
|
|
28
28
|
* // const { ElasticLoadBalancingV2Client, ModifyTargetGroupCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
|
|
29
29
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ModifyTargetGroupInput
|
|
31
31
|
* TargetGroupArn: "STRING_VALUE", // required
|
|
32
32
|
* HealthCheckProtocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
33
33
|
* HealthCheckPort: "STRING_VALUE",
|
|
@@ -37,7 +37,7 @@ export interface ModifyTargetGroupCommandOutput extends ModifyTargetGroupOutput,
|
|
|
37
37
|
* HealthCheckTimeoutSeconds: Number("int"),
|
|
38
38
|
* HealthyThresholdCount: Number("int"),
|
|
39
39
|
* UnhealthyThresholdCount: Number("int"),
|
|
40
|
-
* Matcher: {
|
|
40
|
+
* Matcher: { // Matcher
|
|
41
41
|
* HttpCode: "STRING_VALUE",
|
|
42
42
|
* GrpcCode: "STRING_VALUE",
|
|
43
43
|
* },
|