TLSMatchAttributes constructor

const TLSMatchAttributes({
  1. required List<String> sniHosts,
  2. List<String>? destinationSubnets,
  3. int? port,
  4. Map<String, String>? sourceLabels,
  5. List<String>? gateways,
  6. String? sourceNamespace,
})

The main constructor.

Implementation

const TLSMatchAttributes({
  required this.sniHosts,
  this.destinationSubnets,
  this.port,
  this.sourceLabels,
  this.gateways,
  this.sourceNamespace,
});