AutomationRuleV2ActionExternalIntegrationConfiguration.fromMap constructor

AutomationRuleV2ActionExternalIntegrationConfiguration.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory AutomationRuleV2ActionExternalIntegrationConfiguration.fromMap(Map<String, dynamic> map) {
  return AutomationRuleV2ActionExternalIntegrationConfiguration(
    connectorArn: pulumi.Input.fromValue(map['connectorArn'] as String),
  );
}