TelemetryRuleRuleDestinationConfigurationLogDeliveryParameters.fromMap constructor
TelemetryRuleRuleDestinationConfigurationLogDeliveryParameters.fromMap(
- Map<String, dynamic> map
)
Implementation
factory TelemetryRuleRuleDestinationConfigurationLogDeliveryParameters.fromMap(Map<String, dynamic> map) {
return TelemetryRuleRuleDestinationConfigurationLogDeliveryParameters(
logTypes: (() { final guardedValue = map['logTypes']; if (guardedValue == null) return null; return pulumi.Input.fromValue((guardedValue as List).cast<String>()); })(),
);
}