toJson method
Implementation
Map<String, dynamic> toJson() {
final allowDeferredExecution = this.allowDeferredExecution;
final dataAccessRoleArn = this.dataAccessRoleArn;
return {
if (allowDeferredExecution != null)
'AllowDeferredExecution': allowDeferredExecution,
if (dataAccessRoleArn != null) 'DataAccessRoleArn': dataAccessRoleArn,
};
}