|
339 | 339 | },
|
340 | 340 | "documentation":"<p>Describes the current Elastic Load Balancing resource limits for your Amazon Web Services account.</p> <p>For more information, see the following:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-limits.html\">Quotas for your Application Load Balancers</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-limits.html\">Quotas for your Network Load Balancers</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/quotas-limits.html\">Quotas for your Gateway Load Balancers</a> </p> </li> </ul>"
|
341 | 341 | },
|
| 342 | + "DescribeListenerAttributes":{ |
| 343 | + "name":"DescribeListenerAttributes", |
| 344 | + "http":{ |
| 345 | + "method":"POST", |
| 346 | + "requestUri":"/" |
| 347 | + }, |
| 348 | + "input":{"shape":"DescribeListenerAttributesInput"}, |
| 349 | + "output":{ |
| 350 | + "shape":"DescribeListenerAttributesOutput", |
| 351 | + "resultWrapper":"DescribeListenerAttributesResult" |
| 352 | + }, |
| 353 | + "errors":[ |
| 354 | + {"shape":"ListenerNotFoundException"} |
| 355 | + ], |
| 356 | + "documentation":"<p>Describes the attributes for the specified listener.</p>" |
| 357 | + }, |
342 | 358 | "DescribeListenerCertificates":{
|
343 | 359 | "name":"DescribeListenerCertificates",
|
344 | 360 | "http":{
|
|
642 | 658 | ],
|
643 | 659 | "documentation":"<p>Replaces the specified properties of the specified listener. Any properties that you do not specify remain unchanged.</p> <p>Changing the protocol from HTTPS to HTTP, or from TLS to TCP, removes the security policy and default certificate properties. If you change the protocol from HTTP to HTTPS, or from TCP to TLS, you must add the security policy and default certificate properties.</p> <p>To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.</p>"
|
644 | 660 | },
|
| 661 | + "ModifyListenerAttributes":{ |
| 662 | + "name":"ModifyListenerAttributes", |
| 663 | + "http":{ |
| 664 | + "method":"POST", |
| 665 | + "requestUri":"/" |
| 666 | + }, |
| 667 | + "input":{"shape":"ModifyListenerAttributesInput"}, |
| 668 | + "output":{ |
| 669 | + "shape":"ModifyListenerAttributesOutput", |
| 670 | + "resultWrapper":"ModifyListenerAttributesResult" |
| 671 | + }, |
| 672 | + "errors":[ |
| 673 | + {"shape":"ListenerNotFoundException"}, |
| 674 | + {"shape":"InvalidConfigurationRequestException"} |
| 675 | + ], |
| 676 | + "documentation":"<p>Modifies the specified attributes of the specified listener.</p>" |
| 677 | + }, |
645 | 678 | "ModifyLoadBalancerAttributes":{
|
646 | 679 | "name":"ModifyLoadBalancerAttributes",
|
647 | 680 | "http":{
|
|
1756 | 1789 | }
|
1757 | 1790 | }
|
1758 | 1791 | },
|
| 1792 | + "DescribeListenerAttributesInput":{ |
| 1793 | + "type":"structure", |
| 1794 | + "required":["ListenerArn"], |
| 1795 | + "members":{ |
| 1796 | + "ListenerArn":{ |
| 1797 | + "shape":"ListenerArn", |
| 1798 | + "documentation":"<p>The Amazon Resource Name (ARN) of the listener.</p>" |
| 1799 | + } |
| 1800 | + } |
| 1801 | + }, |
| 1802 | + "DescribeListenerAttributesOutput":{ |
| 1803 | + "type":"structure", |
| 1804 | + "members":{ |
| 1805 | + "Attributes":{ |
| 1806 | + "shape":"ListenerAttributes", |
| 1807 | + "documentation":"<p>Information about the listener attributes.</p>" |
| 1808 | + } |
| 1809 | + } |
| 1810 | + }, |
1759 | 1811 | "DescribeListenerCertificatesInput":{
|
1760 | 1812 | "type":"structure",
|
1761 | 1813 | "required":["ListenerArn"],
|
|
2616 | 2668 | "type":"list",
|
2617 | 2669 | "member":{"shape":"ListenerArn"}
|
2618 | 2670 | },
|
| 2671 | + "ListenerAttribute":{ |
| 2672 | + "type":"structure", |
| 2673 | + "members":{ |
| 2674 | + "Key":{ |
| 2675 | + "shape":"ListenerAttributeKey", |
| 2676 | + "documentation":"<p>The name of the attribute.</p> <p>The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.</p> <ul> <li> <p> <code>tcp.idle_timeout.seconds</code> - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.</p> </li> </ul>" |
| 2677 | + }, |
| 2678 | + "Value":{ |
| 2679 | + "shape":"ListenerAttributeValue", |
| 2680 | + "documentation":"<p>The value of the attribute.</p>" |
| 2681 | + } |
| 2682 | + }, |
| 2683 | + "documentation":"<p>Information about a listener attribute.</p>" |
| 2684 | + }, |
| 2685 | + "ListenerAttributeKey":{ |
| 2686 | + "type":"string", |
| 2687 | + "max":256, |
| 2688 | + "pattern":"^[a-zA-Z0-9._]+$" |
| 2689 | + }, |
| 2690 | + "ListenerAttributeValue":{"type":"string"}, |
| 2691 | + "ListenerAttributes":{ |
| 2692 | + "type":"list", |
| 2693 | + "member":{"shape":"ListenerAttribute"} |
| 2694 | + }, |
2619 | 2695 | "ListenerNotFoundException":{
|
2620 | 2696 | "type":"structure",
|
2621 | 2697 | "members":{
|
|
2837 | 2913 | ]
|
2838 | 2914 | },
|
2839 | 2915 | "Mode":{"type":"string"},
|
| 2916 | + "ModifyListenerAttributesInput":{ |
| 2917 | + "type":"structure", |
| 2918 | + "required":[ |
| 2919 | + "ListenerArn", |
| 2920 | + "Attributes" |
| 2921 | + ], |
| 2922 | + "members":{ |
| 2923 | + "ListenerArn":{ |
| 2924 | + "shape":"ListenerArn", |
| 2925 | + "documentation":"<p>The Amazon Resource Name (ARN) of the listener.</p>" |
| 2926 | + }, |
| 2927 | + "Attributes":{ |
| 2928 | + "shape":"ListenerAttributes", |
| 2929 | + "documentation":"<p>The listener attributes.</p>" |
| 2930 | + } |
| 2931 | + } |
| 2932 | + }, |
| 2933 | + "ModifyListenerAttributesOutput":{ |
| 2934 | + "type":"structure", |
| 2935 | + "members":{ |
| 2936 | + "Attributes":{ |
| 2937 | + "shape":"ListenerAttributes", |
| 2938 | + "documentation":"<p>Information about the listener attributes.</p>" |
| 2939 | + } |
| 2940 | + } |
| 2941 | + }, |
2840 | 2942 | "ModifyListenerInput":{
|
2841 | 2943 | "type":"structure",
|
2842 | 2944 | "required":["ListenerArn"],
|
|
2950 | 3052 | },
|
2951 | 3053 | "Attributes":{
|
2952 | 3054 | "shape":"TargetGroupAttributes",
|
2953 |
| - "documentation":"<p>The attributes.</p>" |
| 3055 | + "documentation":"<p>The target group attributes.</p>" |
2954 | 3056 | }
|
2955 | 3057 | }
|
2956 | 3058 | },
|
|
2959 | 3061 | "members":{
|
2960 | 3062 | "Attributes":{
|
2961 | 3063 | "shape":"TargetGroupAttributes",
|
2962 |
| - "documentation":"<p>Information about the attributes.</p>" |
| 3064 | + "documentation":"<p>Information about the target group attributes.</p>" |
2963 | 3065 | }
|
2964 | 3066 | }
|
2965 | 3067 | },
|
|
0 commit comments