@aws-sdk/client-elastic-load-balancing-v2 3.637.0 → 3.644.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.
@@ -15,6 +15,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
15
15
  import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./commands/DeleteTrustStoreCommand";
16
16
  import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "./commands/DeregisterTargetsCommand";
17
17
  import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
18
+ import { DescribeListenerAttributesCommandInput, DescribeListenerAttributesCommandOutput } from "./commands/DescribeListenerAttributesCommand";
18
19
  import { DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput } from "./commands/DescribeListenerCertificatesCommand";
19
20
  import { DescribeListenersCommandInput, DescribeListenersCommandOutput } from "./commands/DescribeListenersCommand";
20
21
  import { DescribeLoadBalancerAttributesCommandInput, DescribeLoadBalancerAttributesCommandOutput } from "./commands/DescribeLoadBalancerAttributesCommand";
@@ -31,6 +32,7 @@ import { DescribeTrustStoresCommandInput, DescribeTrustStoresCommandOutput } fro
31
32
  import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
32
33
  import { GetTrustStoreCaCertificatesBundleCommandInput, GetTrustStoreCaCertificatesBundleCommandOutput } from "./commands/GetTrustStoreCaCertificatesBundleCommand";
33
34
  import { GetTrustStoreRevocationContentCommandInput, GetTrustStoreRevocationContentCommandOutput } from "./commands/GetTrustStoreRevocationContentCommand";
35
+ import { ModifyListenerAttributesCommandInput, ModifyListenerAttributesCommandOutput } from "./commands/ModifyListenerAttributesCommand";
34
36
  import { ModifyListenerCommandInput, ModifyListenerCommandOutput } from "./commands/ModifyListenerCommand";
35
37
  import { ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput } from "./commands/ModifyLoadBalancerAttributesCommand";
36
38
  import { ModifyRuleCommandInput, ModifyRuleCommandOutput } from "./commands/ModifyRuleCommand";
@@ -144,6 +146,12 @@ export interface ElasticLoadBalancingV2 {
144
146
  describeAccountLimits(args: DescribeAccountLimitsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountLimitsCommandOutput>;
145
147
  describeAccountLimits(args: DescribeAccountLimitsCommandInput, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
146
148
  describeAccountLimits(args: DescribeAccountLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
149
+ /**
150
+ * @see {@link DescribeListenerAttributesCommand}
151
+ */
152
+ describeListenerAttributes(args: DescribeListenerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeListenerAttributesCommandOutput>;
153
+ describeListenerAttributes(args: DescribeListenerAttributesCommandInput, cb: (err: any, data?: DescribeListenerAttributesCommandOutput) => void): void;
154
+ describeListenerAttributes(args: DescribeListenerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeListenerAttributesCommandOutput) => void): void;
147
155
  /**
148
156
  * @see {@link DescribeListenerCertificatesCommand}
149
157
  */
@@ -252,6 +260,12 @@ export interface ElasticLoadBalancingV2 {
252
260
  modifyListener(args: ModifyListenerCommandInput, options?: __HttpHandlerOptions): Promise<ModifyListenerCommandOutput>;
253
261
  modifyListener(args: ModifyListenerCommandInput, cb: (err: any, data?: ModifyListenerCommandOutput) => void): void;
254
262
  modifyListener(args: ModifyListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyListenerCommandOutput) => void): void;
263
+ /**
264
+ * @see {@link ModifyListenerAttributesCommand}
265
+ */
266
+ modifyListenerAttributes(args: ModifyListenerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyListenerAttributesCommandOutput>;
267
+ modifyListenerAttributes(args: ModifyListenerAttributesCommandInput, cb: (err: any, data?: ModifyListenerAttributesCommandOutput) => void): void;
268
+ modifyListenerAttributes(args: ModifyListenerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyListenerAttributesCommandOutput) => void): void;
255
269
  /**
256
270
  * @see {@link ModifyLoadBalancerAttributesCommand}
257
271
  */
@@ -23,6 +23,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
23
23
  import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./commands/DeleteTrustStoreCommand";
24
24
  import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "./commands/DeregisterTargetsCommand";
25
25
  import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
26
+ import { DescribeListenerAttributesCommandInput, DescribeListenerAttributesCommandOutput } from "./commands/DescribeListenerAttributesCommand";
26
27
  import { DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput } from "./commands/DescribeListenerCertificatesCommand";
27
28
  import { DescribeListenersCommandInput, DescribeListenersCommandOutput } from "./commands/DescribeListenersCommand";
28
29
  import { DescribeLoadBalancerAttributesCommandInput, DescribeLoadBalancerAttributesCommandOutput } from "./commands/DescribeLoadBalancerAttributesCommand";
@@ -39,6 +40,7 @@ import { DescribeTrustStoresCommandInput, DescribeTrustStoresCommandOutput } fro
39
40
  import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
40
41
  import { GetTrustStoreCaCertificatesBundleCommandInput, GetTrustStoreCaCertificatesBundleCommandOutput } from "./commands/GetTrustStoreCaCertificatesBundleCommand";
41
42
  import { GetTrustStoreRevocationContentCommandInput, GetTrustStoreRevocationContentCommandOutput } from "./commands/GetTrustStoreRevocationContentCommand";
43
+ import { ModifyListenerAttributesCommandInput, ModifyListenerAttributesCommandOutput } from "./commands/ModifyListenerAttributesCommand";
42
44
  import { ModifyListenerCommandInput, ModifyListenerCommandOutput } from "./commands/ModifyListenerCommand";
43
45
  import { ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput } from "./commands/ModifyLoadBalancerAttributesCommand";
44
46
  import { ModifyRuleCommandInput, ModifyRuleCommandOutput } from "./commands/ModifyRuleCommand";
@@ -59,11 +61,11 @@ export { __Client };
59
61
  /**
60
62
  * @public
61
63
  */
62
- export type ServiceInputTypes = AddListenerCertificatesCommandInput | AddTagsCommandInput | AddTrustStoreRevocationsCommandInput | CreateListenerCommandInput | CreateLoadBalancerCommandInput | CreateRuleCommandInput | CreateTargetGroupCommandInput | CreateTrustStoreCommandInput | DeleteListenerCommandInput | DeleteLoadBalancerCommandInput | DeleteRuleCommandInput | DeleteSharedTrustStoreAssociationCommandInput | DeleteTargetGroupCommandInput | DeleteTrustStoreCommandInput | DeregisterTargetsCommandInput | DescribeAccountLimitsCommandInput | DescribeListenerCertificatesCommandInput | DescribeListenersCommandInput | DescribeLoadBalancerAttributesCommandInput | DescribeLoadBalancersCommandInput | DescribeRulesCommandInput | DescribeSSLPoliciesCommandInput | DescribeTagsCommandInput | DescribeTargetGroupAttributesCommandInput | DescribeTargetGroupsCommandInput | DescribeTargetHealthCommandInput | DescribeTrustStoreAssociationsCommandInput | DescribeTrustStoreRevocationsCommandInput | DescribeTrustStoresCommandInput | GetResourcePolicyCommandInput | GetTrustStoreCaCertificatesBundleCommandInput | GetTrustStoreRevocationContentCommandInput | ModifyListenerCommandInput | ModifyLoadBalancerAttributesCommandInput | ModifyRuleCommandInput | ModifyTargetGroupAttributesCommandInput | ModifyTargetGroupCommandInput | ModifyTrustStoreCommandInput | RegisterTargetsCommandInput | RemoveListenerCertificatesCommandInput | RemoveTagsCommandInput | RemoveTrustStoreRevocationsCommandInput | SetIpAddressTypeCommandInput | SetRulePrioritiesCommandInput | SetSecurityGroupsCommandInput | SetSubnetsCommandInput;
64
+ export type ServiceInputTypes = AddListenerCertificatesCommandInput | AddTagsCommandInput | AddTrustStoreRevocationsCommandInput | CreateListenerCommandInput | CreateLoadBalancerCommandInput | CreateRuleCommandInput | CreateTargetGroupCommandInput | CreateTrustStoreCommandInput | DeleteListenerCommandInput | DeleteLoadBalancerCommandInput | DeleteRuleCommandInput | DeleteSharedTrustStoreAssociationCommandInput | DeleteTargetGroupCommandInput | DeleteTrustStoreCommandInput | DeregisterTargetsCommandInput | DescribeAccountLimitsCommandInput | DescribeListenerAttributesCommandInput | DescribeListenerCertificatesCommandInput | DescribeListenersCommandInput | DescribeLoadBalancerAttributesCommandInput | DescribeLoadBalancersCommandInput | DescribeRulesCommandInput | DescribeSSLPoliciesCommandInput | DescribeTagsCommandInput | DescribeTargetGroupAttributesCommandInput | DescribeTargetGroupsCommandInput | DescribeTargetHealthCommandInput | DescribeTrustStoreAssociationsCommandInput | DescribeTrustStoreRevocationsCommandInput | DescribeTrustStoresCommandInput | GetResourcePolicyCommandInput | GetTrustStoreCaCertificatesBundleCommandInput | GetTrustStoreRevocationContentCommandInput | ModifyListenerAttributesCommandInput | ModifyListenerCommandInput | ModifyLoadBalancerAttributesCommandInput | ModifyRuleCommandInput | ModifyTargetGroupAttributesCommandInput | ModifyTargetGroupCommandInput | ModifyTrustStoreCommandInput | RegisterTargetsCommandInput | RemoveListenerCertificatesCommandInput | RemoveTagsCommandInput | RemoveTrustStoreRevocationsCommandInput | SetIpAddressTypeCommandInput | SetRulePrioritiesCommandInput | SetSecurityGroupsCommandInput | SetSubnetsCommandInput;
63
65
  /**
64
66
  * @public
65
67
  */
66
- export type ServiceOutputTypes = AddListenerCertificatesCommandOutput | AddTagsCommandOutput | AddTrustStoreRevocationsCommandOutput | CreateListenerCommandOutput | CreateLoadBalancerCommandOutput | CreateRuleCommandOutput | CreateTargetGroupCommandOutput | CreateTrustStoreCommandOutput | DeleteListenerCommandOutput | DeleteLoadBalancerCommandOutput | DeleteRuleCommandOutput | DeleteSharedTrustStoreAssociationCommandOutput | DeleteTargetGroupCommandOutput | DeleteTrustStoreCommandOutput | DeregisterTargetsCommandOutput | DescribeAccountLimitsCommandOutput | DescribeListenerCertificatesCommandOutput | DescribeListenersCommandOutput | DescribeLoadBalancerAttributesCommandOutput | DescribeLoadBalancersCommandOutput | DescribeRulesCommandOutput | DescribeSSLPoliciesCommandOutput | DescribeTagsCommandOutput | DescribeTargetGroupAttributesCommandOutput | DescribeTargetGroupsCommandOutput | DescribeTargetHealthCommandOutput | DescribeTrustStoreAssociationsCommandOutput | DescribeTrustStoreRevocationsCommandOutput | DescribeTrustStoresCommandOutput | GetResourcePolicyCommandOutput | GetTrustStoreCaCertificatesBundleCommandOutput | GetTrustStoreRevocationContentCommandOutput | ModifyListenerCommandOutput | ModifyLoadBalancerAttributesCommandOutput | ModifyRuleCommandOutput | ModifyTargetGroupAttributesCommandOutput | ModifyTargetGroupCommandOutput | ModifyTrustStoreCommandOutput | RegisterTargetsCommandOutput | RemoveListenerCertificatesCommandOutput | RemoveTagsCommandOutput | RemoveTrustStoreRevocationsCommandOutput | SetIpAddressTypeCommandOutput | SetRulePrioritiesCommandOutput | SetSecurityGroupsCommandOutput | SetSubnetsCommandOutput;
68
+ export type ServiceOutputTypes = AddListenerCertificatesCommandOutput | AddTagsCommandOutput | AddTrustStoreRevocationsCommandOutput | CreateListenerCommandOutput | CreateLoadBalancerCommandOutput | CreateRuleCommandOutput | CreateTargetGroupCommandOutput | CreateTrustStoreCommandOutput | DeleteListenerCommandOutput | DeleteLoadBalancerCommandOutput | DeleteRuleCommandOutput | DeleteSharedTrustStoreAssociationCommandOutput | DeleteTargetGroupCommandOutput | DeleteTrustStoreCommandOutput | DeregisterTargetsCommandOutput | DescribeAccountLimitsCommandOutput | DescribeListenerAttributesCommandOutput | DescribeListenerCertificatesCommandOutput | DescribeListenersCommandOutput | DescribeLoadBalancerAttributesCommandOutput | DescribeLoadBalancersCommandOutput | DescribeRulesCommandOutput | DescribeSSLPoliciesCommandOutput | DescribeTagsCommandOutput | DescribeTargetGroupAttributesCommandOutput | DescribeTargetGroupsCommandOutput | DescribeTargetHealthCommandOutput | DescribeTrustStoreAssociationsCommandOutput | DescribeTrustStoreRevocationsCommandOutput | DescribeTrustStoresCommandOutput | GetResourcePolicyCommandOutput | GetTrustStoreCaCertificatesBundleCommandOutput | GetTrustStoreRevocationContentCommandOutput | ModifyListenerAttributesCommandOutput | ModifyListenerCommandOutput | ModifyLoadBalancerAttributesCommandOutput | ModifyRuleCommandOutput | ModifyTargetGroupAttributesCommandOutput | ModifyTargetGroupCommandOutput | ModifyTrustStoreCommandOutput | RegisterTargetsCommandOutput | RemoveListenerCertificatesCommandOutput | RemoveTagsCommandOutput | RemoveTrustStoreRevocationsCommandOutput | SetIpAddressTypeCommandOutput | SetRulePrioritiesCommandOutput | SetSecurityGroupsCommandOutput | SetSubnetsCommandOutput;
67
69
  /**
68
70
  * @public
69
71
  */
@@ -0,0 +1,68 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
4
+ import { DescribeListenerAttributesInput, DescribeListenerAttributesOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeListenerAttributesCommand}.
14
+ */
15
+ export interface DescribeListenerAttributesCommandInput extends DescribeListenerAttributesInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeListenerAttributesCommand}.
21
+ */
22
+ export interface DescribeListenerAttributesCommandOutput extends DescribeListenerAttributesOutput, __MetadataBearer {
23
+ }
24
+ declare const DescribeListenerAttributesCommand_base: {
25
+ new (input: DescribeListenerAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeListenerAttributesCommandInput, DescribeListenerAttributesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DescribeListenerAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeListenerAttributesCommandInput, DescribeListenerAttributesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Describes the attributes for the specified listener.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { ElasticLoadBalancingV2Client, DescribeListenerAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
35
+ * // const { ElasticLoadBalancingV2Client, DescribeListenerAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
36
+ * const client = new ElasticLoadBalancingV2Client(config);
37
+ * const input = { // DescribeListenerAttributesInput
38
+ * ListenerArn: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DescribeListenerAttributesCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // DescribeListenerAttributesOutput
43
+ * // Attributes: [ // ListenerAttributes
44
+ * // { // ListenerAttribute
45
+ * // Key: "STRING_VALUE",
46
+ * // Value: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // };
50
+ *
51
+ * ```
52
+ *
53
+ * @param DescribeListenerAttributesCommandInput - {@link DescribeListenerAttributesCommandInput}
54
+ * @returns {@link DescribeListenerAttributesCommandOutput}
55
+ * @see {@link DescribeListenerAttributesCommandInput} for command's `input` shape.
56
+ * @see {@link DescribeListenerAttributesCommandOutput} for command's `response` shape.
57
+ * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
58
+ *
59
+ * @throws {@link ListenerNotFoundException} (client fault)
60
+ * <p>The specified listener does not exist.</p>
61
+ *
62
+ * @throws {@link ElasticLoadBalancingV2ServiceException}
63
+ * <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
64
+ *
65
+ * @public
66
+ */
67
+ export declare class DescribeListenerAttributesCommand extends DescribeListenerAttributesCommand_base {
68
+ }
@@ -0,0 +1,77 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
4
+ import { ModifyListenerAttributesInput, ModifyListenerAttributesOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ModifyListenerAttributesCommand}.
14
+ */
15
+ export interface ModifyListenerAttributesCommandInput extends ModifyListenerAttributesInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ModifyListenerAttributesCommand}.
21
+ */
22
+ export interface ModifyListenerAttributesCommandOutput extends ModifyListenerAttributesOutput, __MetadataBearer {
23
+ }
24
+ declare const ModifyListenerAttributesCommand_base: {
25
+ new (input: ModifyListenerAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyListenerAttributesCommandInput, ModifyListenerAttributesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ModifyListenerAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyListenerAttributesCommandInput, ModifyListenerAttributesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Modifies the specified attributes of the specified listener.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { ElasticLoadBalancingV2Client, ModifyListenerAttributesCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
35
+ * // const { ElasticLoadBalancingV2Client, ModifyListenerAttributesCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
36
+ * const client = new ElasticLoadBalancingV2Client(config);
37
+ * const input = { // ModifyListenerAttributesInput
38
+ * ListenerArn: "STRING_VALUE", // required
39
+ * Attributes: [ // ListenerAttributes // required
40
+ * { // ListenerAttribute
41
+ * Key: "STRING_VALUE",
42
+ * Value: "STRING_VALUE",
43
+ * },
44
+ * ],
45
+ * };
46
+ * const command = new ModifyListenerAttributesCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // ModifyListenerAttributesOutput
49
+ * // Attributes: [ // ListenerAttributes
50
+ * // { // ListenerAttribute
51
+ * // Key: "STRING_VALUE",
52
+ * // Value: "STRING_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // };
56
+ *
57
+ * ```
58
+ *
59
+ * @param ModifyListenerAttributesCommandInput - {@link ModifyListenerAttributesCommandInput}
60
+ * @returns {@link ModifyListenerAttributesCommandOutput}
61
+ * @see {@link ModifyListenerAttributesCommandInput} for command's `input` shape.
62
+ * @see {@link ModifyListenerAttributesCommandOutput} for command's `response` shape.
63
+ * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
64
+ *
65
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
66
+ * <p>The requested configuration is not valid.</p>
67
+ *
68
+ * @throws {@link ListenerNotFoundException} (client fault)
69
+ * <p>The specified listener does not exist.</p>
70
+ *
71
+ * @throws {@link ElasticLoadBalancingV2ServiceException}
72
+ * <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
73
+ *
74
+ * @public
75
+ */
76
+ export declare class ModifyListenerAttributesCommand extends ModifyListenerAttributesCommand_base {
77
+ }
@@ -14,6 +14,7 @@ export * from "./DeleteTargetGroupCommand";
14
14
  export * from "./DeleteTrustStoreCommand";
15
15
  export * from "./DeregisterTargetsCommand";
16
16
  export * from "./DescribeAccountLimitsCommand";
17
+ export * from "./DescribeListenerAttributesCommand";
17
18
  export * from "./DescribeListenerCertificatesCommand";
18
19
  export * from "./DescribeListenersCommand";
19
20
  export * from "./DescribeLoadBalancerAttributesCommand";
@@ -30,6 +31,7 @@ export * from "./DescribeTrustStoresCommand";
30
31
  export * from "./GetResourcePolicyCommand";
31
32
  export * from "./GetTrustStoreCaCertificatesBundleCommand";
32
33
  export * from "./GetTrustStoreRevocationContentCommand";
34
+ export * from "./ModifyListenerAttributesCommand";
33
35
  export * from "./ModifyListenerCommand";
34
36
  export * from "./ModifyLoadBalancerAttributesCommand";
35
37
  export * from "./ModifyRuleCommand";
@@ -2870,6 +2870,50 @@ export interface DescribeAccountLimitsOutput {
2870
2870
  */
2871
2871
  NextMarker?: string;
2872
2872
  }
2873
+ /**
2874
+ * @public
2875
+ */
2876
+ export interface DescribeListenerAttributesInput {
2877
+ /**
2878
+ * <p>The Amazon Resource Name (ARN) of the listener.</p>
2879
+ * @public
2880
+ */
2881
+ ListenerArn: string | undefined;
2882
+ }
2883
+ /**
2884
+ * <p>Information about a listener attribute.</p>
2885
+ * @public
2886
+ */
2887
+ export interface ListenerAttribute {
2888
+ /**
2889
+ * <p>The name of the attribute.</p>
2890
+ * <p>The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.</p>
2891
+ * <ul>
2892
+ * <li>
2893
+ * <p>
2894
+ * <code>tcp.idle_timeout.seconds</code> - The tcp idle timeout value, in seconds. The
2895
+ * valid range is 60-6000 seconds. The default is 350 seconds.</p>
2896
+ * </li>
2897
+ * </ul>
2898
+ * @public
2899
+ */
2900
+ Key?: string;
2901
+ /**
2902
+ * <p>The value of the attribute.</p>
2903
+ * @public
2904
+ */
2905
+ Value?: string;
2906
+ }
2907
+ /**
2908
+ * @public
2909
+ */
2910
+ export interface DescribeListenerAttributesOutput {
2911
+ /**
2912
+ * <p>Information about the listener attributes.</p>
2913
+ * @public
2914
+ */
2915
+ Attributes?: ListenerAttribute[];
2916
+ }
2873
2917
  /**
2874
2918
  * @public
2875
2919
  */
@@ -4192,6 +4236,31 @@ export interface ModifyListenerOutput {
4192
4236
  */
4193
4237
  Listeners?: Listener[];
4194
4238
  }
4239
+ /**
4240
+ * @public
4241
+ */
4242
+ export interface ModifyListenerAttributesInput {
4243
+ /**
4244
+ * <p>The Amazon Resource Name (ARN) of the listener.</p>
4245
+ * @public
4246
+ */
4247
+ ListenerArn: string | undefined;
4248
+ /**
4249
+ * <p>The listener attributes.</p>
4250
+ * @public
4251
+ */
4252
+ Attributes: ListenerAttribute[] | undefined;
4253
+ }
4254
+ /**
4255
+ * @public
4256
+ */
4257
+ export interface ModifyListenerAttributesOutput {
4258
+ /**
4259
+ * <p>Information about the listener attributes.</p>
4260
+ * @public
4261
+ */
4262
+ Attributes?: ListenerAttribute[];
4263
+ }
4195
4264
  /**
4196
4265
  * @public
4197
4266
  */
@@ -4336,7 +4405,7 @@ export interface ModifyTargetGroupAttributesInput {
4336
4405
  */
4337
4406
  TargetGroupArn: string | undefined;
4338
4407
  /**
4339
- * <p>The attributes.</p>
4408
+ * <p>The target group attributes.</p>
4340
4409
  * @public
4341
4410
  */
4342
4411
  Attributes: TargetGroupAttribute[] | undefined;
@@ -4346,7 +4415,7 @@ export interface ModifyTargetGroupAttributesInput {
4346
4415
  */
4347
4416
  export interface ModifyTargetGroupAttributesOutput {
4348
4417
  /**
4349
- * <p>Information about the attributes.</p>
4418
+ * <p>Information about the target group attributes.</p>
4350
4419
  * @public
4351
4420
  */
4352
4421
  Attributes?: TargetGroupAttribute[];
@@ -16,6 +16,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
16
16
  import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "../commands/DeleteTrustStoreCommand";
17
17
  import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "../commands/DeregisterTargetsCommand";
18
18
  import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "../commands/DescribeAccountLimitsCommand";
19
+ import { DescribeListenerAttributesCommandInput, DescribeListenerAttributesCommandOutput } from "../commands/DescribeListenerAttributesCommand";
19
20
  import { DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput } from "../commands/DescribeListenerCertificatesCommand";
20
21
  import { DescribeListenersCommandInput, DescribeListenersCommandOutput } from "../commands/DescribeListenersCommand";
21
22
  import { DescribeLoadBalancerAttributesCommandInput, DescribeLoadBalancerAttributesCommandOutput } from "../commands/DescribeLoadBalancerAttributesCommand";
@@ -32,6 +33,7 @@ import { DescribeTrustStoresCommandInput, DescribeTrustStoresCommandOutput } fro
32
33
  import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
33
34
  import { GetTrustStoreCaCertificatesBundleCommandInput, GetTrustStoreCaCertificatesBundleCommandOutput } from "../commands/GetTrustStoreCaCertificatesBundleCommand";
34
35
  import { GetTrustStoreRevocationContentCommandInput, GetTrustStoreRevocationContentCommandOutput } from "../commands/GetTrustStoreRevocationContentCommand";
36
+ import { ModifyListenerAttributesCommandInput, ModifyListenerAttributesCommandOutput } from "../commands/ModifyListenerAttributesCommand";
35
37
  import { ModifyListenerCommandInput, ModifyListenerCommandOutput } from "../commands/ModifyListenerCommand";
36
38
  import { ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput } from "../commands/ModifyLoadBalancerAttributesCommand";
37
39
  import { ModifyRuleCommandInput, ModifyRuleCommandOutput } from "../commands/ModifyRuleCommand";
@@ -110,6 +112,10 @@ export declare const se_DeregisterTargetsCommand: (input: DeregisterTargetsComma
110
112
  * serializeAws_queryDescribeAccountLimitsCommand
111
113
  */
112
114
  export declare const se_DescribeAccountLimitsCommand: (input: DescribeAccountLimitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
+ /**
116
+ * serializeAws_queryDescribeListenerAttributesCommand
117
+ */
118
+ export declare const se_DescribeListenerAttributesCommand: (input: DescribeListenerAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
119
  /**
114
120
  * serializeAws_queryDescribeListenerCertificatesCommand
115
121
  */
@@ -178,6 +184,10 @@ export declare const se_GetTrustStoreRevocationContentCommand: (input: GetTrustS
178
184
  * serializeAws_queryModifyListenerCommand
179
185
  */
180
186
  export declare const se_ModifyListenerCommand: (input: ModifyListenerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
187
+ /**
188
+ * serializeAws_queryModifyListenerAttributesCommand
189
+ */
190
+ export declare const se_ModifyListenerAttributesCommand: (input: ModifyListenerAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
181
191
  /**
182
192
  * serializeAws_queryModifyLoadBalancerAttributesCommand
183
193
  */
@@ -294,6 +304,10 @@ export declare const de_DeregisterTargetsCommand: (output: __HttpResponse, conte
294
304
  * deserializeAws_queryDescribeAccountLimitsCommand
295
305
  */
296
306
  export declare const de_DescribeAccountLimitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountLimitsCommandOutput>;
307
+ /**
308
+ * deserializeAws_queryDescribeListenerAttributesCommand
309
+ */
310
+ export declare const de_DescribeListenerAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeListenerAttributesCommandOutput>;
297
311
  /**
298
312
  * deserializeAws_queryDescribeListenerCertificatesCommand
299
313
  */
@@ -362,6 +376,10 @@ export declare const de_GetTrustStoreRevocationContentCommand: (output: __HttpRe
362
376
  * deserializeAws_queryModifyListenerCommand
363
377
  */
364
378
  export declare const de_ModifyListenerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyListenerCommandOutput>;
379
+ /**
380
+ * deserializeAws_queryModifyListenerAttributesCommand
381
+ */
382
+ export declare const de_ModifyListenerAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyListenerAttributesCommandOutput>;
365
383
  /**
366
384
  * deserializeAws_queryModifyLoadBalancerAttributesCommand
367
385
  */
@@ -63,6 +63,10 @@ import {
63
63
  DescribeAccountLimitsCommandInput,
64
64
  DescribeAccountLimitsCommandOutput,
65
65
  } from "./commands/DescribeAccountLimitsCommand";
66
+ import {
67
+ DescribeListenerAttributesCommandInput,
68
+ DescribeListenerAttributesCommandOutput,
69
+ } from "./commands/DescribeListenerAttributesCommand";
66
70
  import {
67
71
  DescribeListenerCertificatesCommandInput,
68
72
  DescribeListenerCertificatesCommandOutput,
@@ -127,6 +131,10 @@ import {
127
131
  GetTrustStoreRevocationContentCommandInput,
128
132
  GetTrustStoreRevocationContentCommandOutput,
129
133
  } from "./commands/GetTrustStoreRevocationContentCommand";
134
+ import {
135
+ ModifyListenerAttributesCommandInput,
136
+ ModifyListenerAttributesCommandOutput,
137
+ } from "./commands/ModifyListenerAttributesCommand";
130
138
  import {
131
139
  ModifyListenerCommandInput,
132
140
  ModifyListenerCommandOutput,
@@ -400,6 +408,19 @@ export interface ElasticLoadBalancingV2 {
400
408
  options: __HttpHandlerOptions,
401
409
  cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void
402
410
  ): void;
411
+ describeListenerAttributes(
412
+ args: DescribeListenerAttributesCommandInput,
413
+ options?: __HttpHandlerOptions
414
+ ): Promise<DescribeListenerAttributesCommandOutput>;
415
+ describeListenerAttributes(
416
+ args: DescribeListenerAttributesCommandInput,
417
+ cb: (err: any, data?: DescribeListenerAttributesCommandOutput) => void
418
+ ): void;
419
+ describeListenerAttributes(
420
+ args: DescribeListenerAttributesCommandInput,
421
+ options: __HttpHandlerOptions,
422
+ cb: (err: any, data?: DescribeListenerAttributesCommandOutput) => void
423
+ ): void;
403
424
  describeListenerCertificates(
404
425
  args: DescribeListenerCertificatesCommandInput,
405
426
  options?: __HttpHandlerOptions
@@ -633,6 +654,19 @@ export interface ElasticLoadBalancingV2 {
633
654
  options: __HttpHandlerOptions,
634
655
  cb: (err: any, data?: ModifyListenerCommandOutput) => void
635
656
  ): void;
657
+ modifyListenerAttributes(
658
+ args: ModifyListenerAttributesCommandInput,
659
+ options?: __HttpHandlerOptions
660
+ ): Promise<ModifyListenerAttributesCommandOutput>;
661
+ modifyListenerAttributes(
662
+ args: ModifyListenerAttributesCommandInput,
663
+ cb: (err: any, data?: ModifyListenerAttributesCommandOutput) => void
664
+ ): void;
665
+ modifyListenerAttributes(
666
+ args: ModifyListenerAttributesCommandInput,
667
+ options: __HttpHandlerOptions,
668
+ cb: (err: any, data?: ModifyListenerAttributesCommandOutput) => void
669
+ ): void;
636
670
  modifyLoadBalancerAttributes(
637
671
  args: ModifyLoadBalancerAttributesCommandInput,
638
672
  options?: __HttpHandlerOptions
@@ -109,6 +109,10 @@ import {
109
109
  DescribeAccountLimitsCommandInput,
110
110
  DescribeAccountLimitsCommandOutput,
111
111
  } from "./commands/DescribeAccountLimitsCommand";
112
+ import {
113
+ DescribeListenerAttributesCommandInput,
114
+ DescribeListenerAttributesCommandOutput,
115
+ } from "./commands/DescribeListenerAttributesCommand";
112
116
  import {
113
117
  DescribeListenerCertificatesCommandInput,
114
118
  DescribeListenerCertificatesCommandOutput,
@@ -173,6 +177,10 @@ import {
173
177
  GetTrustStoreRevocationContentCommandInput,
174
178
  GetTrustStoreRevocationContentCommandOutput,
175
179
  } from "./commands/GetTrustStoreRevocationContentCommand";
180
+ import {
181
+ ModifyListenerAttributesCommandInput,
182
+ ModifyListenerAttributesCommandOutput,
183
+ } from "./commands/ModifyListenerAttributesCommand";
176
184
  import {
177
185
  ModifyListenerCommandInput,
178
186
  ModifyListenerCommandOutput,
@@ -253,6 +261,7 @@ export type ServiceInputTypes =
253
261
  | DeleteTrustStoreCommandInput
254
262
  | DeregisterTargetsCommandInput
255
263
  | DescribeAccountLimitsCommandInput
264
+ | DescribeListenerAttributesCommandInput
256
265
  | DescribeListenerCertificatesCommandInput
257
266
  | DescribeListenersCommandInput
258
267
  | DescribeLoadBalancerAttributesCommandInput
@@ -269,6 +278,7 @@ export type ServiceInputTypes =
269
278
  | GetResourcePolicyCommandInput
270
279
  | GetTrustStoreCaCertificatesBundleCommandInput
271
280
  | GetTrustStoreRevocationContentCommandInput
281
+ | ModifyListenerAttributesCommandInput
272
282
  | ModifyListenerCommandInput
273
283
  | ModifyLoadBalancerAttributesCommandInput
274
284
  | ModifyRuleCommandInput
@@ -300,6 +310,7 @@ export type ServiceOutputTypes =
300
310
  | DeleteTrustStoreCommandOutput
301
311
  | DeregisterTargetsCommandOutput
302
312
  | DescribeAccountLimitsCommandOutput
313
+ | DescribeListenerAttributesCommandOutput
303
314
  | DescribeListenerCertificatesCommandOutput
304
315
  | DescribeListenersCommandOutput
305
316
  | DescribeLoadBalancerAttributesCommandOutput
@@ -316,6 +327,7 @@ export type ServiceOutputTypes =
316
327
  | GetResourcePolicyCommandOutput
317
328
  | GetTrustStoreCaCertificatesBundleCommandOutput
318
329
  | GetTrustStoreRevocationContentCommandOutput
330
+ | ModifyListenerAttributesCommandOutput
319
331
  | ModifyListenerCommandOutput
320
332
  | ModifyLoadBalancerAttributesCommandOutput
321
333
  | ModifyRuleCommandOutput
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElasticLoadBalancingV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElasticLoadBalancingV2Client";
8
+ import {
9
+ DescribeListenerAttributesInput,
10
+ DescribeListenerAttributesOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeListenerAttributesCommandInput
15
+ extends DescribeListenerAttributesInput {}
16
+ export interface DescribeListenerAttributesCommandOutput
17
+ extends DescribeListenerAttributesOutput,
18
+ __MetadataBearer {}
19
+ declare const DescribeListenerAttributesCommand_base: {
20
+ new (
21
+ input: DescribeListenerAttributesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeListenerAttributesCommandInput,
24
+ DescribeListenerAttributesCommandOutput,
25
+ ElasticLoadBalancingV2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DescribeListenerAttributesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeListenerAttributesCommandInput,
33
+ DescribeListenerAttributesCommandOutput,
34
+ ElasticLoadBalancingV2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeListenerAttributesCommand extends DescribeListenerAttributesCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElasticLoadBalancingV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElasticLoadBalancingV2Client";
8
+ import {
9
+ ModifyListenerAttributesInput,
10
+ ModifyListenerAttributesOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ModifyListenerAttributesCommandInput
15
+ extends ModifyListenerAttributesInput {}
16
+ export interface ModifyListenerAttributesCommandOutput
17
+ extends ModifyListenerAttributesOutput,
18
+ __MetadataBearer {}
19
+ declare const ModifyListenerAttributesCommand_base: {
20
+ new (
21
+ input: ModifyListenerAttributesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ModifyListenerAttributesCommandInput,
24
+ ModifyListenerAttributesCommandOutput,
25
+ ElasticLoadBalancingV2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ModifyListenerAttributesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ModifyListenerAttributesCommandInput,
33
+ ModifyListenerAttributesCommandOutput,
34
+ ElasticLoadBalancingV2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ModifyListenerAttributesCommand extends ModifyListenerAttributesCommand_base {}
@@ -14,6 +14,7 @@ export * from "./DeleteTargetGroupCommand";
14
14
  export * from "./DeleteTrustStoreCommand";
15
15
  export * from "./DeregisterTargetsCommand";
16
16
  export * from "./DescribeAccountLimitsCommand";
17
+ export * from "./DescribeListenerAttributesCommand";
17
18
  export * from "./DescribeListenerCertificatesCommand";
18
19
  export * from "./DescribeListenersCommand";
19
20
  export * from "./DescribeLoadBalancerAttributesCommand";
@@ -30,6 +31,7 @@ export * from "./DescribeTrustStoresCommand";
30
31
  export * from "./GetResourcePolicyCommand";
31
32
  export * from "./GetTrustStoreCaCertificatesBundleCommand";
32
33
  export * from "./GetTrustStoreRevocationContentCommand";
34
+ export * from "./ModifyListenerAttributesCommand";
33
35
  export * from "./ModifyListenerCommand";
34
36
  export * from "./ModifyLoadBalancerAttributesCommand";
35
37
  export * from "./ModifyRuleCommand";
@@ -893,6 +893,16 @@ export interface DescribeAccountLimitsOutput {
893
893
  Limits?: Limit[];
894
894
  NextMarker?: string;
895
895
  }
896
+ export interface DescribeListenerAttributesInput {
897
+ ListenerArn: string | undefined;
898
+ }
899
+ export interface ListenerAttribute {
900
+ Key?: string;
901
+ Value?: string;
902
+ }
903
+ export interface DescribeListenerAttributesOutput {
904
+ Attributes?: ListenerAttribute[];
905
+ }
896
906
  export interface DescribeListenerCertificatesInput {
897
907
  ListenerArn: string | undefined;
898
908
  Marker?: string;
@@ -1135,6 +1145,13 @@ export interface ModifyListenerInput {
1135
1145
  export interface ModifyListenerOutput {
1136
1146
  Listeners?: Listener[];
1137
1147
  }
1148
+ export interface ModifyListenerAttributesInput {
1149
+ ListenerArn: string | undefined;
1150
+ Attributes: ListenerAttribute[] | undefined;
1151
+ }
1152
+ export interface ModifyListenerAttributesOutput {
1153
+ Attributes?: ListenerAttribute[];
1154
+ }
1138
1155
  export interface ModifyLoadBalancerAttributesInput {
1139
1156
  LoadBalancerArn: string | undefined;
1140
1157
  Attributes: LoadBalancerAttribute[] | undefined;