Show / Hide Table of Contents

Class ListenerTlsConfigArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ListenerTlsConfigArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.SpotInst.Multai.Inputs
Assembly: Pulumi.SpotInst.dll
Syntax
public sealed class ListenerTlsConfigArgs : ResourceArgs

Constructors

View Source

ListenerTlsConfigArgs()

Declaration
public ListenerTlsConfigArgs()

Properties

View Source

CertificateIds

Contains one or more certificate chains to present to the other side of the connection.

Declaration
public InputList<string> CertificateIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

CipherSuites

List of supported cipher suites. If cipherSuites is nil, TLS uses a list of suites supported by the implementation.

Declaration
public InputList<string> CipherSuites { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

MaxVersion

MaxVersion contains the maximum SSL/TLS version that is acceptable.

Declaration
public Input<string> MaxVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MinVersion

MinVersion contains the minimum SSL/TLS version that is acceptable (1.0 is the minimum).

Declaration
public Input<string> MinVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PreferServerCipherSuites

Controls whether the server selects the client’s most preferred ciphersuite, or the server’s most preferred ciphersuite.

Declaration
public Input<bool> PreferServerCipherSuites { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

SessionTicketsDisabled

May be set to true to disable session ticket (resumption) support.

Declaration
public Input<bool> SessionTicketsDisabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.