@aws-sdk/client-elastic-load-balancing-v2 3.300.0 → 3.301.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.
Files changed (35) hide show
  1. package/dist-types/commands/AddListenerCertificatesCommand.d.ts +3 -3
  2. package/dist-types/commands/AddTagsCommand.d.ts +4 -4
  3. package/dist-types/commands/CreateListenerCommand.d.ts +18 -18
  4. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +7 -7
  5. package/dist-types/commands/CreateRuleCommand.d.ts +27 -29
  6. package/dist-types/commands/CreateTargetGroupCommand.d.ts +4 -4
  7. package/dist-types/commands/DeleteListenerCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteTargetGroupCommand.d.ts +1 -1
  11. package/dist-types/commands/DeregisterTargetsCommand.d.ts +3 -3
  12. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeListenersCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +3 -3
  17. package/dist-types/commands/DescribeRulesCommand.d.ts +2 -2
  18. package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +2 -2
  19. package/dist-types/commands/DescribeTagsCommand.d.ts +2 -2
  20. package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +3 -3
  22. package/dist-types/commands/DescribeTargetHealthCommand.d.ts +3 -3
  23. package/dist-types/commands/ModifyListenerCommand.d.ts +16 -16
  24. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +3 -3
  25. package/dist-types/commands/ModifyRuleCommand.d.ts +25 -27
  26. package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +3 -3
  27. package/dist-types/commands/ModifyTargetGroupCommand.d.ts +2 -2
  28. package/dist-types/commands/RegisterTargetsCommand.d.ts +3 -3
  29. package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +3 -3
  30. package/dist-types/commands/RemoveTagsCommand.d.ts +3 -3
  31. package/dist-types/commands/SetIpAddressTypeCommand.d.ts +1 -1
  32. package/dist-types/commands/SetRulePrioritiesCommand.d.ts +3 -3
  33. package/dist-types/commands/SetSecurityGroupsCommand.d.ts +2 -2
  34. package/dist-types/commands/SetSubnetsCommand.d.ts +4 -4
  35. package/package.json +3 -3
@@ -32,10 +32,10 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi
32
32
  * import { ElasticLoadBalancingV2Client, AddListenerCertificatesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
33
33
  * // const { ElasticLoadBalancingV2Client, AddListenerCertificatesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
34
34
  * const client = new ElasticLoadBalancingV2Client(config);
35
- * const input = {
35
+ * const input = { // AddListenerCertificatesInput
36
36
  * ListenerArn: "STRING_VALUE", // required
37
- * Certificates: [ // required
38
- * {
37
+ * Certificates: [ // CertificateList // required
38
+ * { // Certificate
39
39
  * CertificateArn: "STRING_VALUE",
40
40
  * IsDefault: true || false,
41
41
  * },
@@ -30,12 +30,12 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
30
30
  * import { ElasticLoadBalancingV2Client, AddTagsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
31
31
  * // const { ElasticLoadBalancingV2Client, AddTagsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
32
32
  * const client = new ElasticLoadBalancingV2Client(config);
33
- * const input = {
34
- * ResourceArns: [ // required
33
+ * const input = { // AddTagsInput
34
+ * ResourceArns: [ // ResourceArns // required
35
35
  * "STRING_VALUE",
36
36
  * ],
37
- * Tags: [ // required
38
- * {
37
+ * Tags: [ // TagList // required
38
+ * { // Tag
39
39
  * Key: "STRING_VALUE", // required
40
40
  * Value: "STRING_VALUE",
41
41
  * },
@@ -50,22 +50,22 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
50
50
  * import { ElasticLoadBalancingV2Client, CreateListenerCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
51
51
  * // const { ElasticLoadBalancingV2Client, CreateListenerCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
52
52
  * const client = new ElasticLoadBalancingV2Client(config);
53
- * const input = {
53
+ * const input = { // CreateListenerInput
54
54
  * LoadBalancerArn: "STRING_VALUE", // required
55
55
  * Protocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
56
56
  * Port: Number("int"),
57
57
  * SslPolicy: "STRING_VALUE",
58
- * Certificates: [
59
- * {
58
+ * Certificates: [ // CertificateList
59
+ * { // Certificate
60
60
  * CertificateArn: "STRING_VALUE",
61
61
  * IsDefault: true || false,
62
62
  * },
63
63
  * ],
64
- * DefaultActions: [ // required
65
- * {
64
+ * DefaultActions: [ // Actions // required
65
+ * { // Action
66
66
  * Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
67
67
  * TargetGroupArn: "STRING_VALUE",
68
- * AuthenticateOidcConfig: {
68
+ * AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
69
69
  * Issuer: "STRING_VALUE", // required
70
70
  * AuthorizationEndpoint: "STRING_VALUE", // required
71
71
  * TokenEndpoint: "STRING_VALUE", // required
@@ -75,26 +75,26 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
75
75
  * SessionCookieName: "STRING_VALUE",
76
76
  * Scope: "STRING_VALUE",
77
77
  * SessionTimeout: Number("long"),
78
- * AuthenticationRequestExtraParams: {
78
+ * AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
79
79
  * "<keys>": "STRING_VALUE",
80
80
  * },
81
81
  * OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
82
82
  * UseExistingClientSecret: true || false,
83
83
  * },
84
- * AuthenticateCognitoConfig: {
84
+ * AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
85
85
  * UserPoolArn: "STRING_VALUE", // required
86
86
  * UserPoolClientId: "STRING_VALUE", // required
87
87
  * UserPoolDomain: "STRING_VALUE", // required
88
88
  * SessionCookieName: "STRING_VALUE",
89
89
  * Scope: "STRING_VALUE",
90
90
  * SessionTimeout: Number("long"),
91
- * AuthenticationRequestExtraParams: {
91
+ * AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
92
92
  * "<keys>": "STRING_VALUE",
93
93
  * },
94
94
  * OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
95
95
  * },
96
96
  * Order: Number("int"),
97
- * RedirectConfig: {
97
+ * RedirectConfig: { // RedirectActionConfig
98
98
  * Protocol: "STRING_VALUE",
99
99
  * Port: "STRING_VALUE",
100
100
  * Host: "STRING_VALUE",
@@ -102,30 +102,30 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
102
102
  * Query: "STRING_VALUE",
103
103
  * StatusCode: "HTTP_301" || "HTTP_302", // required
104
104
  * },
105
- * FixedResponseConfig: {
105
+ * FixedResponseConfig: { // FixedResponseActionConfig
106
106
  * MessageBody: "STRING_VALUE",
107
107
  * StatusCode: "STRING_VALUE", // required
108
108
  * ContentType: "STRING_VALUE",
109
109
  * },
110
- * ForwardConfig: {
111
- * TargetGroups: [
112
- * {
110
+ * ForwardConfig: { // ForwardActionConfig
111
+ * TargetGroups: [ // TargetGroupList
112
+ * { // TargetGroupTuple
113
113
  * TargetGroupArn: "STRING_VALUE",
114
114
  * Weight: Number("int"),
115
115
  * },
116
116
  * ],
117
- * TargetGroupStickinessConfig: {
117
+ * TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
118
118
  * Enabled: true || false,
119
119
  * DurationSeconds: Number("int"),
120
120
  * },
121
121
  * },
122
122
  * },
123
123
  * ],
124
- * AlpnPolicy: [
124
+ * AlpnPolicy: [ // AlpnPolicyName
125
125
  * "STRING_VALUE",
126
126
  * ],
127
- * Tags: [
128
- * {
127
+ * Tags: [ // TagList
128
+ * { // Tag
129
129
  * Key: "STRING_VALUE", // required
130
130
  * Value: "STRING_VALUE",
131
131
  * },
@@ -49,25 +49,25 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu
49
49
  * import { ElasticLoadBalancingV2Client, CreateLoadBalancerCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
50
50
  * // const { ElasticLoadBalancingV2Client, CreateLoadBalancerCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
51
51
  * const client = new ElasticLoadBalancingV2Client(config);
52
- * const input = {
52
+ * const input = { // CreateLoadBalancerInput
53
53
  * Name: "STRING_VALUE", // required
54
- * Subnets: [
54
+ * Subnets: [ // Subnets
55
55
  * "STRING_VALUE",
56
56
  * ],
57
- * SubnetMappings: [
58
- * {
57
+ * SubnetMappings: [ // SubnetMappings
58
+ * { // SubnetMapping
59
59
  * SubnetId: "STRING_VALUE",
60
60
  * AllocationId: "STRING_VALUE",
61
61
  * PrivateIPv4Address: "STRING_VALUE",
62
62
  * IPv6Address: "STRING_VALUE",
63
63
  * },
64
64
  * ],
65
- * SecurityGroups: [
65
+ * SecurityGroups: [ // SecurityGroups
66
66
  * "STRING_VALUE",
67
67
  * ],
68
68
  * Scheme: "internet-facing" || "internal",
69
- * Tags: [
70
- * {
69
+ * Tags: [ // TagList
70
+ * { // Tag
71
71
  * Key: "STRING_VALUE", // required
72
72
  * Value: "STRING_VALUE",
73
73
  * },
@@ -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
  * },
@@ -35,10 +35,10 @@ export interface RegisterTargetsCommandOutput extends RegisterTargetsOutput, __M
35
35
  * import { ElasticLoadBalancingV2Client, RegisterTargetsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
36
36
  * // const { ElasticLoadBalancingV2Client, RegisterTargetsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
37
37
  * const client = new ElasticLoadBalancingV2Client(config);
38
- * const input = {
38
+ * const input = { // RegisterTargetsInput
39
39
  * TargetGroupArn: "STRING_VALUE", // required
40
- * Targets: [ // required
41
- * {
40
+ * Targets: [ // TargetDescriptions // required
41
+ * { // TargetDescription
42
42
  * Id: "STRING_VALUE", // required
43
43
  * Port: Number("int"),
44
44
  * AvailabilityZone: "STRING_VALUE",
@@ -27,10 +27,10 @@ export interface RemoveListenerCertificatesCommandOutput extends RemoveListenerC
27
27
  * import { ElasticLoadBalancingV2Client, RemoveListenerCertificatesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
28
28
  * // const { ElasticLoadBalancingV2Client, RemoveListenerCertificatesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
29
29
  * const client = new ElasticLoadBalancingV2Client(config);
30
- * const input = {
30
+ * const input = { // RemoveListenerCertificatesInput
31
31
  * ListenerArn: "STRING_VALUE", // required
32
- * Certificates: [ // required
33
- * {
32
+ * Certificates: [ // CertificateList // required
33
+ * { // Certificate
34
34
  * CertificateArn: "STRING_VALUE",
35
35
  * IsDefault: true || false,
36
36
  * },
@@ -28,11 +28,11 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
28
28
  * import { ElasticLoadBalancingV2Client, RemoveTagsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
29
29
  * // const { ElasticLoadBalancingV2Client, RemoveTagsCommand } = 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 = { // RemoveTagsInput
32
+ * ResourceArns: [ // ResourceArns // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
- * TagKeys: [ // required
35
+ * TagKeys: [ // TagKeys // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * };
@@ -26,7 +26,7 @@ export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeOutput, _
26
26
  * import { ElasticLoadBalancingV2Client, SetIpAddressTypeCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
27
27
  * // const { ElasticLoadBalancingV2Client, SetIpAddressTypeCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
28
28
  * const client = new ElasticLoadBalancingV2Client(config);
29
- * const input = {
29
+ * const input = { // SetIpAddressTypeInput
30
30
  * LoadBalancerArn: "STRING_VALUE", // required
31
31
  * IpAddressType: "ipv4" || "dualstack", // required
32
32
  * };
@@ -28,9 +28,9 @@ export interface SetRulePrioritiesCommandOutput extends SetRulePrioritiesOutput,
28
28
  * import { ElasticLoadBalancingV2Client, SetRulePrioritiesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
29
29
  * // const { ElasticLoadBalancingV2Client, SetRulePrioritiesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
30
30
  * const client = new ElasticLoadBalancingV2Client(config);
31
- * const input = {
32
- * RulePriorities: [ // required
33
- * {
31
+ * const input = { // SetRulePrioritiesInput
32
+ * RulePriorities: [ // RulePriorityList // required
33
+ * { // RulePriorityPair
34
34
  * RuleArn: "STRING_VALUE",
35
35
  * Priority: Number("int"),
36
36
  * },
@@ -29,9 +29,9 @@ export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput,
29
29
  * import { ElasticLoadBalancingV2Client, SetSecurityGroupsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
30
30
  * // const { ElasticLoadBalancingV2Client, SetSecurityGroupsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
31
31
  * const client = new ElasticLoadBalancingV2Client(config);
32
- * const input = {
32
+ * const input = { // SetSecurityGroupsInput
33
33
  * LoadBalancerArn: "STRING_VALUE", // required
34
- * SecurityGroups: [ // required
34
+ * SecurityGroups: [ // SecurityGroups // required
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * };
@@ -31,13 +31,13 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
31
31
  * import { ElasticLoadBalancingV2Client, SetSubnetsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
32
32
  * // const { ElasticLoadBalancingV2Client, SetSubnetsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
33
33
  * const client = new ElasticLoadBalancingV2Client(config);
34
- * const input = {
34
+ * const input = { // SetSubnetsInput
35
35
  * LoadBalancerArn: "STRING_VALUE", // required
36
- * Subnets: [
36
+ * Subnets: [ // Subnets
37
37
  * "STRING_VALUE",
38
38
  * ],
39
- * SubnetMappings: [
40
- * {
39
+ * SubnetMappings: [ // SubnetMappings
40
+ * { // SubnetMapping
41
41
  * SubnetId: "STRING_VALUE",
42
42
  * AllocationId: "STRING_VALUE",
43
43
  * PrivateIPv4Address: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing-v2",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",