ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadog.fromMap constructor

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

Implementation

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