Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ModifyListenerInput

import type { ModifyListenerInput } from "https://aws-api.deno.dev/v0.3/services/elbv2.ts?docs=full";
interface ModifyListenerInput {
AlpnPolicy?: string[] | null;
Certificates?: Certificate[] | null;
DefaultActions?: Action[] | null;
ListenerArn: string;
Port?: number | null;
Protocol?: ProtocolEnum | null;
SslPolicy?: string | null;
}

§Properties

§
AlpnPolicy?: string[] | null
[src]

[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You can specify one policy name. The following are the possible values:

  • HTTP1Only
    
  • HTTP2Only
    
  • HTTP2Optional
    
  • HTTP2Preferred
    
  • None
    

For more information, see ALPN policies in the Network Load Balancers Guide.

§
Certificates?: Certificate[] | null
[src]

[HTTPS and TLS listeners] The default certificate for the listener. You must provide exactly one certificate. Set CertificateArn to the certificate ARN but do not set IsDefault.

§
DefaultActions?: Action[] | null
[src]

The actions for the default rule.

§
ListenerArn: string
[src]

The Amazon Resource Name (ARN) of the listener.

§
Port?: number | null
[src]

The port for connections from clients to the load balancer. You cannot specify a port for a Gateway Load Balancer.

§
Protocol?: ProtocolEnum | null
[src]

The protocol for connections from clients to the load balancer. Application Load Balancers support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and TCP_UDP protocols. You can’t change the protocol to UDP or TCP_UDP if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.

§
SslPolicy?: string | null
[src]

[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.

For more information, see Security policies in the Application Load Balancers Guide or Security policies in the Network Load Balancers Guide.