Class ListenerTlsConfigArgs
Inherited Members
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 SourceListenerTlsConfigArgs()
Declaration
public ListenerTlsConfigArgs()
Properties
View SourceCertificateIds
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> |
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> |
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> |
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> |
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> |
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> |